Package com.eviware.x.impl.swing

Source Code of com.eviware.x.impl.swing.JStringListFormField

/*
*  soapUI, copyright (C) 2004-2011 eviware.com
*
*  soapUI is free software; you can redistribute it and/or modify it under the
*  terms of version 2.1 of the GNU Lesser General Public License as published by
*  the Free Software Foundation.
*
*  soapUI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
*  even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*  See the GNU Lesser General Public License for more details at gnu.org.
*/

package com.eviware.x.impl.swing;

import com.eviware.soapui.support.components.StringListFormComponent;
import com.eviware.x.form.XFormOptionsField;
import com.eviware.x.form.XFormTextField;

public class JStringListFormField extends AbstractSwingXFormField<StringListFormComponent> implements XFormTextField,
    XFormOptionsField
{
  public JStringListFormField( String tooltip )
  {
    this( tooltip, null );
  }

  public JStringListFormField( String tooltip, String defaultValue )
  {
    super( new StringListFormComponent( tooltip, false, defaultValue ) );
  }

  public void setValue( String value )
  {
    getComponent().setValue( value );
  }

  public String getValue()
  {
    return getComponent().getValue();
  }

  public void setWidth( int columns )
  {
  }

  @Override
  public void addItem( Object value )
  {
    getComponent().addItem( String.valueOf( value ) );
  }

  @Override
  public String[] getOptions()
  {
    return getComponent().getData();
  }

  @Override
  public int[] getSelectedIndexes()
  {
    return new int[0];
  }

  @Override
  public Object[] getSelectedOptions()
  {
    return new Object[0];
  }

  @Override
  public void setOptions( Object[] values )
  {
    String[] data = new String[values.length];
    for( int c = 0; c < values.length; c++ )
      data[c] = String.valueOf( values[c] );

    getComponent().setData( data );
  }

  @Override
  public void setSelectedOptions( Object[] options )
  {
  }
}
TOP

Related Classes of com.eviware.x.impl.swing.JStringListFormField

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.