///////////////////////////////////////////////////////////////////////////////// // Copyright (C) 2010 Wolfgang Kowarschick // // Dieses Werk darf unter den Bedingungen der Creative Common Lizenz by-nc 3.0 de // (http://creativecommons.org/licenses/by-nc/3.0/de/) // vervielfaeltigt, verbreitet, publiziert und modifiziert werden. ///////////////////////////////////////////////////////////////////////////////// package ldvcs.enum { /** * @autor Wolfgang Kowarschick * @category class * @langversion 3.0 */ public class EnumCar { ///////////////////////////////////////////////////////////////////////////// // Constants ///////////////////////////////////////////////////////////////////////////// public static const START_ENGINE: String = "startEngine"; public static const STOP_ENGINE: String = "stopEngine"; public static const DRIVE: String = "drive"; public static const DRIVE_UNTIL_FUEL_CONSUMED: String = "driveUntilFuelConsumed"; public static const REFUEL: String = "refuel"; ///////////////////////////////////////////////////////////////////////////// // End of class ///////////////////////////////////////////////////////////////////////////// } } ///////////////////////////////////////////////////////////////////////////////// // End of file /////////////////////////////////////////////////////////////////////////////////