All Downloads are FREE. Search and download functionalities are using the official Maven repository.

salvo.jesus.graph.SimplePathImpl Maven / Gradle / Ivy

Go to download

This is a modified version of the OpenJGraph library (https://sourceforge.net/projects/openjgraph/), used in the JInsect library.

The newest version!
package salvo.jesus.graph;
import salvo.jesus.graph.listener.*;

/**
 * Implementation of SimplePath interface guaranteeing that the
 * path is simple, meaning no Vertex is repeated in the path.
 *
 * @author  Jesus M. Salvo Jr.
 */

public class SimplePathImpl extends AbstractPathImpl implements SimplePath {
    /**
     * Creates an instance of SimplePathImpl.
     */
    public SimplePathImpl() {
        setListener(new SimplePathListener(this));
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy