Package org.apache.geronimo.st.v11.ui.pages

Examples of org.apache.geronimo.st.v11.ui.pages.AppGeneralPage


    public String getDescription() {
        return CommonMessages.editorSectionExtModuleDescription;
    }

    public Wizard getWizard() {
        return new ExtModuleWizard(this);
    }
View Full Code Here


    return CommonMessages.editorGBeanRefDescription;
  }

    @Override
  public Wizard getWizard() {
    return new GBeanRefWizard(this);
  }
View Full Code Here

        return CommonMessages.editorSectionGBeanDescription;
    }

    @Override
    public Wizard getWizard() {
        return new GBeanWizard(this);
    }
View Full Code Here

    public String getDescription() {
        return CommonMessages.editorSectionMessageDestDescription;
    }

    public Wizard getWizard() {
        return new MessageDestWizard(this);
    }
View Full Code Here

    public String getDescription() {
        return CommonMessages.editorSectionModuleDescription;
    }

    public Wizard getWizard() {
        return new ModuleWizard(this);
    }
View Full Code Here

    public String getDescription() {
        return CommonMessages.editorResourceEnvRefDescription;
    }

    public Wizard getWizard() {
        return new ResourceEnvRefWizard(this);
    }
View Full Code Here

    public String getDescription() {
        return CommonMessages.editorResourceRefDescription;
    }

    public Wizard getWizard() {
        return new ResourceRefWizard(this);
    }
View Full Code Here

        return CommonMessages.editorSectionSecurityRolesDescription;
    }

    @Override
    public Wizard getWizard() {
        return new SecurityRoleMappingWizard(this);
    }
View Full Code Here

        return CommonMessages.editorServiceRefDescription;
    }

    @Override
    public Wizard getWizard() {
        return new ServiceRefWizard(this);
    }
View Full Code Here

     * (non-Javadoc)
     *
     * @see org.apache.geronimo.st.ui.editors.AbstractGeronimoFormContentLoader#addApplicationPlanPages(org.eclipse.ui.forms.editor.FormEditor)
     */
    public void addApplicationPlanPages(FormEditor editor) throws PartInitException {
        editor.addPage(new AppGeneralPage(editor, "appgeneralpage", CommonMessages.editorTabGeneral));
        editor.addPage(new SecurityPage(editor, "securitypage", CommonMessages.editorTabSecurity));
        editor.addPage(new ConnectorPage(editor,"connectorpage",CommonMessages.editorTabConnector));
        editor.addPage(createDeploymentFormPage(editor));
    }
View Full Code Here

TOP

Related Classes of org.apache.geronimo.st.v11.ui.pages.AppGeneralPage

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.