airport.java.svn-base
来自「這是一個JAVA語言寫的多代理人程式用來模擬飛機起飛或是降落的程式」· SVN-BASE 代码 · 共 50 行
SVN-BASE
50 行
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 + =
减小字号Ctrl + -
显示快捷键?