📄 drawable.java
字号:
package jwo.jpss.ants; // Part of the ant simulation package.
import java.awt.Graphics; // For graphics contexts.
// *******************************************************
/** Interface for things that can be drawn.
* @author Jo Wood
* @version 1.2, 20th January, 2000.
*/
// *******************************************************
public interface Drawable
{
/** Displays the object in the given graphics context.
* @param g Graphics context in which to draw
*/
public abstract void paint(Graphics g);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -