graphaddedgelistener.java

来自「OpenJGraph是一个开源的Java库」· Java 代码 · 共 33 行

JAVA
33
字号
package salvo.jesus.graph;import java.util.*;import java.io.*;/** * The listener interface for receiving notification when an Edge is * is added to a Graph. * * Implementations of this interface should be registered with a Graph, * via the Graph's addGraphAddEdgeListener(), to be notified * when an Edge is added to the Graph. * * @author		Jesus M. Salvo Jr. * * @deprecated Use GraphListener instead * @see GraphListener */public interface GraphAddEdgeListener extends EventListener, Serializable {  /**    * Once implementations of this interface are registered with a Graph,    * this method is automatically called whenever an Edge is added to the    * Graph object.    *    * @param	e		GraphAddEdgeEvent object that also specifies the Edge that was added    * to the graph    */  public void edgeAdded( GraphAddEdgeEvent e );}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?