Package rabbit.ui.internal.actions

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


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

  public CollapseAllActionTest() {
    viewer = new TreeViewer(shell);
    action = new CollapseAllAction(viewer);
  }
View Full Code Here

TOP

Related Classes of rabbit.ui.internal.actions.CollapseAllAction

Copyright © 2018 www.massapicom. 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.