Examples of createForm()


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

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

  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

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

    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

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

  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

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

  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

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

        "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

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

    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

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

  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

Examples of de.innovationgate.wgpublisher.webtml.utils.TMLContext.createform()

                formInfo.setKeepOnValidate(false);
                CSConfig csConfig = (CSConfig) db.getAttribute(WGACore.DBATTRIB_CSCONFIG);
                if (csConfig != null) {
                    formInfo.setVersionCompliance(csConfig.getVersionCompliance());
                }
                de.innovationgate.wgpublisher.webtml.utils.TMLForm tmlForm = context.createform(formInfo);
                tmlForm.importServicesForm(form);
            }
           
            // Create map of parent scope objects
            Map<String, Object> parentScopeObjects = new HashMap<String, Object>();
View Full Code Here

Examples of org.activiti.workflow.simple.alfresco.model.config.Configuration.createForm()

   
    // Create a form-config for the task
    Module shareModule = AlfrescoConversionUtil.getExtension(conversion).getModules().get(0);
    Configuration configuration = shareModule.addConfiguration(AlfrescoConversionConstants.EVALUATOR_TASK_TYPE
        , type.getName());
    Form formConfig = configuration.createForm();
   
    // Populate model and form based on FormDefinition
    formCreator.createForm(type, formConfig, humanStep.getForm(), conversion);
   
    // Set up property sharing using task-listeners
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.