1 /* 2 Copyright aswing.org, see the LICENCE.txt. 3 */ 4 /** 5 * @author firdosh 6 */ 7 import org.aswing.*; 8 import org.aswing.plaf.*; 9 import org.aswing.plaf.basic.*; 10 11 class org.aswing.plaf.winxp.WinXpFrameUI extends BasicFrameUI{ 12 13 public function WinXpFrameUI() { 14 super(); 15 } 16 public static function createInstance(c:Component):ComponentUI { 17 return new WinXpFrameUI(); 18 } 19 20 } 21