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