チェンジセット 200
- コミット日時:
- 2008/01/17 03:13:08 (4 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
as3/Commands/src/AsyncCommand.as
r95 r200 12 12 public class AsyncCommand extends Command 13 13 { 14 protected var _eventDispatcher : EventDispatcher 15 protected var _eventType : String 14 protected var _eventDispatcher : EventDispatcher; 15 protected var _eventType : String; 16 16 17 17 /** … … 37 37 protected function executeCompleteHandler( e:Event ):void 38 38 { 39 _eventDispatcher.removeEventListener(_eventType, executeCompleteHandler);39 //_eventDispatcher.removeEventListener(_eventType, onExecute); 40 40 this.dispatchComplete(); 41 41 } as3/Commands/src/CommandBase.as
r75 r200 7 7 * 全てのコマンドのベースクラス 8 8 */ 9 public class CommandBase extends EventDispatcher implements ICommand9 public class CommandBase extends EventDispatcher 10 10 { 11 11 //ここをオーバーライドして処理を実装する。 as3/Commands/src/SerialCommand.as
r47 r200 22 22 protected var _commands:Array 23 23 24 public function SerialCommand( commandArray:Array ) :void24 public function SerialCommand( commandArray:Array ) 25 25 { 26 26 super(); … … 28 28 _index = 0; 29 29 _commands = commandArray.concat(); 30 } 31 32 public function push(com:CommandBase):void 33 { 34 _commands.push(com); 30 35 } 31 36

