graphremovevertexlistener.java
来自「OpenJGraph是一个开源的Java库」· Java 代码 · 共 32 行
JAVA
32 行
package salvo.jesus.graph;import java.util.*;import java.io.*;/** * The listener interface for receiving notification when a Vertex is * is about to be removed from a Graph. * * Implementations of this interface should be registered with a Graph, * via the Graph's addGraphRemoveVertexListener(), to be notified * when a Vertex object is about to be removed from the Graph. * * @author Jesus M. Salvo Jr. * * @deprecated Use GraphListener instead * @see GraphListener */public interface GraphRemoveVertexListener extends EventListener, Serializable { /** * Once implementations of this interface are registered with a Graph, * this method is automatically called whenever a Vertex is about to be * removed from the Graph object encapsulated by the VisualGraph object. * * @param e GraphRemoveVertexEvent object that also specifies the Vertex * that is about to be removed from the graph */ public void vertexRemoved( GraphRemoveVertexEvent e );}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?