Package com.eviware.x.form

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


    XFormDialogBuilder builder = XFormFactory.createDialogBuilder( "JBossWS JAX-WS Artifacts" );

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

    mainForm.addTextField( OUTPUT, "target directory for generated files.", XForm.FieldType.PROJECT_FOLDER );
    mainForm.addTextField( PACKAGE, "target package nam", XForm.FieldType.JAVA_PACKAGE );
    mainForm.addTextField( SOURCE_OUTPUT, "target directory for generated source files",
        XForm.FieldType.PROJECT_FOLDER );
    mainForm.addTextField( CATALOG, "catalog file to resolve external entity references",
        XForm.FieldType.PROJECT_FILE );
View Full Code Here


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

    mainForm.addTextField( OUTPUT, "target directory for generated files.", XForm.FieldType.PROJECT_FOLDER );
    mainForm.addTextField( PACKAGE, "target package nam", XForm.FieldType.JAVA_PACKAGE );
    mainForm.addTextField( SOURCE_OUTPUT, "target directory for generated source files",
        XForm.FieldType.PROJECT_FOLDER );
    mainForm.addTextField( CATALOG, "catalog file to resolve external entity references",
        XForm.FieldType.PROJECT_FILE );
    mainForm.addTextField( BINDING_FILES, "comma-separated list of external JAX-WS or JAXB binding files",
View Full Code Here

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

    mainForm.addTextField( OUTPUT, "target directory for generated files.", XForm.FieldType.PROJECT_FOLDER );
    mainForm.addTextField( PACKAGE, "target package nam", XForm.FieldType.JAVA_PACKAGE );
    mainForm.addTextField( SOURCE_OUTPUT, "target directory for generated source files",
        XForm.FieldType.PROJECT_FOLDER );
    mainForm.addTextField( CATALOG, "catalog file to resolve external entity references",
        XForm.FieldType.PROJECT_FILE );
    mainForm.addTextField( BINDING_FILES, "comma-separated list of external JAX-WS or JAXB binding files",
        XForm.FieldType.TEXT );
View Full Code Here

    mainForm.addTextField( OUTPUT, "target directory for generated files.", XForm.FieldType.PROJECT_FOLDER );
    mainForm.addTextField( PACKAGE, "target package nam", XForm.FieldType.JAVA_PACKAGE );
    mainForm.addTextField( SOURCE_OUTPUT, "target directory for generated source files",
        XForm.FieldType.PROJECT_FOLDER );
    mainForm.addTextField( CATALOG, "catalog file to resolve external entity references",
        XForm.FieldType.PROJECT_FILE );
    mainForm.addTextField( BINDING_FILES, "comma-separated list of external JAX-WS or JAXB binding files",
        XForm.FieldType.TEXT );
    mainForm.addTextField( WSDLLOCATION, "@WebService.wsdlLocation and @WebServiceClient.wsdlLocation value",
        XForm.FieldType.TEXT );
View Full Code Here

    mainForm.addTextField( PACKAGE, "target package nam", XForm.FieldType.JAVA_PACKAGE );
    mainForm.addTextField( SOURCE_OUTPUT, "target directory for generated source files",
        XForm.FieldType.PROJECT_FOLDER );
    mainForm.addTextField( CATALOG, "catalog file to resolve external entity references",
        XForm.FieldType.PROJECT_FILE );
    mainForm.addTextField( BINDING_FILES, "comma-separated list of external JAX-WS or JAXB binding files",
        XForm.FieldType.TEXT );
    mainForm.addTextField( WSDLLOCATION, "@WebService.wsdlLocation and @WebServiceClient.wsdlLocation value",
        XForm.FieldType.TEXT );

    mainForm.addCheckBox( KEEP, "(keep generated files)" );
View Full Code Here

        XForm.FieldType.PROJECT_FOLDER );
    mainForm.addTextField( CATALOG, "catalog file to resolve external entity references",
        XForm.FieldType.PROJECT_FILE );
    mainForm.addTextField( BINDING_FILES, "comma-separated list of external JAX-WS or JAXB binding files",
        XForm.FieldType.TEXT );
    mainForm.addTextField( WSDLLOCATION, "@WebService.wsdlLocation and @WebServiceClient.wsdlLocation value",
        XForm.FieldType.TEXT );

    mainForm.addCheckBox( KEEP, "(keep generated files)" );
    mainForm.addCheckBox( STACKTRACE, "(show stacktrace for errors)" );
View Full Code Here

  private void buildDialog()
  {
    XFormDialogBuilder builder = XFormFactory.createDialogBuilder( "Create TestRequest" );
    XForm mainForm = builder.createForm( "Basic" );

    mainForm.addTextField( STEP_NAME, "Name of TestRequest Step", 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)" );
View Full Code Here

  private void buildDialog()
  {
    XFormDialogBuilder builder = XFormFactory.createDialogBuilder( "Contains Assertion" );
    XForm mainForm = builder.createForm( "Basic" );

    mainForm.addTextField( CONTENT, "Content to check for", XForm.FieldType.TEXTAREA ).setWidth( 40 );
    mainForm.addCheckBox( IGNORE_CASE, "Ignore case in comparison" );
    mainForm.addCheckBox( USE_REGEX, "Use token as Regular Expression" );

    dialog = builder.buildDialog( builder.buildOkCancelHelpActions( HelpUrls.SIMPLE_CONTAINS_HELP_URL ),
        "Specify options", UISupport.OPTIONS_ICON );
View Full Code Here

  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 );

    closeRequestCheckBox = mainForm.addCheckBox( CLOSE_REQUEST, "(closes the current window for this request)" );
    mainForm.addCheckBox( SHOW_TESTCASE, "(opens the TestCase editor for the target TestCase)" );
    mainForm.addCheckBox( SHOW_REQUEST, "(opens the Request editor for the created TestStep)" );
View Full Code Here

  private void buildDialog()
  {
    XFormDialogBuilder builder = XFormFactory.createDialogBuilder( "NotContains Assertion" );
    XForm mainForm = builder.createForm( "Basic" );

    mainForm.addTextField( CONTENT, "Content to check for", XForm.FieldType.TEXTAREA ).setWidth( 40 );
    mainForm.addCheckBox( IGNORE_CASE, "Ignore case in comparison" );
    mainForm.addCheckBox( USE_REGEX, "Use token as Regular Expression" );

    dialog = builder.buildDialog( builder.buildOkCancelHelpActions( HelpUrls.SIMPLE_NOT_CONTAINS_HELP_URL ),
        "Specify options", UISupport.OPTIONS_ICON );
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.