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

📄 gate.java.svn-base

📁 這是一個JAVA語言寫的多代理人程式用來模擬飛機起飛或是降落的程式
💻 SVN-BASE
字号:
package world;import interfaces.GuiObjectInterface;import base.World;import base.WorldObjectState;import base.WorldObject;public class Gate extends WorldObject {	private Taxiway taxiway;			/*	public Gate() {			}*/		public Gate(Taxiway taxiway) {		super();		this.taxiway = taxiway;	}		public Gate(String name, Taxiway taxiway) {		super(name);		this.taxiway = taxiway;	}		/*	public Gate(String name) {		super(name);	}	*/	public Gate(String name, Taxiway taxiway, WorldObjectState objectState) {		super(name, objectState);		this.taxiway = taxiway;	}		public Gate(String name, Taxiway taxiway, WorldObjectState objectState, GuiObjectInterface guiObject) {		super(name, objectState, guiObject);		this.taxiway = taxiway;	}			public Gate(String name, WorldObjectState objectState, GuiObjectInterface guiObject) {		super(name, objectState, guiObject);	}		public Taxiway getTaxiway() { return taxiway; }		public void setTaxiway(Taxiway new_taxiway) { taxiway = new_taxiway; }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -