home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Esportes / CrossingCup.swf / scripts / __Packages / com / bourre / events / DynBasicEvent.as < prev    next >
Text File  |  2007-12-11  |  594b  |  28 lines

  1. class com.bourre.events.DynBasicEvent extends com.bourre.events.BasicEvent
  2. {
  3.    function DynBasicEvent(s, oT)
  4.    {
  5.       super(new com.bourre.events.EventType(s),oT);
  6.    }
  7.    function get type()
  8.    {
  9.       return this._e.toString();
  10.    }
  11.    function set type(s)
  12.    {
  13.       this._e = new com.bourre.events.EventType(s);
  14.    }
  15.    function get target()
  16.    {
  17.       return this._oT;
  18.    }
  19.    function set target(oT)
  20.    {
  21.       this._oT = oT;
  22.    }
  23.    function toString()
  24.    {
  25.       return com.bourre.log.PixlibStringifier.stringify(this) + " : " + this.__get__type();
  26.    }
  27. }
  28.