1  /*
     2   Copyright aswing.org, see the LICENCE.txt.
     3  */
     4   
     5  import org.aswing.plaf.basic.BasicTextFieldUI;
     6  
     7  /**
     8   * @author Tomato
     9   */
    10  class org.aswing.plaf.asw.ASWingTextFieldUI extends BasicTextFieldUI {
    11  	
    12  	private var aswTextUI:ASWingTextFieldUI;
    13  	
    14  	public function createInstance():ASWingTextFieldUI{
    15  		if(aswTextUI == null){
    16  			aswTextUI = new ASWingTextFieldUI();
    17  		}
    18  		return aswTextUI;
    19  	}
    20  	
    21  	public function ASWingTextFieldUI() {
    22  		super();
    23  	}
    24  
    25  }
    26