Java 类com.intellij.uiDesigner.clientProperties.ConfigureClientPropertiesDialog 实例源码

项目:intellij-ce-playground    文件:ClientPropertiesProperty.java   
private void showClientPropertiesDialog() {
  ConfigureClientPropertiesDialog dlg = new ConfigureClientPropertiesDialog(myProject);
  dlg.show();
  if (dlg.getExitCode() == DialogWrapper.OK_EXIT_CODE) {
    dlg.save();
    fireValueCommitted(true, false);
  }
}
项目:tools-idea    文件:ClientPropertiesProperty.java   
private void showClientPropertiesDialog() {
  ConfigureClientPropertiesDialog dlg = new ConfigureClientPropertiesDialog(myProject);
  dlg.show();
  if (dlg.getExitCode() == DialogWrapper.OK_EXIT_CODE) {
    dlg.save();
    fireValueCommitted(true, false);
  }
}
项目:consulo-ui-designer    文件:ClientPropertiesProperty.java   
private void showClientPropertiesDialog() {
  ConfigureClientPropertiesDialog dlg = new ConfigureClientPropertiesDialog(myProject);
  dlg.show();
  if (dlg.getExitCode() == DialogWrapper.OK_EXIT_CODE) {
    dlg.save();
    fireValueCommitted(true, false);
  }
}