Package com.eviware.x.form.support

Source Code of com.eviware.x.form.support.XFormRadioGroupTopButtonPosition

/*
*  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.form.support;

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JRadioButton;
import javax.swing.SwingConstants;

public class XFormRadioGroupTopButtonPosition extends XFormRadioGroup
{

  public XFormRadioGroupTopButtonPosition( String[] values )
  {
    super( values );
  }

  public void addItem( Object value )
  {
    JRadioButton button = new JRadioButton( String.valueOf( value ) );
    button.setVerticalTextPosition( SwingConstants.TOP );

    button.setActionCommand( String.valueOf( value ) );
    button.addActionListener( new ActionListener()
    {

      public void actionPerformed( ActionEvent e )
      {
        fireValueChanged( e.getActionCommand(), null );
      }
    } );

    getComponent().add( button );
    buttonGroup.add( button );
    models.put( String.valueOf( value ), button.getModel() );
    items.add( String.valueOf( value ) );
  }

}
TOP

Related Classes of com.eviware.x.form.support.XFormRadioGroupTopButtonPosition

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.