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.ASWingCheckBoxUI extends BasicCheckBoxUI{
    14  	/*shared instance*/
    15  	private static var asWingCheckBoxUI:ASWingCheckBoxUI;
    16  	
    17      public static function createInstance(c:Component):ComponentUI {
    18      	if(asWingCheckBoxUI == null){
    19      		asWingCheckBoxUI = new ASWingCheckBoxUI();
    20      	}
    21          return asWingCheckBoxUI;
    22      }
    23      
    24      public function ASWingCheckBoxUI(){
    25      	super();
    26      }	
    27  }
    28