This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class com.func09.utils.ObjectUtil { | |
/** | |
* MIX-INメソッド | |
* @param destination | |
* @param source | |
*/ | |
public static function extend( destination:Object, source:Object ){ | |
for( var prop:String in source ) | |
destination[prop] = source[prop]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 関数クラスのユーティリティメソッド | |
* @author Mitsuru Haga <[email protected]> | |
* @version 2009/03/02 23:10 | |
*/ | |
class com.func09.utils.FunctionUtil { | |
/** | |
* スコープ付き関数を取得する | |
* @param func | |
* @param target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package { | |
public class Test { | |
public function Test(){ | |
trace("test!"); | |
} | |
} | |
} | |
NewerOlder