home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / Beez.swf / scripts / org / puremvc / as3 / patterns / command / SimpleCommand.as
Encoding:
Text File  |  2008-09-03  |  534 b   |  22 lines

  1. package org.puremvc.as3.patterns.command
  2. {
  3.    import org.puremvc.as3.interfaces.ICommand;
  4.    import org.puremvc.as3.interfaces.INotification;
  5.    import org.puremvc.as3.interfaces.INotifier;
  6.    import org.puremvc.as3.patterns.observer.Notifier;
  7.    
  8.    public class SimpleCommand extends Notifier implements ICommand, INotifier
  9.    {
  10.        
  11.       
  12.       public function SimpleCommand()
  13.       {
  14.          super();
  15.       }
  16.       
  17.       public function execute(notification:INotification) : void
  18.       {
  19.       }
  20.    }
  21. }
  22.