package net.ximpel.events { import flash.events.Event; public class explore_ximpel_net_ximpel_events_SubjectEvent extends Event { public var subject:String; /** * Defines the value of the type property of a subjectChanged event object. * * @eventType subjectChanged */ public static const SUBJECT_CHANGED:String = "subjectChanged"; /** * Constructor. * * @param type The event type; indicates the action that caused the event. * * @param bubbles Specifies whether the event can bubble up the display list hierarchy. * * @param cancelable Specifies whether the behavior associated with * the event can be prevented. * * @param score The new subject. */ public function explore_ximpel_net_ximpel_events_SubjectEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false, subject:String = "") { super(type); this.subject = subject; } override public function clone():Event { return new explore_ximpel_net_ximpel_events_SubjectEvent(type, bubbles, cancelable, subject); } } }