cyclepath.java

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

JAVA
19
字号
package salvo.jesus.graph;/** * An empty interface that denotes a <tt>CyclePath</tt>. This is a <tt>SimplePath</tt> * but the first and last vertex being the same. * * @author  Jesus M. Salvo Jr. */public interface CyclePath extends SimplePath {    /**     * Method to be called indicating that the <tt>Path</tt> has been     * fully specified. Implementations of this method should therefore     * check that the <tt>Path</tt> is indeed a <tt>Cycle</tt>.     */    public void closeCycle() throws IllegalPathException;}

⌨️ 快捷键说明

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