simplepathimpl.java

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

JAVA
20
字号
package salvo.jesus.graph;import salvo.jesus.graph.listener.*;/** * Implementation of <tt>SimplePath</tt> interface guaranteeing that the * path is simple, meaning no <tt>Vertex</tt> is repeated in the path. * * @author  Jesus M. Salvo Jr. */public class SimplePathImpl extends AbstractPathImpl implements SimplePath {    /**     * Creates an instance of <tt>SimplePathImpl</tt>.     */    public SimplePathImpl() {        setListener(new SimplePathListener(this));    }}

⌨️ 快捷键说明

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