📄 airport.java.svn-base
字号:
package world;import interfaces.*;import java.util.*;import base.WorldObjectState;import base.WorldObject;/** * CSCI 201 FAA Project - Spring 2009 - Team 4c * * @author Josh Villbrandt */public class Airport extends WorldObject { public List<Runway> runways; public List<Taxiway> taxiways; public List<Gate> gates; public List<Tower> towers; public Airport() { super(); } public Airport(String name) { super(name); } public Airport(String name, WorldObjectState objectState) { super(name, objectState); } public Airport(String name, WorldObjectState objectState, GuiObjectInterface guiObject) { super(name, objectState, guiObject); } public Airport(String name, WorldObjectState objectState, GuiObjectInterface guiObject, List<Runway> runs, List<Taxiway> taxs, List<Gate> gats, List<Tower> tows) { super(name, objectState, guiObject); runways = runs; taxiways = taxs; gates = gats; towers = tows; } public Airport(String name, List<Runway> runs, List<Taxiway> taxs, List<Gate> gats, List<Tower> tows) { super(name); runways = runs; taxiways = taxs; gates = gats; towers = tows; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -