Examples of openDialog()


Examples of net.solosky.maplefetion.client.dialog.GroupDialog.openDialog()

    {
      this.updateLoginState(LoginState.GROUPS_REGISTER_DOING, null);
    Iterator<Group> it = this.context.getFetionStore().getGroupList().iterator();
        while (it.hasNext()) {
          GroupDialog groupDialog = this.context.getDialogFactory().createGroupDialog(it.next());
          groupDialog.openDialog();
        }
       
        this.updateLoginState(LoginState.GROUPS_REGISTER_SUCCESS, null);
}
   
View Full Code Here

Examples of net.solosky.maplefetion.client.dialog.ServerDialog.openDialog()

        throw new IllegalArgumentException("Invalid fetion id. if disabled SSI sign, you must login with fetion id..");
      }
     
      this.updateLoginState(LoginState.SIPC_REGISTER_DOING, null);
    ServerDialog serverDialog = this.context.getDialogFactory().createServerDialog();
        serverDialog.openDialog();
       
        ActionEventFuture future = new ActionEventFuture();
      ActionEventListener listener = new FutureActionEventListener(future);
     
      //注册服务器
View Full Code Here

Examples of org.eclipse.jdt.ui.refactoring.RenameSupport.openDialog()

          case IJavaElement.PACKAGE_FRAGMENT:
            renameSupport= RenameSupport.create((IPackageFragment)element, element.getElementName(), RenameSupport.UPDATE_REFERENCES);
            break;
        }
        if(renameSupport != null) {
          renameSupport.openDialog(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell());
          PlatformStatusLineUtil.clearStatusLine();
        }
      }
      catch (CoreException e) {
        Logger.logException(e);
View Full Code Here

Examples of org.eclipse.jdt.ui.refactoring.RenameSupport.openDialog()

          case IJavaElement.PACKAGE_FRAGMENT:
            renameSupport= RenameSupport.create((IPackageFragment)element, element.getElementName(), RenameSupport.UPDATE_REFERENCES);
            break;
        }
        if(renameSupport != null) {
          renameSupport.openDialog(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell());
          PlatformStatusLineUtil.clearStatusLine();
        }
      }
      catch (CoreException e) {
        Logger.logException(e);
View Full Code Here

Examples of org.eclipse.jdt.ui.refactoring.RenameSupport.openDialog()

          case IJavaElement.FIELD:
            renameSupport = RenameSupport.create((IField)element, element.getElementName(), RenameSupport.UPDATE_REFERENCES);
            break;
        }
        if(renameSupport != null) {
          renameSupport.openDialog(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell());
          PlatformStatusLineUtil.clearStatusLine();
        }
      }
      catch (CoreException e) {
        Logger.logException(e);
View Full Code Here

Examples of org.eclipse.nebula.widgets.nattable.columnChooser.ColumnChooser.openDialog()

                .getShell(), selectionLayer, columnHideShowLayer,
                columnHeaderLayer, columnHeaderDataLayer,
                columnGroupHeaderLayer, columnGroupModel, sortAvailableColumns);

        columnChooser.setDialogSettings(dialogSettings);
        columnChooser.openDialog();
        return true;
    }

    public void setDialogSettings(IDialogSettings dialogSettings) {
        this.dialogSettings = dialogSettings;
View Full Code Here

Examples of org.eclipse.xcde.dialogs.XCDEServerSelectDialog.openDialog()

   * Create a server listing dialog box and the associated controls.
   */
  public void run(IAction action)
    {
    XCDEServerSelectDialog d = new XCDEServerSelectDialog(window.getShell());
    d.openDialog();
    }

  public void selectionChanged(IAction action, ISelection selection)
    {
    //Interface demanded, but we don't need it
View Full Code Here

Examples of org.jbpm.ui.dialog.ChooseDateVariableDialog.openDialog()

        }

        @Override
        protected Object openDialogBox(Control cellEditorWindow) {
            ChooseDateVariableDialog dialog = new ChooseDateVariableDialog(element.getProcessDefinition(), noneItemValue);
            return dialog.openDialog();
        }
    }
}
View Full Code Here

Examples of org.jbpm.ui.dialog.ChooseHandlerClassDialog.openDialog()

        }

        @Override
        protected Object openDialogBox(Control cellEditorWindow) {
            ChooseHandlerClassDialog dialog = new ChooseHandlerClassDialog(type);
            return dialog.openDialog();
        }

        @Override
        protected void updateContents(Object value) {
            if (getDefaultLabel() != null) {
View Full Code Here

Examples of org.jbpm.ui.dialog.ChooseVariableDialog.openDialog()

            hl3.addHyperlinkListener(new HyperlinkAdapter() {
                @Override
                public void linkActivated(HyperlinkEvent e) {
                    ChooseVariableDialog dialog = new ChooseVariableDialog(bshVariableNames);
                    String variableName = dialog.openDialog();
                    if (variableName != null) {
                        bshCodeText.insert(variableName);
                        bshCodeText.setFocus();
                        bshCodeText.setCaretOffset(bshCodeText.getCaretOffset() + variableName.length());
                    }
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.