Package com.eviware.soapui.support.components

Examples of com.eviware.soapui.support.components.StringListFormComponent


    {
      types.add( type.getName() );
    }

    detailsForm.appendComboBox( "type", "Type", types.toArray(), "The type of the parameter" );
    optionsFormComponent = new StringListFormComponent( "Available values for this Parameter" );
    optionsFormComponent.setPreferredSize( new Dimension( 350, 80 ) );
    detailsForm.appendComponent( "options", "Options", optionsFormComponent );
    detailsForm.appendTextField( "description", "Description", "A short description of the parameter" );
    detailsForm.appendCheckBox( "disableUrlEncoding", "Disable Encoding",
        "Disables URL-Encoding of the parameter value" );
View Full Code Here


        form.append( annotation.name(), new FileListFormComponent( annotation.description() ) );
        break;
      }
      case STRINGLIST :
      {
        form.append( annotation.name(), new StringListFormComponent( annotation.description() ) );
        break;
      }
      case FOLDER :
      {
        form.append( annotation.name(), new DirectoryFormComponent( annotation.description() ) );
View Full Code Here

    this( tooltip, null );
  }

  public JStringListFormField( String tooltip, String defaultValue )
  {
    super( new StringListFormComponent( tooltip, false, defaultValue ) );
  }
View Full Code Here

    public JStringListFormField(String tooltip) {
        this(tooltip, null);
    }

    public JStringListFormField(String tooltip, String defaultValue) {
        super(new StringListFormComponent(tooltip, false, defaultValue));
    }
View Full Code Here

                case FILELIST: {
                    form.append(annotation.name(), new FileListFormComponent(annotation.description()));
                    break;
                }
                case STRINGLIST: {
                    form.append(annotation.name(), new StringListFormComponent(annotation.description()));
                    break;
                }
                case FOLDER: {
                    form.append(annotation.name(), new DirectoryFormComponent(annotation.description()));
                    break;
View Full Code Here

        for (SchemaType type : XmlBeans.getBuiltinTypeSystem().globalTypes()) {
            types.add(type.getName());
        }

        detailsForm.appendComboBox("type", "Type", types.toArray(), "The type of the parameter");
        StringListFormComponent optionsFormComponent = new StringListFormComponent("Available values for this Parameter");
        //TODO: Consider removing hardcoded size
        optionsFormComponent.setPreferredSize(new Dimension(350, 100));
        detailsForm.appendComponent("options", "Options", optionsFormComponent);
        detailsForm.appendTextField("description", "Description", "A short description of the parameter");
        detailsForm.appendCheckBox("disableUrlEncoding", "Disable Encoding",
                "Disables URL-Encoding of the parameter value");
View Full Code Here

TOP

Related Classes of com.eviware.soapui.support.components.StringListFormComponent

Copyright © 2018 www.massapicom. 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.