Examples of ActionSet


Examples of net.sf.apptools.actions.ActionSet

    actionList = new ArrayList<UserAction>();

    setupActions();

    //Add actions to the workbench menus
    final ActionSet projectaset = new ActionSet(projectActions, PROBEMAKER_MENU_ID + "/Project", this, 100); //$NON-NLS-1$
    final ActionSet targetaset = new ActionSet(targetActions, PROBEMAKER_MENU_ID + "/Targets", this, 200); //$NON-NLS-1$
    final ActionSet designaset = new ActionSet(designActions, PROBEMAKER_MENU_ID + "/Design", this, 300); //$NON-NLS-1$
    final ActionSet probeaset = new ActionSet(probeActions, PROBEMAKER_MENU_ID + "/Probes", this, 400); //$NON-NLS-1$

    platform.addActionSet(projectaset);
    platform.addActionSet(targetaset);
    platform.addActionSet(designaset);
    platform.addActionSet(probeaset);


    platform.addQuickActionSet(new ActionSet(projectActionsQuickSet,"Project",this, 100)); //$NON-NLS-1$
    platform.addQuickActionSet(designaset);

    //Create the templatemanager
    templateManager = new TemplateManager();
    final TemplateIO tio = new TemplateXMLHandler();
View Full Code Here

Examples of net.sf.apptools.actions.ActionSet

    actionList = new ArrayList<UserAction>();

    setupActions();

    //Add actions to the workbench menus
    final ActionSet projectaset = new ActionSet(projectActions, PROBEMAKER_MENU_ID + "/Project", this, 100); //$NON-NLS-1$
    final ActionSet targetaset = new ActionSet(targetActions, PROBEMAKER_MENU_ID + "/Targets", this, 200); //$NON-NLS-1$
    final ActionSet designaset = new ActionSet(designActions, PROBEMAKER_MENU_ID + "/Design", this, 300); //$NON-NLS-1$
    final ActionSet probeaset = new ActionSet(probeActions, PROBEMAKER_MENU_ID + "/Probes", this, 400); //$NON-NLS-1$

    platform.addActionSet(projectaset);
    platform.addActionSet(targetaset);
    platform.addActionSet(designaset);
    platform.addActionSet(probeaset);


    platform.addQuickActionSet(new ActionSet(projectActionsQuickSet,"Project",this, 100)); //$NON-NLS-1$
    platform.addQuickActionSet(designaset);

    //Create the templatemanager
    templateManager = new TemplateManager();
    final TemplateIO tio = new TemplateXMLHandler();
View Full Code Here

Examples of net.sf.apptools.actions.ActionSet

    actionList = new ArrayList<UserAction>();

    setupActions();

    //Add actions to the workbench menus
    final ActionSet projectaset = new ActionSet(projectActions, PROBEMAKER_MENU_ID + "/Project", this, 100); //$NON-NLS-1$
    final ActionSet targetaset = new ActionSet(targetActions, PROBEMAKER_MENU_ID + "/Targets", this, 200); //$NON-NLS-1$
    final ActionSet designaset = new ActionSet(designActions, PROBEMAKER_MENU_ID + "/Design", this, 300); //$NON-NLS-1$
    final ActionSet probeaset = new ActionSet(probeActions, PROBEMAKER_MENU_ID + "/Probes", this, 400); //$NON-NLS-1$

    platform.addActionSet(projectaset);
    platform.addActionSet(targetaset);
    platform.addActionSet(designaset);
    platform.addActionSet(probeaset);


    platform.addQuickActionSet(new ActionSet(projectActionsQuickSet,"Project",this, 100)); //$NON-NLS-1$
    platform.addQuickActionSet(designaset);

    //Create the templatemanager
    templateManager = new TemplateManager();
    final TemplateIO tio = new TemplateXMLHandler();
View Full Code Here

