Examples of CollapseAllAction


Examples of org.apache.directory.studio.schemaeditor.controller.actions.CollapseAllAction

        importSchemasFromOpenLdap = new ImportSchemasFromOpenLdapAction();
        importSchemasFromXml = new ImportSchemasFromXmlAction();
        exportSchemasAsOpenLdap = new ExportSchemasAsOpenLdapAction( viewer );
        exportSchemasAsXml = new ExportSchemasAsXmlAction( viewer );
        exportSchemasForADS = new ExportSchemasForADSAction( viewer );
        collapseAll = new CollapseAllAction( viewer );
        openSchemaViewSortingDialog = new OpenSchemaViewSortingDialogAction();
        switchSchemaPresentationToFlat = new SwitchSchemaPresentationToFlatAction();
        switchSchemaPresentationToHierarchical = new SwitchSchemaPresentationToHierarchicalAction();
        openSchemaViewPreference = new OpenSchemaViewPreferenceAction();
        linkWithEditor = new LinkWithEditorSchemaViewAction( view );
View Full Code Here

Examples of org.apache.directory.studio.schemaeditor.controller.actions.CollapseAllAction

        importSchemasFromOpenLdap = new ImportSchemasFromOpenLdapAction();
        importSchemasFromXml = new ImportSchemasFromXmlAction();
        exportSchemasAsOpenLdap = new ExportSchemasAsOpenLdapAction( viewer );
        exportSchemasAsXml = new ExportSchemasAsXmlAction( viewer );
        exportSchemasForADS = new ExportSchemasForADSAction( viewer );
        collapseAll = new CollapseAllAction( viewer );
        openSchemaViewSortingDialog = new OpenSchemaViewSortingDialogAction();
        switchSchemaPresentationToFlat = new SwitchSchemaPresentationToFlatAction();
        switchSchemaPresentationToHierarchical = new SwitchSchemaPresentationToHierarchicalAction();
        openSchemaViewPreference = new OpenSchemaViewPreferenceAction();
        linkWithEditor = new LinkWithEditorSchemaViewAction( view );
View Full Code Here

Examples of org.dozer.eclipse.plugin.editorpage.actions.CollapseAllAction

      }
    };
    fAddFieldExcludeMappingAction.setEnabled(false);   
   
    fExpandAllAction =
      new CollapseAllAction(
          "Expand All",
          DozerPlugin.getDefault().getImageRegistry().getDescriptor(DozerPlugin.IMG_EXPAND_ALL),
          mappings,
          false);   
    fCollapseAllAction =
      new CollapseAllAction(
          "Collapse All",
          DozerPlugin.getDefault().getImageRegistry().getDescriptor(DozerPlugin.IMG_COLLAPSE_ALL),
          mappings,
          true);
    fExtendAction =
View Full Code Here

Examples of rabbit.ui.internal.actions.CollapseAllAction

   * @return this
   * @see TreeViewer#expandAll()
   * @see TreeViewer#collapseAll()
   */
  public CommonToolBarBuilder enableTreeAction(TreeViewer viewer) {
    treeAction = new DropDownAction(new CollapseAllAction(viewer),
        new ExpandAllAction(viewer));
    return this;
  }
View Full Code Here

Examples of rabbit.ui.internal.actions.CollapseAllAction

    shell = new Shell(PlatformUI.getWorkbench().getDisplay());
  }

  public CollapseAllActionTest() {
    viewer = new TreeViewer(shell);
    action = new CollapseAllAction(viewer);
  }
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.