Examples of addNameSpaceTable()


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

    advForm.addTextField( IMPLCLASS, messages.get( "Dialog.Advanced.ImplClass" ), XForm.FieldType.JAVA_CLASS );
    advForm.addTextField( FACTORY, messages.get( "Dialog.Advanced.Factory" ), XForm.FieldType.JAVA_CLASS );

    advForm.addTextField( PACKAGE, messages.get( "Dialog.Advanced.Package" ), XForm.FieldType.JAVA_PACKAGE );
    advForm.addNameSpaceTable( NAMESPACE_MAPPING, modelItem );

    advForm.addTextField( USERNAME, messages.get( "Dialog.Advanced.Username" ), XForm.FieldType.TEXT );
    advForm.addTextField( PASSWORD, messages.get( "Dialog.Advanced.Password" ), XForm.FieldType.PASSWORD );

    buildArgsForm( builder, true, "WSDL2Java" ); //$NON-NLS-1$
View Full Code Here

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

    XForm mainForm = builder.createForm( "Basic" );
    addWSDLFields( mainForm, modelItem );

    mainForm.addTextField( OUTPUT, "Root directory for all emitted files.", XForm.FieldType.PROJECT_FOLDER );
    mainForm.addTextField( PACKAGE, "Default Package for generated classes", XForm.FieldType.JAVA_PACKAGE );
    mainForm.addNameSpaceTable( NAMESPACE_MAPPING, modelItem );

    mainForm.addCheckBox( CLIENT_STUBS, "Generates starting point code for a client mainline" );
    mainForm.addCheckBox( SERVER_STUBS, "Generates starting point code for a server mainline" );
    mainForm.addCheckBox( IMPL_STUBS, "Generates starting point code for an implementation object" );
    mainForm.addCheckBox( ANT_FILE, "Generates the Ant build.xml file" );
View Full Code Here

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

    advForm.addTextField( CLASSDIR, "The directory into which the compiled class files are written",
        XForm.FieldType.FOLDER );

    advForm.addTextField( CATALOG_FILE, "The catalog file to map the imported wsdl/schema", XForm.FieldType.FILE );

    advForm.addNameSpaceTable( EXCLUDE_NAMESPACES, modelItem );
    advForm.addCheckBox( EXSH, "Enables processing of extended soap header message binding" );
    advForm.addCheckBox( DNS, "Enables loading of the default namespace package name mapping" );
    advForm.addCheckBox( DEX, "Enables loading of the default excludes namespace mapping" );
    advForm.addCheckBox( VALIDATE, "Enables validating the WSDL before generating the code" );
View Full Code Here

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

    mainForm.addTextField( OUTPUT, "The root directory for all emitted files.", XForm.FieldType.PROJECT_FOLDER );
    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()
View Full Code Here

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

    featuresForm.addCheckBox( UNWRAP, "(Enable unwrapping of document/literal wrapper elements in WSI mode)" );
    featuresForm.addCheckBox( WSI,
        "(Enable WSI-Basic Profile features, to be used for document/literal and rpc/literal)" );

    XForm advForm = builder.createForm( "Advanced" );
    advForm.addNameSpaceTable( NAMESPACE_MAPPING, modelItem );

    buildArgsForm( builder, false, "wscompile" );

    ActionList actions = buildDefaultActions( HelpUrls.WSCOMPILE_HELP_URL, modelItem );
    actions.addAction( new WSCompileShowConfigFileAction( "JAX-RPC wscompile",
View Full Code Here

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

        advForm.addTextField(IMPLCLASS, messages.get("Dialog.Advanced.ImplClass"), XForm.FieldType.JAVA_CLASS);
        advForm.addTextField(FACTORY, messages.get("Dialog.Advanced.Factory"), XForm.FieldType.JAVA_CLASS);

        advForm.addTextField(PACKAGE, messages.get("Dialog.Advanced.Package"), XForm.FieldType.JAVA_PACKAGE);
        advForm.addNameSpaceTable(NAMESPACE_MAPPING, modelItem);

        advForm.addTextField(USERNAME, messages.get("Dialog.Advanced.Username"), XForm.FieldType.TEXT);
        advForm.addTextField(PASSWORD, messages.get("Dialog.Advanced.Password"), XForm.FieldType.PASSWORD);

        buildArgsForm(builder, true, "WSDL2Java"); //$NON-NLS-1$
View Full Code Here

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

        XForm mainForm = builder.createForm("Basic");
        addWSDLFields(mainForm, modelItem);

        mainForm.addTextField(OUTPUT, "Root directory for all emitted files.", XForm.FieldType.PROJECT_FOLDER);
        mainForm.addTextField(PACKAGE, "Default Package for generated classes", XForm.FieldType.JAVA_PACKAGE);
        mainForm.addNameSpaceTable(NAMESPACE_MAPPING, modelItem);

        mainForm.addCheckBox(CLIENT_STUBS, "Generates starting point code for a client mainline");
        mainForm.addCheckBox(SERVER_STUBS, "Generates starting point code for a server mainline");
        mainForm.addCheckBox(IMPL_STUBS, "Generates starting point code for an implementation object");
        mainForm.addCheckBox(ANT_FILE, "Generates the Ant build.xml file");
View Full Code Here

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

        advForm.addTextField(CLASSDIR, "The directory into which the compiled class files are written",
                XForm.FieldType.FOLDER);

        advForm.addTextField(CATALOG_FILE, "The catalog file to map the imported wsdl/schema", XForm.FieldType.FILE);

        advForm.addNameSpaceTable(EXCLUDE_NAMESPACES, modelItem);
        advForm.addCheckBox(EXSH, "Enables processing of extended soap header message binding");
        advForm.addCheckBox(DNS, "Enables loading of the default namespace package name mapping");
        advForm.addCheckBox(DEX, "Enables loading of the default excludes namespace mapping");
        advForm.addCheckBox(VALIDATE, "Enables validating the WSDL before generating the code");
View Full Code Here

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

        featuresForm.addCheckBox(UNWRAP, "(Enable unwrapping of document/literal wrapper elements in WSI mode)");
        featuresForm.addCheckBox(WSI,
                "(Enable WSI-Basic Profile features, to be used for document/literal and rpc/literal)");

        XForm advForm = builder.createForm("Advanced");
        advForm.addNameSpaceTable(NAMESPACE_MAPPING, modelItem);

        buildArgsForm(builder, false, "wscompile");

        ActionList actions = buildDefaultActions(HelpUrls.WSCOMPILE_HELP_URL, modelItem);
        actions.addAction(new WSCompileShowConfigFileAction("JAX-RPC wscompile",
View Full Code Here

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

        mainForm.addTextField(OUTPUT, "The root directory for all emitted files.", XForm.FieldType.PROJECT_FOLDER);
        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() {
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.