Class StaticLayoutAlgorithm<V>
- java.lang.Object
-
- org.jungrapht.visualization.layout.algorithms.StaticLayoutAlgorithm<V>
-
- All Implemented Interfaces:
LayoutAlgorithm<V>
,AfterRunnable
public class StaticLayoutAlgorithm<V> extends Object implements LayoutAlgorithm<V>
StaticLayout leaves the vertices in the locations specified in the LayoutModel, and has no other behavior.- Author:
- Tom Nelson
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jungrapht.visualization.layout.algorithms.LayoutAlgorithm
LayoutAlgorithm.Builder<V,T extends LayoutAlgorithm<V>,B extends LayoutAlgorithm.Builder<V,T,B>>, LayoutAlgorithm.NoOp<V>
-
-
Constructor Summary
Constructors Constructor Description StaticLayoutAlgorithm()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
constrained()
void
visit(LayoutModel<V> layoutModel)
a no-op, as the Vertex locations are unchanged from where they are in the layoutModel-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.jungrapht.visualization.layout.algorithms.util.AfterRunnable
runAfter, setAfter
-
Methods inherited from interface org.jungrapht.visualization.layout.algorithms.LayoutAlgorithm
cancel
-
-
-
-
Method Detail
-
visit
public void visit(LayoutModel<V> layoutModel)
a no-op, as the Vertex locations are unchanged from where they are in the layoutModel- Specified by:
visit
in interfaceLayoutAlgorithm<V>
- Parameters:
layoutModel
- the mediator between the container for vertices (the Graph) and the mapping from Vertex to Point
-
constrained
public boolean constrained()
- Specified by:
constrained
in interfaceLayoutAlgorithm<V>
-
-