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