package { import flash.events.Event; import flash.filters.BitmapFilterQuality; /** * @author Sergey Gonchar * @version 0.1 * */ public class ChangeEvent extends Event { public static const CHANGE:String = "change"; public var newValue:*; public var oldValue:*; public function ChangeEvent(oldValue:*, newValue:*, type:String=CHANGE, bubbles:Boolean=false, cancelable:Boolean=false) { this.oldValue = oldValue; this.newValue = newValue; super(type, bubbles, cancelable); } } }