Flash Builder Code Templates Tip

Flash - as2, as3 2016. 1. 27. 17:39

Window > Preference > Flash Builder > Editors > Code Templates > ActionScript

에 템블릿 설정으로 편하게 코드 생성 가능.


private static var instance:${enclosing_type};


public static function getInstance():${enclosing_type}

{

if(instance == null) instance = new ${enclosing_type}();

return instance;

}

: