Examples of addAction()


Examples of com.eclipsesource.tabris.internal.ui.PageDescriptor.addAction()

  }

  private PageDescriptor createDescriptor() {
    PageDescriptor pageDescriptor = new PageDescriptor( id, pageType, title, image, topLevel, style );
    for( ActionConfiguration configuration : actions ) {
      pageDescriptor.addAction( configuration );
    }
    return pageDescriptor;
  }

}
View Full Code Here

Examples of com.eviware.soapui.support.action.swing.ActionList.addAction()

    mainForm.addTextField( SERVLET_LINK, "The name of the source Servlet to link to", XForm.FieldType.TEXT );

    buildArgsForm( builder, false, "wstools" );

    ActionList actions = buildDefaultActions( HelpUrls.WSTOOLS_HELP_URL, project );
    actions.addAction( new ShowConfigFileAction( "JBossWS Java2Wsdl", "Contents of generated wsconfig.xml file" )
    {
      protected String getConfigFile()
      {
        ConfigurationDocument configDocument = createConfigFile( getDialog().getValues() );
        return configDocument.toString();
View Full Code Here

Examples of com.eviware.soapui.support.action.swing.DefaultActionList.addAction()

  {
    ActionList actions = new DefaultActionList( "Actions" );

    if( helpUrl != null )
    {
      actions.addAction( new ShowOnlineHelpAction( helpUrl ) );
      actions.addSeparator();
    }

    Action runAction = createRunOption( modelItem );
    actions.addAction( runAction );
View Full Code Here

Examples of com.google.collide.client.status.StatusMessage.addAction()

          public void onFail(FailureReason reason) {
            Log.error(getClass(), "Failed to retrieve file metadata for workspace.");
            StatusMessage fatal = new StatusMessage(
                appContext.getStatusManager(), MessageType.FATAL,
                "There was a problem refreshing changes within the file tree :(.");
            fatal.addAction(StatusMessage.RELOAD_ACTION);
            fatal.setDismissable(true);
            fatal.fire();
          }
        });
  }
View Full Code Here

Examples of com.intellij.codeInsight.intention.IntentionManager.addAction()

    private CodeCompletionManager(Project project) {
        super(project);
        // fixme move these calls to a more appropriate place (nothing to do with code completion)
        IntentionManager intentionManager = IntentionManager.getInstance(project);
        intentionManager.addAction(new ExecuteStatementIntentionAction());
        intentionManager.addAction(new JumpToExecutionResultIntentionAction());
        intentionManager.addAction(new SelectConnectionIntentionAction());
        intentionManager.addAction(new SelectCurrentSchemaIntentionAction());
        //intentionManager.addAction(new SetupCodeCompletionIntentionAction());
    }
View Full Code Here

Examples of com.intellij.openapi.actionSystem.DefaultActionGroup.addAction()

        myActionsGroup.add(new ToggleMatchCase(this));
        myActionsGroup.add(new ToggleRegex(this));

        actionsToolbar = ActionManager.getInstance().createActionToolbar("SearchBar", myActionsGroup, true);

        myActionsGroup.addAction(new ToggleWholeWordsOnlyAction(this));

        actionsToolbar.setLayoutPolicy(ActionToolbar.AUTO_LAYOUT_POLICY);
        toolbarComponent = actionsToolbar.getComponent();
        toolbarComponent.setBorder(null);
        toolbarComponent.setOpaque(false);
View Full Code Here

Examples of com.mvc4g.client.Controller.addAction()

        // ------

        registerGlobalViewsAndActions(mainController);

        mainController.addAction("login", new LoginAction());
        mainController.addAction(BootstrapAction.ID, new BootstrapAction());
        mainController.addView("loginView", new LoginView());

        // bootstrap and login
        mainController.handleEvent(
View Full Code Here

Examples of com.ocpsoft.pretty.faces.config.mapping.UrlMapping.addAction()

            {
               log.trace("Adding action expression '" + urlAction.getAction() + "' to mapping: " + mapping.getId());
            }

            // register this action
            mapping.addAction(urlAction);

         }
      }

      for (QueryParamSpec queryParamSpec : queryParamList)
View Full Code Here

Examples of com.softwarementors.extjs.djn.api.RegisteredApi.addAction()

    // Create a new api programmatically
    String apiFile = config.getServletContext().getRealPath("test/ProgrammaticApi.js");
    RegisteredApi api = registry.addApi( "programmaticApi", "test/ProgrammaticApi.js", apiFile, "Djn.programmaticNamespace", "Djn.programmaticNamespace" );
   
    // Register a new action with a method
    RegisteredAction action = api.addAction( CustomRegistryConfiguratorHandlingTest.class, "MyCustomRegistryConfiguratorHandlingTest");
    Method m = getMethod( CustomRegistryConfiguratorHandlingTest.class, "test_programmaticMethod", String.class);
    action.addStandardMethod( "myProgrammaticMethod", m, false);
   
    // Register a poll method
    Method pm = getMethod( CustomRegistryConfiguratorHandlingTest.class, "test_programmaticPollMethod", Map.class);
View Full Code Here

Examples of com.trolltech.qt.gui.QMenu.addAction()

        action2.triggered.connect(this, "menuReachability2()");
        action3.triggered.connect(this, "menuReachability3()");
        action4.triggered.connect(this, "menuReachability4()");
        action5.triggered.connect(this, "menuReachability5()");
        actionClear.triggered.connect(this, "menuReachabilityClear()");
        menu.addAction(action1);
        menu.addAction(action2);
        menu.addAction(action3);
        menu.addAction(action4);
        menu.addAction(action5);
        menu.addAction(actionClear);
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.