Examples of addTextField()


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

    XFormField adbWrapCB = advForm.addCheckBox( ADB_WRAP,
        "(Sets the packing flag. if true the classes will be packed.)" );
    XFormField adbWriteCB = advForm.addCheckBox( ADB_WRITE,
        "(Sets the write flag. If set to true the classes will be written by ADB)" );
    XFormTextField jibxCB = advForm.addTextField( JIBX_BINDING_FILE, "The JIBX binding file to use",
        XForm.FieldType.PROJECT_FILE );
    dbComboBox.addComponentEnabler( adbWrapCB, "adb" );
    dbComboBox.addComponentEnabler( adbWriteCB, "adb" );
    dbComboBox.addComponentEnabler( jibxCB, "jibx" );
View Full Code Here

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

  private void buildDialog()
  {
    XFormDialogBuilder builder = XFormFactory.createDialogBuilder( "Add Request to TestCase" );
    XForm mainForm = builder.createForm( "Basic" );

    mainForm.addTextField( STEP_NAME, "Name of TestStep", XForm.FieldType.URL ).setWidth( 30 );

    mainForm.addCheckBox( ADD_SOAP_RESPONSE_ASSERTION, "(adds validation that response is a SOAP message)" );
    mainForm.addCheckBox( ADD_SCHEMA_ASSERTION, "(adds validation that response complies with its schema)" );
    mainForm.addCheckBox( ADD_SOAP_FAULT_ASSERTION, "(adds validation that response is not a SOAP Fault)" );
    closeRequestCheckBox = mainForm.addCheckBox( CLOSE_REQUEST, "(closes the current window for this request)" );
View Full Code Here

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

    XFormDialogBuilder builder = XFormFactory.createDialogBuilder( "Apache CXF Stubs" );

    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" );
View Full Code Here

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

    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" );
View Full Code Here

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

    XFormDialogBuilder builder = XFormFactory.createDialogBuilder( "XmlBeans Classes" );

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

    mainForm.addTextField( XSBTARGET, "Target directory for CLASS and XSB files", XForm.FieldType.PROJECT_FOLDER );
    mainForm.addTextField( SRCTARGET, "Target directory for generated JAVA files", XForm.FieldType.PROJECT_FOLDER );
    mainForm.addTextField( JARFILE, "The name of the output JAR that will contain the result of compilation",
        XForm.FieldType.PROJECT_FILE );

    mainForm.addCheckBox( SRCONLY, "(Do not compile JAVA files or jar the output)" );
View Full Code Here

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

        "<html>Generates all starting point code: types, <br>service proxy, service interface, server mainline, "
            + "<br>client mainline, implementation object, and an Ant build.xml file</html>" );

    XForm advForm = builder.createForm( "Advanced" );

    advForm.addTextField( BINDING_FILES, "Space-separated list of JAXWS or JAXB binding files", XForm.FieldType.TEXT );
    advForm.addCheckBox( COMPILE, "Compiles generated Java files" );
    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 );
View Full Code Here

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

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

    mainForm.addTextField( XSBTARGET, "Target directory for CLASS and XSB files", XForm.FieldType.PROJECT_FOLDER );
    mainForm.addTextField( SRCTARGET, "Target directory for generated JAVA files", XForm.FieldType.PROJECT_FOLDER );
    mainForm.addTextField( JARFILE, "The name of the output JAR that will contain the result of compilation",
        XForm.FieldType.PROJECT_FILE );

    mainForm.addCheckBox( SRCONLY, "(Do not compile JAVA files or jar the output)" );
    mainForm.addCheckBox( DOWNLOADS, "(Permit network downloads for imports and includes)" );
View Full Code Here

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

    XForm advForm = builder.createForm( "Advanced" );

    advForm.addTextField( BINDING_FILES, "Space-separated list of JAXWS or JAXB binding files", XForm.FieldType.TEXT );
    advForm.addCheckBox( COMPILE, "Compiles generated Java files" );
    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 );
View Full Code Here

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

    advForm.addTextField( BINDING_FILES, "Space-separated list of JAXWS or JAXB binding files", XForm.FieldType.TEXT );
    advForm.addCheckBox( COMPILE, "Compiles generated Java files" );
    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" );
View Full Code Here

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

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

    mainForm.addTextField( XSBTARGET, "Target directory for CLASS and XSB files", XForm.FieldType.PROJECT_FOLDER );
    mainForm.addTextField( SRCTARGET, "Target directory for generated JAVA files", XForm.FieldType.PROJECT_FOLDER );
    mainForm.addTextField( JARFILE, "The name of the output JAR that will contain the result of compilation",
        XForm.FieldType.PROJECT_FILE );

    mainForm.addCheckBox( SRCONLY, "(Do not compile JAVA files or jar the output)" );
    mainForm.addCheckBox( DOWNLOADS, "(Permit network downloads for imports and includes)" );
    mainForm.addCheckBox( NOUPA, "(Do not enforce the unique particle attribution rule)" );
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.