Examples of addTextField()


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

  protected XForm buildArgsForm( XFormDialogBuilder builder, boolean addJavaArgs, String toolName )
  {
    XForm argsForm = builder.createForm( "Custom Args" );
    if( addJavaArgs )
      argsForm.addTextField( JAVA_ARGS, "additional arguments to java", XForm.FieldType.TEXT );

    argsForm.addTextField( TOOL_ARGS, "additional arguments to " + toolName, XForm.FieldType.TEXT );
    return argsForm;
  }
View Full Code Here

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

  {
    XForm argsForm = builder.createForm( "Custom Args" );
    if( addJavaArgs )
      argsForm.addTextField( JAVA_ARGS, "additional arguments to java", XForm.FieldType.TEXT );

    argsForm.addTextField( TOOL_ARGS, "additional arguments to " + toolName, XForm.FieldType.TEXT );
    return argsForm;
  }

  public static final class ShowIntegratedToolsSettingsAction extends AbstractAction
  {
View Full Code Here

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

    mainForm.addCheckBox( DEBUG, "(Compile with debug symbols)" );

    mainForm.addComboBox( JAVASOURCE, new String[] { "1.5", "1.4" },
        "Generate Java source compatible for the specified Java version" );

    mainForm.addTextField( ALLOWMDEF,
        "Ignore multiple defs in given namespaces. Use  ##local  to specify the no-namespace in that list",
        XForm.FieldType.TEXT );
    mainForm.addTextField( CATALOG, "Catalog file to use for resolving external entities",
        XForm.FieldType.PROJECT_FILE );
    mainForm.addTextField( XSDCONFIG, "Path to .xsdconfig file containing type-mapping information",
View Full Code Here

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

        "Generate Java source compatible for the specified Java version" );

    mainForm.addTextField( ALLOWMDEF,
        "Ignore multiple defs in given namespaces. Use  ##local  to specify the no-namespace in that list",
        XForm.FieldType.TEXT );
    mainForm.addTextField( CATALOG, "Catalog file to use for resolving external entities",
        XForm.FieldType.PROJECT_FILE );
    mainForm.addTextField( XSDCONFIG, "Path to .xsdconfig file containing type-mapping information",
        XForm.FieldType.PROJECT_FILE );

    mainForm.addCheckBox( VERBOSE, "(Print more informational messages)" );
View Full Code Here

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

    mainForm.addTextField( ALLOWMDEF,
        "Ignore multiple defs in given namespaces. Use  ##local  to specify the no-namespace in that list",
        XForm.FieldType.TEXT );
    mainForm.addTextField( CATALOG, "Catalog file to use for resolving external entities",
        XForm.FieldType.PROJECT_FILE );
    mainForm.addTextField( XSDCONFIG, "Path to .xsdconfig file containing type-mapping information",
        XForm.FieldType.PROJECT_FILE );

    mainForm.addCheckBox( VERBOSE, "(Print more informational messages)" );

    buildArgsForm( builder, false, "scomp" );
View Full Code Here

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

    XFormDialogBuilder builder = XFormFactory.createDialogBuilder( ".NET 2.0 artifacts" );

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

    mainForm.addTextField( OUTPUT, "root directory for generated files.", XForm.FieldType.PROJECT_FOLDER );
    mainForm.addTextField( NAMESPACE, "The namespace for the generated proxy or template", XForm.FieldType.TEXT );

    mainForm.addCheckBox( SERVER, "(Generates interfaces for server-side implementation of an ASP.Net Web Service)" );
    mainForm.addComboBox( LANGUAGE, new String[] { "CS", "VB", "JS", "VJS", "CPP" }, "add scope to deploy.wsdd" );
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 generated files.", XForm.FieldType.PROJECT_FOLDER );
    mainForm.addTextField( NAMESPACE, "The namespace for the generated proxy or template", XForm.FieldType.TEXT );

    mainForm.addCheckBox( SERVER, "(Generates interfaces for server-side implementation of an ASP.Net Web Service)" );
    mainForm.addComboBox( LANGUAGE, new String[] { "CS", "VB", "JS", "VJS", "CPP" }, "add scope to deploy.wsdd" );

    mainForm.addComboBox( PROTOCOL, new String[] { "SOAP", "SOAP12", "HttpGet", "HttpPost" },
View Full Code Here

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

    XFormDialogBuilder builder = XFormFactory.createDialogBuilder( "JAXB Artifacts" );

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

    mainForm.addTextField( OUTPUT, "generated files will go into this directory", XForm.FieldType.PROJECT_FOLDER );
    mainForm.addTextField( PACKAGE, "the target package", XForm.FieldType.JAVA_PACKAGE );

    mainForm.addTextField( BINDINGS, "external bindings file(s), comma-separated", XForm.FieldType.PROJECT_FILE );
    mainForm.addTextField( CATALOG, "catalog files to resolve external entity references",
        XForm.FieldType.PROJECT_FILE );
View Full Code Here

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

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

    mainForm.addTextField( OUTPUT, "generated files will go into this directory", XForm.FieldType.PROJECT_FOLDER );
    mainForm.addTextField( PACKAGE, "the target package", XForm.FieldType.JAVA_PACKAGE );

    mainForm.addTextField( BINDINGS, "external bindings file(s), comma-separated", XForm.FieldType.PROJECT_FILE );
    mainForm.addTextField( CATALOG, "catalog files to resolve external entity references",
        XForm.FieldType.PROJECT_FILE );
    mainForm.addTextField( CLASSPATH, "where to find user class files", XForm.FieldType.PROJECT_FOLDER );
View Full Code Here

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

    addWSDLFields( mainForm, modelItem );

    mainForm.addTextField( OUTPUT, "generated files will go into this directory", XForm.FieldType.PROJECT_FOLDER );
    mainForm.addTextField( PACKAGE, "the target package", XForm.FieldType.JAVA_PACKAGE );

    mainForm.addTextField( BINDINGS, "external bindings file(s), comma-separated", XForm.FieldType.PROJECT_FILE );
    mainForm.addTextField( CATALOG, "catalog files to resolve external entity references",
        XForm.FieldType.PROJECT_FILE );
    mainForm.addTextField( CLASSPATH, "where to find user class files", XForm.FieldType.PROJECT_FOLDER );

    mainForm.addTextField( HTTPPROXY, "set HTTP/HTTPS proxy. Format is [user[:password]@]proxyHost[:proxyPort]",
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.