Package net.xoetrope.awt

Examples of net.xoetrope.awt.XRadioButton


  public TestXRadioButton() {
  }

  public void testSetState()
  {
    XRadioButton button1 = new XRadioButton();
    XRadioButton button2 = new XRadioButton();
    button1.setState( false );
    button2.setState( true );
    assertTrue( button1.getState() != button2.getState());
  }
View Full Code Here

TOP

Related Classes of net.xoetrope.awt.XRadioButton

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.