Package com.eviware.soapui.support.components

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


  {
    configPanel = UISupport.addTitledBorder( new JPanel( new BorderLayout() ), "Configuration" );
    if( panel == null )
    {
      panel = new JPanel( new BorderLayout() );
      configForm = new SimpleForm();
      createSimpleJdbcConfigForm();
      addStoreProcedureChangeListener();

      panel.add( new JScrollPane( configForm.getPanel() ) );
    }
View Full Code Here


  public SimpleForm getForm()
  {
    if( simpleForm == null )
    {
      simpleForm = new SimpleForm();
      simpleForm.addSpace( 5 );

      buildForm( simpleForm );

      simpleForm.addSpace( 5 );
View Full Code Here

  public SimpleForm getForm()
  {
    if( proxyPrefForm == null )
    {
      proxyPrefForm = new SimpleForm();
      proxyPrefForm.addSpace( 5 );
      hostTextField = proxyPrefForm.appendTextField( HOST, "proxy host to use" );
      hostTextField.getDocument().addDocumentListener( new ProxyDocumentListenerAdapter() );
      portTextField = proxyPrefForm.appendTextField( PORT, "proxy port to use" );
      portTextField.getDocument().addDocumentListener( new ProxyDocumentListenerAdapter() );
View Full Code Here

  public SimpleForm getForm()
  {
    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 + ".." );
View Full Code Here

  public SimpleForm getForm()
  {
    if( editorForm == null )
    {
      editorForm = new SimpleForm();
      editorForm.addSpace( 5 );
      editorForm.appendCheckBox( CLOSE_PROJECTS, "Close all projects on startup", false );
      editorForm.appendSeparator();
      editorForm.appendCheckBox( ORDER_PROJECTS, "Order Projects alphabetically in tree", false );
      editorForm.appendCheckBox( ORDER_SERVICES, "Order Services alphabetically in tree", false );
View Full Code Here

          if( font != null )
            editorFontTextField.setText( encodeFont( font ) );
        }
      } ) );

      editorForm = new SimpleForm();
      editorForm.addSpace( 5 );
      editorForm.append( "Editor Font", builder.getPanel() );
      editorForm.appendSeparator();
      editorForm.appendCheckBox( XML_LINE_NUMBERS, "Show line numbers in XML editors by default", true );
      editorForm.appendCheckBox( GROOVY_LINE_NUMBERS, "Show line numbers in Groovy editors by default", true );
View Full Code Here

  public SimpleForm getForm()
  {
    if( httpForm == null )
    {
      httpForm = new SimpleForm();
      httpForm.addSpace( 5 );
      httpForm.appendComboBox( HttpPrefs.HTTP_VERSION, new String[] { HttpSettings.HTTP_VERSION_1_1,
          HttpSettings.HTTP_VERSION_1_0 }, "Select HTTP Version to use" );
      httpForm.appendTextField( HttpPrefs.USER_AGENT_HEADER,
          "User-Agent HTTP header to send, blank will send default" );
View Full Code Here

  public SimpleForm getForm()
  {
    if( securityScansForm == null )
    {
      securityScansForm = new SimpleForm();

      PropertyHolderTable propertyHolderTable = new PropertyHolderTable(
          SecurityScanUtil.getGlobalSensitiveInformationExposureTokens() )
      {
        protected JTable buildPropertiesTable()
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" ) );
View Full Code Here

  public SimpleForm getForm()
  {
    if( globalPropertiesForm == null )
    {
      globalPropertiesForm = new SimpleForm();

      PropertyHolderTable propertyHolderTable = new PropertyHolderTable(
          PropertyExpansionUtils.getGlobalProperties() );
      propertyHolderTable.setPreferredSize( new Dimension( 200, 300 ) );
      globalPropertiesForm.addComponent( propertyHolderTable );
View Full Code Here

TOP

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

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.