📄 planeinterface.java.svn-base
字号:
package interfaces;
/**
* CSCI 201 FAA Project - Spring 2009 - Team 4c
*
* @author Josh Villbrandt
*/
public interface PlaneInterface {
// Pilot Messaging Interfaces
public PilotInterface msgPilot();
public PilotInterface msgCoPilot();
// Controller Interfaces for Pilots (private except for pilots)
public void ctrlAssumePilotRole(PilotInterface p);
public void ctrlAssumeCoPilotRole(PilotInterface cp);
public void promoteCoPilot();
public void pilotsBack();
// Radio Interface
public PilotInterface radio();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -