This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package | |
| { | |
| /** | |
| * Type-safe enumeration class. | |
| * @author Christophe Herreman, Jorge Capote, Ryan Rauschkolb | |
| * @usage Create a new class and copy the contents from this one. Rename all the "Enum" with | |
| * your own custom enum type. Enumeration values are declared in a your Enum class as follows: | |
| * public static const MY_FIRST_ENUM : MyEnumType = new MyEnumType(); | |
| */ | |
| public class MenuState |