Package com.eviware.soapui.support.components

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


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


  {
    if( editorForm == null )
    {
      editorForm = new SimpleForm();
      editorForm.addSpace( 5 );
      DirectoryFormComponent directoryFormComponent = new DirectoryFormComponent(
          "Folder containing loadUI.bat(.sh) " );
      directoryFormComponent.setInitialFolder( System.getProperty( "soapui.home" ) + File.separator + ".."
          + File.separator + ".." );
      editorForm.append( LOADUI_PATH, directoryFormComponent );
      editorForm.appendTextField( LOADUI_CAJO_PORT, "Client port for loadUI integration" );
      editorForm.appendTextField( SOAPUI_CAJO_PORT,
          "Server port of soapUI integration (change requires restart of soapUI)" );
View Full Code Here

  {
    if( toolsForm == null )
    {
      toolsForm = new SimpleForm();
      toolsForm.addSpace( 5 );
      toolsForm.append( ToolsPrefs.WSTOOLS, new DirectoryFormComponent( "Location of JBossWS wstools" ) );
      toolsForm.append( ToolsPrefs.WSCOMPILE, new DirectoryFormComponent( "Location of JWSDP wscompile" ) );
      toolsForm.append( ToolsPrefs.WSIMPORT, new DirectoryFormComponent( "Location of JAX-WS wsimport" ) );
      toolsForm.append( ToolsPrefs.AXIS_1_X, new DirectoryFormComponent( "Location of Axis 1.X" ) );
      toolsForm.append( ToolsPrefs.AXIS_2, new DirectoryFormComponent( "Location of Axis 2" ) );
      toolsForm.append( ToolsPrefs.DOTNET, new DirectoryFormComponent( "Location of .NET 2.0 wsdl.exe" ) );
      toolsForm.append( ToolsPrefs.XFIRE, new DirectoryFormComponent( "Location of XFire 1.X" ) );
      toolsForm.append( ToolsPrefs.CXF, new DirectoryFormComponent( "Location of Apache CXF 2.x" ) );
      toolsForm.append( ToolsPrefs.ANT, new DirectoryFormComponent( "Location of Apache ANT 1.6.5 or later" ) );
      toolsForm.append( ToolsPrefs.GSOAP, new DirectoryFormComponent( "Location of GSoap 2.X" ) );
      toolsForm.append( ToolsPrefs.JAXB, new DirectoryFormComponent( "Location of JAXB xjc" ) );
      toolsForm.append( ToolsPrefs.XMLBEANS, new DirectoryFormComponent( "Location of XMLBeans 2.X" ) );
      toolsForm.append( ToolsPrefs.JAVAC, new DirectoryFormComponent( "Location of JDK 1.5 javac" ) );
      toolsForm.append( ToolsPrefs.TCPMON, new DirectoryFormComponent( "Location of TcpMon directory" ) );
      toolsForm.append( ToolsPrefs.WSA, new DirectoryFormComponent( "Location of Orace wsa.jar" ) );
      toolsForm.append( ToolsPrefs.WADL, new DirectoryFormComponent( "Location of wadl2java script" ) );
      toolsForm.append( ToolsPrefs.HERMES_JMS, new DirectoryFormComponent( "Location of HermesJMS" ) );
      toolsForm.addSpace( 5 );
    }

    return toolsForm;
  }
View Full Code Here

    protected Component buildContent()
    {

      SimpleForm form = new SimpleForm();
      folderComponent = new DirectoryFormComponent(
          "Location of desired HermesJMS configuration (hermes-config.xml)" );
      form.addSpace( 5 );
      form.append( "Path", folderComponent );
      form.addSpace( 5 );
View Full Code Here

    public SimpleForm getForm() {
        if (toolsForm == null) {
            toolsForm = new SimpleForm();
            toolsForm.addSpace(5);
            toolsForm.append(ToolsPrefs.WSTOOLS, new DirectoryFormComponent("Location of JBossWS wstools"));
            toolsForm.append(ToolsPrefs.WSCOMPILE, new DirectoryFormComponent("Location of JWSDP wscompile"));
            toolsForm.append(ToolsPrefs.WSIMPORT, new DirectoryFormComponent("Location of JAX-WS wsimport"));
            toolsForm.append(ToolsPrefs.AXIS_1_X, new DirectoryFormComponent("Location of Axis 1.X"));
            toolsForm.append(ToolsPrefs.AXIS_2, new DirectoryFormComponent("Location of Axis 2"));
            toolsForm.append(ToolsPrefs.DOTNET, new DirectoryFormComponent("Location of .NET 2.0 wsdl.exe"));
            toolsForm.append(ToolsPrefs.XFIRE, new DirectoryFormComponent("Location of XFire 1.X"));
            toolsForm.append(ToolsPrefs.CXF, new DirectoryFormComponent("Location of Apache CXF 2.x"));
            toolsForm.append(ToolsPrefs.ANT, new DirectoryFormComponent("Location of Apache ANT 1.6.5 or later"));
            toolsForm.append(ToolsPrefs.GSOAP, new DirectoryFormComponent("Location of GSoap 2.X"));
            toolsForm.append(ToolsPrefs.JAXB, new DirectoryFormComponent("Location of JAXB xjc"));
            toolsForm.append(ToolsPrefs.XMLBEANS, new DirectoryFormComponent("Location of XMLBeans 2.X"));
            toolsForm.append(ToolsPrefs.JAVAC, new DirectoryFormComponent("Location of JDK 1.5 javac"));
            toolsForm.append(ToolsPrefs.TCPMON, new DirectoryFormComponent("Location of TcpMon directory"));
            toolsForm.append(ToolsPrefs.WSA, new DirectoryFormComponent("Location of Orace wsa.jar"));
            toolsForm.append(ToolsPrefs.WADL, new DirectoryFormComponent("Location of wadl2java script"));
            toolsForm.append(ToolsPrefs.HERMES_JMS, new DirectoryFormComponent("Location of HermesJMS"));
            toolsForm.addSpace(5);
        }

        return toolsForm;
    }
View Full Code Here

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

        }

        protected Component buildContent() {

            SimpleForm form = new SimpleForm();
            folderComponent = new DirectoryFormComponent(
                    "Location of desired HermesJMS configuration (hermes-config.xml)");
            form.addSpace(5);
            form.append("Path", folderComponent);
            form.addSpace(5);
View Full Code Here

TOP

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

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.