⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 graphremovevertexlistener.java

📁 OpenJGraph是一个开源的Java库
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -