Package org.rssowl.ui.internal.actions

Examples of org.rssowl.ui.internal.actions.AssignLabelsAction


      labelMenu = new MenuManager(Messages.ApplicationActionBarAdvisor_LABEL);
      manager.add(labelMenu);
    }

    /* Assign  Labels */
    labelMenu.add(new AssignLabelsAction(shellProvider.getShell(), selection));

    /* Organize Labels */
    labelMenu.add(new Action(Messages.ApplicationActionBarAdvisor_ORGANIZE_LABELS) {
      @Override
      public void run() {
View Full Code Here


    Shell shell = OwlUI.getActiveShell();
    IStructuredSelection selection = OwlUI.getActiveFeedViewSelection();

    /* Perform Action */
    if (shell != null && selection != null && !selection.isEmpty()) {
      AssignLabelsAction action = new AssignLabelsAction(shell, selection);
      action.run();
    }

    return null; //As per JavaDoc
  }
View Full Code Here

      labelMenu = new MenuManager(Messages.ApplicationActionBarAdvisor_LABEL);
      manager.add(labelMenu);
    }

    /* Assign  Labels */
    labelMenu.add(new AssignLabelsAction(shellProvider.getShell(), selection));

    /* Organize Labels */
    labelMenu.add(new Action(Messages.ApplicationActionBarAdvisor_ORGANIZE_LABELS) {
      @Override
      public void run() {
View Full Code Here

TOP

Related Classes of org.rssowl.ui.internal.actions.AssignLabelsAction

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.