Package com.eviware.x.form

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


    reportForm.addTextField( GENERATEREPORTSEACHTESTCASE, "Report to Generate (soapUI Pro only)",
        XForm.FieldType.TEXT ).setEnabled( proVersion );
    reportForm.addTextField( REPORTFORMAT, "Choose report format(s), comma-separated (soapUI Pro only)",
        XForm.FieldType.TEXT ).setEnabled( proVersion );

    propertyForm = builder.createForm( "Properties" );
    propertyForm.addComponent( GLOBALPROPERTIES, createTextArea() );
    propertyForm.addComponent( SYSTEMPROPERTIES, createTextArea() );
    propertyForm.addComponent( PROJECTPROPERTIES, createTextArea() );

    setToolsSettingsAction( null );
View Full Code Here


  protected XFormDialog buildDialog( Interface modelItem )
  {
    XFormDialogBuilder builder = XFormFactory.createDialogBuilder( "GSoap Artifacts" );

    XForm wsdl2hAdvForm = builder.createForm( "wsdl2h" );

    wsdl2hAdvForm.addCheckBox( WSDL2H, null );
    addWSDLFields( wsdl2hAdvForm, modelItem );

    wsdl2hAdvForm.addTextField( WSDL2H_OUTPUT, "name of output file", XForm.FieldType.PROJECT_FILE );
View Full Code Here

    wsdl2hAdvForm.addCheckBox( WSDL2H, null );
    addWSDLFields( wsdl2hAdvForm, modelItem );

    wsdl2hAdvForm.addTextField( WSDL2H_OUTPUT, "name of output file", XForm.FieldType.PROJECT_FILE );

    XForm soapcpp2AdvForm = builder.createForm( "soapcpp2" );

    soapcpp2AdvForm.addCheckBox( SOAPCPP2, null );

    wsdl2hAdvForm.addCheckBox( GENERATE_INDEXED_STRUCT, null );
    wsdl2hAdvForm.addCheckBox( GENERATE_C_SOURCE, null );
View Full Code Here

  protected XFormDialog buildDialog( Interface modelItem )
  {
    XFormDialogBuilder builder = XFormFactory.createDialogBuilder( "XFire 1.X 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, "Package for generated classes", XForm.FieldType.JAVA_PACKAGE ).setRequired(
        true, "Package is required" );
View Full Code Here

  protected XFormDialog buildDialog( Interface modelItem )
  {
    XFormDialogBuilder builder = XFormFactory.createDialogBuilder( "WSCompile" );

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

    mainForm
        .addTextField( PACKAGE, "the package of the classes generated by wscompile", XForm.FieldType.JAVA_PACKAGE );
    mainForm.addTextField( OUTPUT, "where to place generated output files", XForm.FieldType.PROJECT_FOLDER );
View Full Code Here

        "Generate code for the specified JAX-RPC SI version" );
    mainForm.addTextField( SECURITY, "Security configuration file to generate security code",
        XForm.FieldType.PROJECT_FILE );
    mainForm.addTextField( PROXY, "Specify a HTTP proxy server", XForm.FieldType.URL );

    XForm featuresForm = builder.createForm( "Features" );

    featuresForm.addCheckBox( DATAHANDLERONLY, "(Always map attachments to the DataHandler type)" );
    featuresForm.addCheckBox( DONOTUNWRAP, "(Disable unwrapping of document/literal wrapper elements in WSI mode)" );
    featuresForm.addCheckBox( EXPLICITCONTEXT, "(Turn on explicit service context mapping)" );
    featuresForm.addCheckBox( JAXBENUMTYPE, "(Map anonymous enumeration to its base type)" );
View Full Code Here

    featuresForm.addCheckBox( STRICT, "(Generate code strictly compliant with JAXRPC spec)" );
    featuresForm.addCheckBox( UNWRAP, "(Enable unwrapping of document/literal wrapper elements in WSI mode)" );
    featuresForm.addCheckBox( WSI,
        "(Enable WSI-Basic Profile features, to be used for document/literal and rpc/literal)" );

    XForm advForm = builder.createForm( "Advanced" );
    advForm.addNameSpaceTable( NAMESPACE_MAPPING, modelItem );

    buildArgsForm( builder, false, "wscompile" );

    ActionList actions = buildDefaultActions( HelpUrls.WSCOMPILE_HELP_URL, modelItem );
View Full Code Here

  protected XFormDialog buildDialog( Interface modelItem )
  {
    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",
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)" );
View Full Code Here

  public void perform( WsdlTestCase testCase, Object param )
  {
    if( dialog == null )
    {
      XFormDialogBuilder builder = XFormFactory.createDialogBuilder( "TestCase Options" );
      form = builder.createForm( "Basic" );
      form.addCheckBox( SEARCH_PROPERTIES, "Search preceding TestSteps for property values" );
      form.addCheckBox( KEEP_SESSION, "Maintain HTTP session" );
      form.addCheckBox( FAIL_ON_ERROR, "Fail on error" ).addFormFieldListener( new XFormFieldListener()
      {
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.