1  /*
     2   Copyright aswing.org, see the LICENCE.txt.
     3  */
     4   
     5  import org.aswing.*;
     6  import org.aswing.plaf.*;
     7  import org.aswing.plaf.basic.*;
     8   
     9  /**
    10   *
    11   * @author iiley
    12   */
    13  class org.aswing.plaf.asw.ASWingRadioButtonUI extends BasicRadioButtonUI{
    14  	/*shared instance*/
    15  	private static var asWingRadioButtonUI:ASWingRadioButtonUI;
    16  	
    17      public static function createInstance(c:Component):ComponentUI {
    18      	if(asWingRadioButtonUI == null){
    19      		asWingRadioButtonUI = new ASWingRadioButtonUI();
    20      	}
    21          return asWingRadioButtonUI;
    22      }
    23      
    24      public function ASWingRadioButtonUI(){
    25      	super();
    26      }	
    27  }
    28