Examples of addSeparator()


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

    ActionList actions = new DefaultActionList( "Actions" );

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

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

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

    ActionList actions = new DefaultActionList( "Actions" );

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

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

Examples of com.eviware.soapui.support.components.JXToolBar.addSeparator()

    toolbar.add( optionsButton );
    toolbar.add( convertToLoadUIButton );
    toolbar.add( UISupport.createToolbarButton( new ShowOnlineHelpAction( HelpUrls.LOADTESTEDITOR_HELP_URL ) ) );
    toolbar.add( Box.createHorizontalGlue() );
    buildLimitBar( toolbar );
    toolbar.addSeparator();

    progressBar = new JProgressBar( 0, 100 );
    progressBar.setPreferredSize( new Dimension( 70, 20 ) );

    toolbar.addFixed( progressBar );
View Full Code Here

Examples of com.eviware.soapui.support.swing.RSyntaxAreaPopupMenu.addSeparator()

      }
    } );

    RSyntaxAreaPopupMenu popup = RSyntaxAreaPopupMenu.add( editArea );
    popup.add( new FindAndReplaceDialog( findAndReplaceable ) );
    popup.addSeparator();
    popup.add( new GoToLineAction() );

    toggleLineNumbersMenuItem = new JCheckBoxMenuItem( "Show Line Numbers", scrollPane.getLineNumbersEnabled() );
    toggleLineNumbersMenuItem.setAccelerator( UISupport.getKeyStroke( "alt L" ) );
    toggleLineNumbersMenuItem.addActionListener( new ActionListener()
View Full Code Here

Examples of com.eviware.x.form.XForm.addSeparator()

    mainForm.addTextField( MAPPING, "mapping file to generate", XForm.FieldType.PROJECT_FILE );
    mainForm.addCheckBox( UNWRAP, "unwrap doc-literal operations" );

    mainForm.addNameSpaceTable( NAMESPACE_MAPPING, modelItem );

    mainForm.addSeparator( "webservices.xml generation options" );
    ejbLinkField = mainForm.addTextField( EJB_LINK, "The ejb-jar.xml ejb-link for Stateless Session Bean endpoints",
        XForm.FieldType.TEXT );
    ejbLinkField.addFormFieldListener( new XFormFieldListener()
    {
      public void valueChanged( XFormField sourceField, String newValue, String oldValue )
View Full Code Here

Examples of com.google.gwt.user.client.ui.MenuBar.addSeparator()

    String[] fileOptions = new String[]{"New", "Open", "Close", "Recents",
        "Exit"};

    for (int i = 0; i < fileOptions.length; i++) {
      if (i == 3) {
        fileMenu.addSeparator();
        fileMenu.addItem(fileOptions[i], recentDocsMenu);
        fileMenu.addSeparator();
      } else {
        fileMenu.addItem(fileOptions[i], menuCommand);
      }
View Full Code Here

Examples of com.gwtext.client.widgets.Toolbar.addSeparator()

    });

        //only show this for advanced users
        if (ExplorerLayoutManager.shouldShow(Capabilities.SHOW_PACKAGE_VIEW)) {
            tb.addButton(viewSource);
            tb.addSeparator();
        }

        ToolbarButton validate = new ToolbarButton();
        validate.setText(constants.Validate());
        validate.addListener(new ButtonListenerAdapter()  {
View Full Code Here

Examples of com.gwtext.client.widgets.menu.Menu.addSeparator()

                }
            });
        }

        // Add the "Add user defined tab"
        addTabMenu.addSeparator();
        Item item = new Item("Add your own tab");
        addTabMenu.addItem(item);
        item.addListener(new BaseItemListenerAdapter() {
            @Override
            public void onClick(BaseItem item, EventObject e) {
View Full Code Here

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

    public void projectOpened() {
        final SynchronizeWithModuleActionGroup action = new SynchronizeWithModuleActionGroup(project);

        final DefaultActionGroup editorPopup = findGroup("EditorPopupMenu");
        editorPopup.addSeparator();
        editorPopup.add(action);

        final DefaultActionGroup editorTabPopup = findGroup("EditorTabPopupMenu");
        editorTabPopup.addSeparator();
        editorTabPopup.add(action);
View Full Code Here

Examples of com.jgoodies.forms.builder.DefaultFormBuilder.addSeparator()

                ("8dlu, left:pref, 8dlu, fill:150dlu, 4dlu, fill:pref", // 4dlu, left:pref, 4dlu",
                        "pref, 6dlu, pref, 6dlu, pref, 6dlu, pref, 6dlu, pref, 6dlu, "
                                    +"pref, 6dlu, pref, 6dlu, pref, 6dlu, pref");
        DefaultFormBuilder builder = new DefaultFormBuilder(layout);
        CellConstraints cc = new CellConstraints();
        builder.addSeparator(Globals.lang("Editor options"), cc.xyw(1,1, 5));
        builder.add(autoOpenForm, cc.xy(2, 3));
        builder.add(disableOnMultiple, cc.xy(2, 5));
        builder.add(showSource, cc.xy(2, 7));
        builder.add(defSource, cc.xy(2, 9));
        builder.add(autoComplete, cc.xy(2, 11));
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.