?? controlsystemnetnode.java
字號:
/* * ControlSystemNetNode.java */package EDU.cmu.cs.coral.abstractrobot;import EDU.gatech.cc.is.abstractrobot.*;/** * This is the superclass for a NetNode robot Control System. * When you create a contol system by extending this class. * <P> * <A HREF="../COPYRIGHT.html">Copyright</A> * (c)1999, 2000 CMU * * @see Simple * @author Rosemary Emery * @version $Revision: 1.1 $ */public class ControlSystemNetNode extends ControlSystemS { protected NetNode abstract_robot; /** * Initialize the object. Don't override this method, use * Configure instead. */ public final void init(Simple ar, long s) { super.init(ar, s); abstract_robot = ((NetNode) ar); } }
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -