⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 airport.java.svn-base

📁 這是一個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 + -