///////////////////////////////////////////////////////////////////////////////// // Copyright (C) 2010 Wolfgang Kowarschick // // Permission is granted to copy, distribute and/or modify this document // under the terms of the WK License, Version 1.0 (WKL 1.0) or any later // version published by Wolfgang Kowarschick. ///////////////////////////////////////////////////////////////////////////////// package flash.events { /** * @autor Wolfgang Kowarschick * @category class * @langversion 3.0 */ public class Event extends Event { ///////////////////////////////////////////////////////////////////////////// // Constructor ///////////////////////////////////////////////////////////////////////////// public function Event(type: String, bubbles: Boolean = false, cancelable: Boolean = false) { super(type, bubbles, cancelable); } public override function clone(): Event { return new Event(type, bubbles, cancelable); } public override function toString(): String { return formatToString("Event", "type", "bubbles", "cancelable", "eventPhase"); } ///////////////////////////////////////////////////////////////////////////// // End of class ///////////////////////////////////////////////////////////////////////////// } } ///////////////////////////////////////////////////////////////////////////////// // End of File /////////////////////////////////////////////////////////////////////////////////