All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.eviware.x.impl.swing.JStringListFormField Maven / Gradle / Ivy

The newest version!
/*
 *  soapUI, copyright (C) 2004-2011 smartbear.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 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 )
	{
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy