Uses of Class
org.insa.graphs.model.Path
-
-
Uses of Path in org.insa.graphes.model
Fields in org.insa.graphes.model declared as Path Modifier and Type Field Description private static Path
PathTest. emptyPath
private static Path
PathTest. invalidPath
private static Path
PathTest. longLoopPath
private static Path
PathTest. longPath
private static Path
PathTest. loopPath
private static Path
PathTest. shortPath
private static Path
PathTest. singleNodePath
-
Uses of Path in org.insa.graphs.algorithm.shortestpath
Fields in org.insa.graphs.algorithm.shortestpath declared as Path Modifier and Type Field Description private Path
ShortestPathSolution. path
Methods in org.insa.graphs.algorithm.shortestpath that return Path Modifier and Type Method Description Path
ShortestPathSolution. getPath()
Constructors in org.insa.graphs.algorithm.shortestpath with parameters of type Path Constructor Description ShortestPathSolution(ShortestPathData data, AbstractSolution.Status status, Path path)
Create a new shortest-path solution. -
Uses of Path in org.insa.graphs.gui
Fields in org.insa.graphs.gui declared as Path Modifier and Type Field Description private Path
PathsPanel.PathPanel. path
Methods in org.insa.graphs.gui with parameters of type Path Modifier and Type Method Description void
PathsPanel. addPath(Path path)
Constructors in org.insa.graphs.gui with parameters of type Path Constructor Description PathPanel(Path path, java.awt.Color color)
Create a new bundle with the given path and create a new overlay corresponding to the path. -
Uses of Path in org.insa.graphs.gui.drawing
Methods in org.insa.graphs.gui.drawing with parameters of type Path Modifier and Type Method Description PathOverlay
Drawing. drawPath(Path path)
Draw a path with both origin and destination markers using a default color specific to the implementationPathOverlay
Drawing. drawPath(Path path, boolean markers)
Draw a path using a default color specific to the implementationPathOverlay
Drawing. drawPath(Path path, java.awt.Color color)
Draw a path with both origin and destination markers using the given color.PathOverlay
Drawing. drawPath(Path path, java.awt.Color color, boolean markers)
Draw a path using the given color. -
Uses of Path in org.insa.graphs.gui.drawing.components
Methods in org.insa.graphs.gui.drawing.components with parameters of type Path Modifier and Type Method Description PathOverlay
BasicDrawing. drawPath(Path path)
PathOverlay
BasicDrawing. drawPath(Path path, boolean markers)
PathOverlay
BasicDrawing. drawPath(Path path, java.awt.Color color)
PathOverlay
BasicDrawing. drawPath(Path path, java.awt.Color color, boolean markers)
PathOverlay
MapViewDrawing. drawPath(Path path)
PathOverlay
MapViewDrawing. drawPath(Path path, boolean markers)
PathOverlay
MapViewDrawing. drawPath(Path path, java.awt.Color color)
PathOverlay
MapViewDrawing. drawPath(Path path, java.awt.Color color, boolean markers)
-
Uses of Path in org.insa.graphs.model
Methods in org.insa.graphs.model that return Path Modifier and Type Method Description static Path
Path. concatenate(Path... paths)
Concatenate the given paths.static Path
Path. createFastestPathFromNodes(Graph graph, java.util.List<Node> nodes)
Create a new path that goes through the given list of nodes (in order), choosing the fastest route if multiple are available.static Path
Path. createShortestPathFromNodes(Graph graph, java.util.List<Node> nodes)
Create a new path that goes through the given list of nodes (in order), choosing the shortest route if multiple are available.Methods in org.insa.graphs.model with parameters of type Path Modifier and Type Method Description static Path
Path. concatenate(Path... paths)
Concatenate the given paths. -
Uses of Path in org.insa.graphs.model.io
Methods in org.insa.graphs.model.io that return Path Modifier and Type Method Description Path
BinaryPathReader. readPath(Graph graph)
Path
PathReader. readPath(Graph graph)
Read a path of the given graph and returns it.Methods in org.insa.graphs.model.io with parameters of type Path Modifier and Type Method Description void
BinaryPathWriter. writePath(Path path)
void
PathWriter. writePath(Path path)
Write the given path.
-