1 package org.wcb.model.util; 2 3 /** 4 * <small> 5 * <p/> 6 * Copyright (c) 2006 wbogaardt. 7 * Permission is granted to copy, distribute and/or modify this document 8 * under the terms of the GNU Free Documentation License, Version 1.2 9 * or any later version published by the Free Software Foundation; 10 * with no Invariant Sections, no Front-Cover Texts, and no Back-Cover 11 * Texts. A copy of the license is included in the section entitled "GNU 12 * Free Documentation License". 13 * <p/> 14 * $File: $ <br> 15 * $Change: $ submitted by $Author: wbogaardt $ at $DateTime: Sep 5, 2006 11:13:11 AM $ <br> 16 * </small> 17 * 18 * @author wbogaardt 19 * These are the values for the aircraft characteristics stored in aircraft type table. 20 */ 21 public interface AircraftCharacteristics { 22 23 Integer AIRPLANE = 0; 24 25 Integer ROTOCRAFT = 1; 26 27 Integer POWERLIFT = 2; 28 29 Integer GLIDER = 3; 30 31 Integer LIGHTER_THAN_AIR = 4; 32 33 Integer SIMULATOR = 5; 34 35 Integer TRAINING_DEVICE = 6; 36 37 Integer PCATD = 7; 38 }