📄 locator.java
字号:
/*File: Locator.javaAuthor: zerksis d. umrigar (zdu@acm.org)Copyright (C) 1997 Zerksis D. UmrigarLast Update Time-stamp: "97/07/26 21:23:50 zdu"This code is distributed under the terms of the GNU General Public License.See the file COPYING with this distribution, or http://www.fsf.org/copyleft/gpl.htmlTHERE IS ABSOLUTELY NO WARRANTY FOR THIS PROGRAM.*/package zdu.zydebug;import zdu.zydebug.XEnumeration;import zdu.zydebug.BoundedObj;import java.awt.Rectangle;/** Interface meant to locate objects which contain a given point. */interface Locator { void locatorRegister(Rectangle bounds, Object obj); XEnumeration locatorXEnumeration(int x, int y); BoundedObj locate(int x, int y); void locatorReset();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -