Uses of Class
org.insa.graphs.model.Arc
-
-
Uses of Arc in org.insa.graphes.model
Fields in org.insa.graphes.model declared as Arc Modifier and Type Field Description private static Arc
PathTest. a2b
private static Arc
PathTest. a2c
private static Arc
PathTest. a2e
private static Arc
PathTest. b2c
private static Arc
PathTest. c2a
private static Arc
PathTest. c2d_1
private static Arc
PathTest. c2d_2
private static Arc
PathTest. c2d_3
private static Arc
PathTest. d2a
private static Arc
PathTest. d2e
private static Arc
PathTest. e2d
Methods in org.insa.graphes.model that return Arc Modifier and Type Method Description private Arc
NodeTest. getFirstArcBetween(Node a, Node b)
Methods in org.insa.graphes.model that return types with arguments of type Arc Modifier and Type Method Description private java.util.List<Arc>
GraphTest. getArcsBetween(Node a, Node b)
-
Uses of Arc in org.insa.graphs.algorithm
Methods in org.insa.graphs.algorithm with parameters of type Arc Modifier and Type Method Description double
AbstractInputData. getCost(Arc arc)
Retrieve the cost associated with the given arc according to the underlying arc inspector.double
ArcInspector. getCost(Arc arc)
Find the cost of the given arc.boolean
AbstractInputData. isAllowed(Arc arc)
Check if the given arc is allowed for the filter corresponding to this input.boolean
ArcInspector. isAllowed(Arc arc)
Check if the given arc can be used (is allowed). -
Uses of Arc in org.insa.graphs.algorithm.shortestpath
Fields in org.insa.graphs.algorithm.shortestpath declared as Arc Modifier and Type Field Description private Arc
Label. pere
Methods in org.insa.graphs.algorithm.shortestpath that return Arc Modifier and Type Method Description Arc
Label. getPere()
Methods in org.insa.graphs.algorithm.shortestpath with parameters of type Arc Modifier and Type Method Description void
Label. actualiser(double cout, Arc pere)
-
Uses of Arc in org.insa.graphs.gui
Methods in org.insa.graphs.gui with parameters of type Arc Modifier and Type Method Description void
GraphReaderProgressBar. notifyNewArcRead(Arc arc)
-
Uses of Arc in org.insa.graphs.gui.drawing
Methods in org.insa.graphs.gui.drawing with parameters of type Arc Modifier and Type Method Description java.awt.Color
BasicGraphPalette. getColorForArc(Arc arc)
java.awt.Color
BlackAndWhiteGraphPalette. getColorForArc(Arc arc)
java.awt.Color
GraphPalette. getColorForArc(Arc arc)
int
BasicGraphPalette. getWidthForArc(Arc arc)
int
GraphPalette. getWidthForArc(Arc arc)
-
Uses of Arc in org.insa.graphs.gui.drawing.components
Methods in org.insa.graphs.gui.drawing.components with parameters of type Arc Modifier and Type Method Description protected void
BasicDrawing. drawArc(Arc arc, GraphPalette palette, boolean repaint)
Draw the given arc. -
Uses of Arc in org.insa.graphs.model
Subclasses of Arc in org.insa.graphs.model Modifier and Type Class Description (package private) class
ArcBackward
Implementation of Arc that represents a "backward" arc in a graph, i.e., an arc that is the reverse of another one.(package private) class
ArcForward
Implementation of Arc that represents a "forward" arc in a graph, this is the arc implementation that stores data relative to the arc.Fields in org.insa.graphs.model declared as Arc Modifier and Type Field Description private Arc
ArcBackward. originalArc
Fields in org.insa.graphs.model with type parameters of type Arc Modifier and Type Field Description private java.util.List<Arc>
Path. arcs
private java.util.ArrayList<Arc>
Node. successors
Methods in org.insa.graphs.model that return Arc Modifier and Type Method Description static Arc
Node. linkNodes(Node origin, Node destination, float length, RoadInformation roadInformation, java.util.ArrayList<Point> points)
Link the two given nodes with one or two arcs (depending on roadInformation), with the given attributes.Methods in org.insa.graphs.model that return types with arguments of type Arc Modifier and Type Method Description java.util.List<Arc>
Path. getArcs()
java.util.List<Arc>
Node. getSuccessors()
Methods in org.insa.graphs.model with parameters of type Arc Modifier and Type Method Description protected void
Node. addSuccessor(Arc arc)
Add a successor to this node.Constructors in org.insa.graphs.model with parameters of type Arc Constructor Description ArcBackward(Arc originalArc)
Create a new backward arc which corresponds to the reverse arc of the given arc.Constructor parameters in org.insa.graphs.model with type arguments of type Arc Constructor Description Path(Graph graph, java.util.List<Arc> arcs)
Create a new path with the given list of arcs. -
Uses of Arc in org.insa.graphs.model.io
Methods in org.insa.graphs.model.io with parameters of type Arc Modifier and Type Method Description void
GraphReaderObserver. notifyNewArcRead(Arc arc)
Notify that a new arc has been read.
-