constants.java
来自「Beginning Java 2, SDK 1.4 Edition Exerci」· Java 代码 · 共 16 行
JAVA
16 行
// Defines application wide constants
import java.awt.Color;
public interface Constants {
// Element type definitions
int ELLIPSE = 100;
int LINE = 101;
int RECTANGLE = 102;
int CIRCLE = 103;
int CURVE = 104;
// Initial conditions
int DEFAULT_ELEMENT_TYPE = LINE;
Color DEFAULT_ELEMENT_COLOR = Color.BLUE;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?