Examples of show()


Examples of org.eclipse.sapphire.ui.SourceEditorService.show()

            "action",
            new Runnable()
            {
                public void run()
                {
                    sourceEditorService.show( element, property != null ? property.definition() : null);
                }
            }
        );
       
        final PropertyEditorAssistSection section = context.getSection( SECTION_ID_ACTIONS );
View Full Code Here

Examples of org.eclipse.swtbot.eclipse.finder.widgets.SWTBotView.show()


    private SWTBotTree getBrowserTree()
    {
        SWTBotView view = bot.viewByTitle( "LDAP Browser" );
        view.show();
        SWTBotTree tree = view.bot().tree();
        return tree;
    }

View Full Code Here

Examples of org.eclipse.ui.part.IShowInTarget.show()

        }

        try {
            IViewPart view = page.showView(desc.getId());
            IShowInTarget target = getShowInTarget(view);
            if (target != null && target.show(context)) {
                // success
            } else {
                beep();
            }
            ((WorkbenchPage) page).performedShowIn(desc.getId()); // TODO: move back up
View Full Code Here

Examples of org.emftrace.quarc.ui.zest.nodes.GSSElementGraphNode.show()

    for (PrioritizedElement selectedGoal : priorizedElementSet
        .getPrioritizedElements()) {
      Element element = selectedGoal.getElement();
      GSSElementGraphNode node = (GSSElementGraphNode) getNodeForElement(selectedGoal
          .getElement());
      node.show();
      node.expandParents();
      if (!cacheManager.isLeaf(element)) {
        node.setIsExpanded();
      }
      getCheckboxFigure(node).setIsChecked();
View Full Code Here

Examples of org.enhydra.jawe.WaitScreen.show()

            Package pkg = null;
            clearAll();
            XPDLHandler xpdlhandler = JaWEManager.getInstance().getXPDLHandler();
            if (jaweFrameShown && filename != null && xpdlStream == null) {
                if (ws != null) {
                    ws.show(null, "", settings.getLanguageDependentString("OpeningFile"));
                }
            }
            xpdlh = JaWEManager.getInstance().createXPDLHandler(xpdlhandler.getXPDLRepositoryHandler());

            try {
View Full Code Here

Examples of org.fest.swing.fixture.FrameFixture.show()

        JFrame frame = new JFrame();
        frame.add(statusBar, BorderLayout.CENTER);
        FrameFixture frameFixture = new FrameFixture(robot, frame);
        frame.setSize(400, 30);
        frame.validate();
        frameFixture.show();

        assert frameFixture.label("Population").text().equals("N/A") : "Wrong initial text for population label.";
        assert frameFixture.label("Elitism").text().equals("N/A") : "Wrong initial text for elitism label.";
        assert frameFixture.label("Generations").text().equals("N/A") : "Wrong initial text for generations label.";
        assert frameFixture.label("Time").text().equals("N/A") : "Wrong initial text for elapsed time label.";
View Full Code Here

Examples of org.freeplane.core.ui.components.EnterPasswordDialog.show()

   */
  private StringBuilder getUsersPassword() {
    final EnterPasswordDialog pwdDialog = new EnterPasswordDialog(Controller.getCurrentController().getViewController().getFrame(),
        true);
    pwdDialog.setModal(true);
    pwdDialog.show();
    if (pwdDialog.getResult() == EnterPasswordDialog.CANCEL) {
      return null;
    }
    final StringBuilder password = pwdDialog.getPassword();
    return password;
View Full Code Here

Examples of org.freeplane.core.ui.components.IconSelectionPopupDialog.show()

    final NodeModel selected = controller.getSelection().getSelected();
    controller.getMapViewManager().scrollNodeToVisible(selected);
    selectionDialog.pack();
    UITools.setDialogLocationRelativeTo(selectionDialog, selected);
    selectionDialog.setModal(true);
    selectionDialog.show();
    final int result = selectionDialog.getResult();
    if (result >= 0) {
      final Action action = (Action) actions.get(result);
      action.actionPerformed(new ActionEvent(action, 0, NodeModel.NODE_ICON, selectionDialog.getModifiers()));
    }
View Full Code Here

Examples of org.freeplane.plugin.workspace.components.menu.WorkspacePopupMenu.show()

    if(popupMenu == null) {
      return;
    }
    popupMenu.setInvokerLocation(new Point(x, y));
    if (popupMenu != null) {
      popupMenu.show(component, x, y);
    }
  }
 
  public AWorkspaceTreeNode getChildById(String id) {
    if(id == null) {
View Full Code Here

Examples of org.freeplane.view.swing.ui.mindmapmode.NodeSelector.show()

      insertNodeLink.addActionListener(new ActionListener() {
        public void actionPerformed(final ActionEvent e) {
          final AttributeTable table = AttributePopupMenu.this.table;
          final Object oldValue = table.getValueAt(row, col);
          final NodeSelector nodeSelector = new NodeSelector();
          nodeSelector.show(table, new INodeSelector() {
            public void nodeSelected(NodeModel node) {
              if(node == null)
                return;
              final String inputValue = "#" + node.getID();
              try {
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.