MatchEvent.as 440 B

1234567891011121314151617181920212223242526
  1. package com.adobe.protocols.dict.events
  2. {
  3. import flash.events.Event;
  4. import com.adobe.protocols.dict.Dict;
  5. public class MatchEvent
  6. extends Event
  7. {
  8. private var _matches:Array;
  9. public function MatchEvent()
  10. {
  11. super(Dict.MATCH);
  12. }
  13. public function set matches(matches:Array):void
  14. {
  15. this._matches = matches;
  16. }
  17. public function get matches():Array
  18. {
  19. return this._matches;
  20. }
  21. }
  22. }