Examples of buildDialog()


Examples of com.eviware.x.form.XFormDialogBuilder.buildDialog()

    buildArgsForm( builder, false, "wstools" );

    ActionList actions = buildDefaultActions( HelpUrls.WSTOOLS_HELP_URL, modelItem );
    actions.addAction( new JBossWSShowConfigFileAction( "JBossWS Wsdl2Java",
        "Contents of generated wsconfig.xml file", modelItem ) );
    return builder.buildDialog( actions, "Specify arguments for JBossWS wstools wsdl2java functionality",
        UISupport.TOOL_ICON );
  }

  protected void generate( StringToStringMap values, ToolHost toolHost, Interface modelItem ) throws Exception
  {
View Full Code Here

Examples of com.eviware.x.form.XFormDialogBuilder.buildDialog()

    mainForm.addTextField( PACKAGE, "The target package for generated classes", XForm.FieldType.JAVA_PACKAGE );

    buildArgsForm( builder, true, "wsa" );

    ActionList actions = buildDefaultActions( HelpUrls.ORACLEWSA_HELP_URL, modelItem );
    return builder.buildDialog( actions, "Specify arguments for Oracle wsa.jar genProxy functionality",
        UISupport.TOOL_ICON );
  }

  protected void generate( StringToStringMap values, ToolHost toolHost, Interface modelItem ) throws Exception
  {
View Full Code Here

Examples of com.eviware.x.form.XFormDialogBuilder.buildDialog()

    propertyForm.addComponent( PROJECTPROPERTIES, createTextArea() );

    setToolsSettingsAction( null );
    buildArgsForm( builder, false, "TestRunner" );

    return builder.buildDialog( buildDefaultActions( HelpUrls.TESTRUNNER_HELP_URL, modelItem ),
        "Specify arguments for launching soapUI TestRunner", UISupport.TOOL_ICON );
  }

  protected JTextAreaFormField createTextArea()
  {
View Full Code Here

Examples of com.eviware.x.form.XFormDialogBuilder.buildDialog()

        XForm.FieldType.TEXT );
    soapcpp2AdvForm.addCheckBox( XSI_TYPED, null );
    soapcpp2AdvForm.addCheckBox( NO_GEN_WSDL_SCHEMA, null );
    soapcpp2AdvForm.addCheckBox( NO_GEN_SAMPLE_XML, null );

    return builder.buildDialog( buildDefaultActions( HelpUrls.GSOAP_HELP_URL, modelItem ),
        "Specify arguments for GSoap wsdl2h and soap2cpp", UISupport.TOOL_ICON );
  }

  protected void generate( StringToStringMap values, ToolHost toolHost, Interface modelItem ) throws Exception
  {
View Full Code Here

Examples of com.eviware.x.form.XFormDialogBuilder.buildDialog()

    mainForm.addCheckBox( EXPLICIT_ANNOTATION, null );
    mainForm.addCheckBox( SERVER_STUBS, null );

    buildArgsForm( builder, true, "WsGen" );

    return builder.buildDialog( buildDefaultActions( HelpUrls.XFIRE_HELP_URL, modelItem ),
        "Specify arguments for XFire 1.X WsGen", UISupport.TOOL_ICON );
  }

  protected StringToStringMap initValues( Interface modelItem, Object param )
  {
View Full Code Here

Examples of com.eviware.x.form.XFormDialogBuilder.buildDialog()

    ActionList actions = buildDefaultActions( HelpUrls.WSCOMPILE_HELP_URL, modelItem );
    actions.addAction( new WSCompileShowConfigFileAction( "JAX-RPC wscompile",
        "Contents of generated config.xml file", modelItem ) );

    return builder.buildDialog( actions, "Specify arguments for JAX-RPC wscompile", UISupport.TOOL_ICON );
  }

  protected StringToStringMap initValues( Interface modelItem, Object param )
  {
    StringToStringMap values = super.initValues( modelItem, param );
View Full Code Here

Examples of com.eviware.x.form.XFormDialogBuilder.buildDialog()

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

    buildArgsForm( builder, false, "wsconsume" );

    return builder.buildDialog( buildDefaultActions( HelpUrls.JBOSSWS_WSCONSUME_HELP_URL, modelItem ),
        "Specify arguments for JBossWS wsconsume", UISupport.TOOL_ICON );
  }

  protected void generate( StringToStringMap values, ToolHost toolHost, Interface modelItem ) throws Exception
  {
View Full Code Here

Examples of com.eviware.x.form.XFormDialogBuilder.buildDialog()

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

    dialog = builder.buildDialog( builder.buildOkCancelActions(), "Specify options for creating the TestRequest",
        UISupport.OPTIONS_ICON );

    dialogValues.put( ADD_SOAP_RESPONSE_ASSERTION, Boolean.TRUE.toString() );
  }
}
View Full Code Here

Examples of com.eviware.x.form.XFormDialogBuilder.buildDialog()

          new AMFXFormFieldListener() );
      amfForm.addTextField( AMF_ENDPOINT, "AMF Authorization endpoint", FieldType.TEXT );
      amfForm.addTextField( AMF_LOGIN, "AMF Authorization usernmae", FieldType.TEXT );
      amfForm.addTextField( AMF_PASSWORD, "AMF Authorization password", FieldType.PASSWORD );

      dialog = builder.buildDialog( builder.buildOkCancelHelpActions( HelpUrls.TESTCASEOPTIONS_HELP_URL ),
          "Specify general options for this TestCase", UISupport.OPTIONS_ICON );
    }

    StringToStringMap values = new StringToStringMap();
View Full Code Here

Examples of com.eviware.x.form.XFormDialogBuilder.buildDialog()

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

  @Override
  protected String internalAssertRequest( MessageExchange messageExchange, SubmitContext context )
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.