itemboundslistener.java
来自「用applet实现很多应用小程序」· Java 代码 · 共 25 行
JAVA
25 行
/**
* Copyright (c) 2004-2006 Regents of the University of California.
* See "license-prefuse.txt" for licensing terms.
*/
package prefuse.util.display;
import prefuse.Display;
/**
* Listener interface for monitoring changes to the space occupied by
* VisualItems within the space of a Display.
*
* @author <a href="http://jheer.org">jeffrey heer</a>
*/
public interface ItemBoundsListener {
/**
* Signals a change in the total bounds occupied by VisualItems in
* a particular Display.
* @param d the Display whose item bounds has changed
*/
public void itemBoundsChanged(Display d);
} // end of interface ItemBoundsListener
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?