📄 graphlayoutlistener.java
字号:
package salvo.jesus.graph.visual.layout;
import java.util.*;
/**
* The listener interface for receiving notification of graph layout events.
* These events are usually those of a vertex being laid out on a graph,
* either intermediately or for its final position.
*
* @author Jesus M. Salvo Jr.
*/
public interface GraphLayoutListener extends EventListener {
/**
* This method is automatically called whenever a vertex has been laid out
* on a graph, either its intermediate or final position.
*
* @param e A GraphLayoutEvent object that indicates what VisualVertex was laid out.
*/
public void layoutVisualVertex( GraphLayoutEvent e );
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -