home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / Beez.swf / scripts / org / puremvc / as3 / interfaces / IController.as < prev    next >
Encoding:
Text File  |  2008-09-03  |  364 b   |  16 lines

  1. package org.puremvc.as3.interfaces
  2. {
  3.    public interface IController
  4.    {
  5.        
  6.       
  7.       function registerCommand(param1:String, param2:Class) : void;
  8.       
  9.       function hasCommand(param1:String) : Boolean;
  10.       
  11.       function executeCommand(param1:INotification) : void;
  12.       
  13.       function removeCommand(param1:String) : void;
  14.    }
  15. }
  16.