Examples of buildDialog()


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

        } );
    mainForm.addComboBox( SEND, new String[] {}, "Queue/Topic  sending/publishing" );
    mainForm.addComboBox( RECEIVE, new String[] {}, "Queue/Topic  receive/subscribe" );

    return builder.buildDialog( builder.buildOkCancelActions(), "create JMS endpoint by selecting proper values",
        null );
  }

  private void extractDestinations( Hermes hermes, List<Destination> destinationList )
  {
View Full Code Here

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

    mainForm.addTextField( TESTRUNNERPATH, "Folder containing SecurityTestRunner.bat to use", XForm.FieldType.FOLDER );

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

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

  protected XForm buildArgsForm( XFormDialogBuilder builder, boolean addJavaArgs, String toolName )
  {
View Full Code Here

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

    advForm.addCheckBox( DEX, "Enables loading of the default excludes namespace mapping" );
    advForm.addCheckBox( VALIDATE, "Enables validating the WSDL before generating the code" );

    buildArgsForm( builder, true, "wsdl2java" );

    return builder.buildDialog( buildDefaultActions( HelpUrls.CXFWSDL2JAVA_HELP_URL, modelItem ),
        "Specify arguments for Apache CXF wsdl2java", UISupport.TOOL_ICON );
  }

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

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

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

    buildArgsForm( builder, false, "scomp" );

    return builder.buildDialog( buildDefaultActions( HelpUrls.XMLBEANS_HELP_URL, modelItem ),
        "Specify arguments for XmlBeans 2.X scomp", 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( VERBOSE, "(be extra verbose)" );

    buildArgsForm( builder, false, "xjc" );

    return builder.buildDialog( buildDefaultActions( HelpUrls.JABXJC_HELP_URL, modelItem ),
        "Specify arguments for the JAXB 2 xjc compiler", 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()

    httpForm.addTextField( PROXYPASSWORD, "proxy password to access the WSDL-URI", XForm.FieldType.PASSWORD );
    httpForm.addTextField( PROXYDOMAIN, "proxy domain to access the WSDL-URI", XForm.FieldType.TEXT );

    buildArgsForm( builder, false, "wsdl.exe" );

    return builder.buildDialog( buildDefaultActions( HelpUrls.DOTNET_HELP_URL, modelItem ),
        "Specify arguments for .NET 2 wsdl.exe", 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()

        ConfigurationDocument configDocument = createConfigFile( getDialog().getValues() );
        return configDocument.toString();
      }
    } );

    return builder.buildDialog( actions, "Specify arguments for JBossWS wstools java2wsdl functionality",
        UISupport.TOOL_ICON );
  }

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

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

    XFormDialogBuilder builder = XFormFactory.createDialogBuilder( "Launch SecurityTestRunner" );
    createTestCaseRunnerTabs( modelItem, builder );

    // TODO: update help URL
    return builder.buildDialog( buildDefaultActions( HelpUrls.TESTRUNNER_HELP_URL, modelItem ),
        "Specify arguments for launching soapUI Security TestRunner", UISupport.TOOL_ICON );
  }

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

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

    mainForm.addCheckBox( KEEP, "(keep generated files)" );

    buildArgsForm( builder, false, "WSImport" );

    return builder.buildDialog( buildDefaultActions( HelpUrls.WSIMPORT_HELP_URL, modelItem ),
        "Specify arguments for JWSDP/JAX-WS wsimport", 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 LoadTestRunner", UISupport.TOOL_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.