Examples of PanelViewDocument


Examples of net.alteiar.campaign.player.gui.documents.PanelViewDocument

    }
  }

  @Override
  public void actionPerformed(ActionEvent e) {
    PanelViewDocument panelView = PluginSystem.getInstance().getViewPanel(
        file);

    if (panelView != null) {
      JDialog dlg = new JDialog(MainFrame.FRAME, file.getDocumentName(),
          false);
View Full Code Here

Examples of net.alteiar.campaign.player.gui.documents.PanelViewDocument

  public JPanel buildSmallCharacterSheet() {
    return core.buildSmallCharacterSheet();
  }

  public PanelViewDocument getViewPanel(BeanDocument bean) {
    PanelViewDocument found = getPlugin(bean).getViewer();

    if (found != null) {
      found.setDocument(bean);
    }

    return found;
  }
View Full Code Here

Examples of net.alteiar.campaign.player.gui.documents.PanelViewDocument

    return true;
  }

  @Override
  public void doAction(int xOnScreen, int yOnScreen) throws Exception {
    PanelViewDocument panelView = PluginSystem.getInstance().getViewPanel(
        character);

    if (panelView != null) {
      JDialog dlg = new JDialog(MainFrame.FRAME,
          character.getDocumentName(), false);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.