tools.java

来自「A part public bus simulation system, mai」· Java 代码 · 共 31 行

JAVA
31
字号
package tools;
import java.awt.Point;// This is the main Tool class where the different tools//are used to manipulate the different objects onto the canvaspublic class Tools {			Point a = new Point();		private int ID;      	      	      	public Tools() {        }                public Tools(Point x){      		a = x;        }                     public void setID(int ID){       		this.ID = ID;        }                public int getID(){        	return ID;        }	}

⌨️ 快捷键说明

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