Package org.springframework.ide.eclipse.beans.ui.editor.actions

Examples of org.springframework.ide.eclipse.beans.ui.editor.actions.OutlineStyleAction


   * Adds the outline style toggle to the context menu.
   */
  @Override
  protected IContributionItem[] createMenuContributions(TreeViewer viewer) {
    IContributionItem styleItem = new ActionContributionItem(
        new OutlineStyleAction(viewer));
    IContributionItem[] items = super.createMenuContributions(viewer);
    if (items == null) {
      items = new IContributionItem[] { styleItem };
    }
    else {
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.beans.ui.editor.actions.OutlineStyleAction

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.