Examples of XFormTextField


Examples of com.eviware.x.form.XFormTextField

    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.XFormTextField

  protected void addWSDLFields( XForm mainForm, T modelItem )
  {
    if( !fixedWSDL )
    {
      XFormTextField tf = mainForm.addTextField( WSDL, "url to wsdl", XForm.FieldType.URL );

      if( modelItem instanceof Interface )
      {
        useCached = mainForm.addCheckBox( CACHED_WSDL, null );
        useCached.addComponentEnabler( tf, "false" );
View Full Code Here

Examples of com.eviware.x.form.XFormTextField

          }
        } );
    mainForm.addComboBox( LOADTEST, new String[] {}, "The LoadTest to run" );
    mainForm.addSeparator();

    XFormTextField path = mainForm.addTextField( TESTRUNNERPATH, "Folder containing TestRunner.bat to use",
        XForm.FieldType.FOLDER );
    path.setValue( System.getProperty( "soapui.home", "" ) );
    mainForm.addCheckBox( SAVEPROJECT, "Saves project before running" ).setEnabled( !modelItem.isRemote() );
    mainForm.addCheckBox( SAVEAFTER, "Sets to save the project file after tests have been run" );
    mainForm.addCheckBox( ADDSETTINGS, "Adds global settings to command-line" );
    mainForm.addSeparator();
    mainForm.addTextField( PROJECTPASSWORD, "Set project password", XForm.FieldType.PASSWORD );
View Full Code Here

Examples of com.eviware.x.form.XFormTextField

    mainForm.addTextField( PACKAGE, "Package for generated classes", XForm.FieldType.JAVA_PACKAGE ).setRequired(
        true, "Package is required" );
    XFormField bindingCombo = mainForm.addComboBox( BINDING, new String[] { "jaxb", "xmlbeans" },
        "Binding framework to use" );

    XFormTextField cpField = mainForm.addTextField( CLASSPATH, "Classpath to generated xmlbeans for binding",
        XForm.FieldType.PROJECT_FILE );
    XFormTextField extBindingsField = mainForm.addTextField( EXTERNAL_BINDINGS, "External jaxb binding file(s)",
        XForm.FieldType.PROJECT_FILE );
    bindingCombo.addComponentEnabler( cpField, "xmlbeans" );
    bindingCombo.addComponentEnabler( extBindingsField, "jaxb" );

    mainForm.addTextField( PROFILE, "Profile to use for generating artifacts", XForm.FieldType.TEXT );
View Full Code Here

Examples of com.eviware.x.form.XFormTextField

        return null;
    }

    protected void addWSDLFields(XForm mainForm, T modelItem) {
        if (!fixedWSDL) {
            XFormTextField tf = mainForm.addTextField(WSDL, "url to wsdl", XForm.FieldType.URL);

            if (modelItem instanceof Interface) {
                useCached = mainForm.addCheckBox(CACHED_WSDL, null);
                useCached.addComponentEnabler(tf, "false");
            }
View Full Code Here

Examples of com.eviware.x.form.XFormTextField

                    }
                });
        mainForm.addComboBox(LOADTEST, new String[]{}, "The LoadTest to run");
        mainForm.addSeparator();

        XFormTextField path = mainForm.addTextField(TESTRUNNERPATH, "Folder containing TestRunner.bat to use",
                XForm.FieldType.FOLDER);
        path.setValue(System.getProperty("soapui.home", ""));
        mainForm.addCheckBox(SAVEPROJECT, "Saves project before running").setEnabled(!modelItem.isRemote());
        mainForm.addCheckBox(SAVEAFTER, "Sets to save the project file after tests have been run");
        mainForm.addCheckBox(ADDSETTINGS, "Adds global settings to command-line");
        mainForm.addSeparator();
        mainForm.addTextField(PROJECTPASSWORD, "Set project password", XForm.FieldType.PASSWORD);
View Full Code Here

Examples of com.eviware.x.form.XFormTextField

        mainForm.addTextField(PACKAGE, "Package for generated classes", XForm.FieldType.JAVA_PACKAGE).setRequired(
                true, "Package is required");
        XFormField bindingCombo = mainForm.addComboBox(BINDING, new String[]{"jaxb", "xmlbeans"},
                "Binding framework to use");

        XFormTextField cpField = mainForm.addTextField(CLASSPATH, "Classpath to generated xmlbeans for binding",
                XForm.FieldType.PROJECT_FILE);
        XFormTextField extBindingsField = mainForm.addTextField(EXTERNAL_BINDINGS, "External jaxb binding file(s)",
                XForm.FieldType.PROJECT_FILE);
        bindingCombo.addComponentEnabler(cpField, "xmlbeans");
        bindingCombo.addComponentEnabler(extBindingsField, "jaxb");

        mainForm.addTextField(PROFILE, "Profile to use for generating artifacts", XForm.FieldType.TEXT);
View Full Code Here

Examples of com.eviware.x.form.XFormTextField

        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
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.