Examples of net.sf.apptools.actions.ActionSet

    actionList = new ArrayList<UserAction>();

    setupActions();

    //Add actions to the workbench menus
    final ActionSet projectaset = new ActionSet(projectActions, PROBEMAKER_MENU_ID + "/Project", this, 100); //$NON-NLS-1$
    final ActionSet targetaset = new ActionSet(targetActions, PROBEMAKER_MENU_ID + "/Targets", this, 200); //$NON-NLS-1$
    final ActionSet designaset = new ActionSet(designActions, PROBEMAKER_MENU_ID + "/Design", this, 300); //$NON-NLS-1$
    final ActionSet probeaset = new ActionSet(probeActions, PROBEMAKER_MENU_ID + "/Probes", this, 400); //$NON-NLS-1$

    platform.addActionSet(projectaset);
    platform.addActionSet(targetaset);
    platform.addActionSet(designaset);
    platform.addActionSet(probeaset);


    platform.addQuickActionSet(new ActionSet(projectActionsQuickSet,"Project",this, 100)); //$NON-NLS-1$
    platform.addQuickActionSet(designaset);

    //Create the templatemanager
    templateManager = new TemplateManager();
    final TemplateIO tio = new TemplateXMLHandler();
View Full Code Here

Examples of net.sf.apptools.actions.ActionSet

    logFileChooser = new JFileChooser(probeMaker.logPath);
    logFileChooser.addChoosableFileFilter(ProbeMakerConstants.logFilter)
      
    setupActions();
   
    platform.addActionSet(new ActionSet(reportActions,getBriefDescription() + "/Report",this,800)); //$NON-NLS-1$
    platform.addActionSet(new ActionSet(otherActions,getBriefDescription() + "/Other",this,900)); //$NON-NLS-1$
   
    platform.encapsulateActions(this,probeMaker);
   
  }
View Full Code Here

Examples of org.flowforwarding.warp.protocol.ofmessages.ActionSet

   public void addAction(String name, String value) {
      this.actions.add(name, value);
   }
  
   protected OFStructureInstruction(InstructionTypes instrType) {
      actions = new ActionSet();
      type = instrType;
   }
View Full Code Here

Examples of org.jamesii.gui.application.action.ActionSet

  @Override
  protected List<IAction> generateActions() {

    List<IAction> actions = new ArrayList<>();
    actions.add(new ActionSet("org.jamesii.simspex", "SimSpace Exploration",
        "org.jamesii.menu.main?after=edit", null));

    actions.add(new SimSpExExperiment(getWindowManager(), null));

    actions.add(SeparatorAction.getSeparatorFor(
View Full Code Here

Examples of org.jamesii.gui.application.action.ActionSet

  @Override
  protected List<IAction> generateActions() {
    List<IAction> actions = new ArrayList<>();

    actions.add(new ActionSet("org.jamesii.server", "Server Management",
        "org.jamesii.menu.main/?before=org.jamesii.help", null));
    actions
        .add(new ManageServerAction("org.jamesii.server.msmanagement",
            "Manage a server...",
            new String[] { "org.jamesii.menu.main/org.jamesii.server?first" },
View Full Code Here

Examples of org.jamesii.gui.application.action.ActionSet

  @Override
  protected List<IAction> generateActions() {
    List<IAction> actions = new ArrayList<>();

    actions.add(new ActionSet("org.jamesii.visualization", "Visualization",
        "org.jamesii.menu.main?after=org.jamesii.edit", null));

    actions.add(new AbstractAction("org.jamesii.visualization.offline",
        "Offline visualization...",
        new String[] { "org.jamesii.menu.main/org.jamesii.visualization" },
View Full Code Here

Examples of org.jamesii.gui.application.action.ActionSet

    Icon icon = null;
    icon =
        IconManager.getIcon(IconIdentifier.TEXTAREA_SMALL,
            "Change Highlighting");

    actions.add(new ActionSet("org.jamesii.texteditor.highlighterselection",
        "Change Highlighting", "", null, null, icon, this));

    for (final IHighlighter h : highlighters) {
      actions
          .add(new AbstractAction("org.jamesii.texteditor.highlighter."
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.