|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Vertex in de.aitools.iv.graphdrawing |
---|
Methods in de.aitools.iv.graphdrawing that return Vertex | |
---|---|
abstract Vertex |
Visualization.getRoot()
|
Vertex |
VertexDraw.getVertex()
|
Methods in de.aitools.iv.graphdrawing with parameters of type Vertex | |
---|---|
void |
ExpandStrategy.compute(UndirectedGraph g,
Vertex root,
Visualization visualization)
|
static java.awt.Color |
VertexColor.getBgColor(Vertex v)
|
static java.awt.Color |
VertexColor.getFgColor(Vertex v)
|
static java.awt.Color |
VertexColor.getSelectionColor(Vertex v)
|
static VertexDraw |
AttachmentManager.getVertexDraw(Vertex vertex,
Visualization visualization)
returns the VertexDraw, which the vertex stored for the specified visualization |
abstract void |
Visualization.setShade(Vertex vertex,
double shade)
Sets the shade value of the specified vertex. |
void |
VertexPopupMenu.setVertex(Vertex vertex)
|
static void |
AttachmentManager.setVertexDraw(Vertex vertex,
Visualization visualization,
VertexDraw vertexDraw)
sets the attachment of the vertex for the visualization to the specified vertexDraw. |
abstract void |
Visualization.update(UndirectedGraph graph,
Vertex root)
show the specified graph, with its root vertex. |
Uses of Vertex in de.aitools.iv.graphdrawing.builtin |
---|
Methods in de.aitools.iv.graphdrawing.builtin that return Vertex | |
---|---|
Vertex |
EmptyAISearchPanel.getRoot()
Returns null. |
Methods in de.aitools.iv.graphdrawing.builtin with parameters of type Vertex | |
---|---|
void |
EmptyAISearchPanel.setShade(Vertex vertex,
double shade)
Does nothing. |
void |
EmptyAISearchPanel.update(UndirectedGraph graph,
Vertex root)
Does nothing. |
Uses of Vertex in de.aitools.iv.graphdrawing.datastructures.graph |
---|
Methods in de.aitools.iv.graphdrawing.datastructures.graph that return Vertex | |
---|---|
Vertex |
Vertex.copy()
creates a vertex with the same label, id, type and position as the current vertex. All edges, the attachment and the xmlSource are NOT copied to the new created vertex. |
Vertex |
Edge.getFromVertex()
|
Vertex |
Edge.getToVertex()
|
Vertex |
UndirectedGraph.getVertex(int id)
Returns the vertex with this id |
Vertex |
DirectedGraph.getVertex(int id)
Returns the vertex with this id |
Vertex |
Edge.incidentVertex(Vertex v)
|
Methods in de.aitools.iv.graphdrawing.datastructures.graph with parameters of type Vertex | |
---|---|
void |
UndirectedGraph.addVertex(Vertex v)
adds a Vertex to the graph. |
void |
DirectedGraph.addVertex(Vertex v)
adds a Vertex to the graph. |
UndirectedGraph |
UndirectedGraph.getSubGraph(Vertex newRoot)
creates a subGraph |
java.util.Iterator |
UndirectedGraph.incidentEdgeIterator(Vertex v)
returns all incident edges from the given vertex |
Vertex |
Edge.incidentVertex(Vertex v)
|
java.util.Iterator |
DirectedGraph.incomingEdgeIterator(Vertex v)
|
java.util.Iterator |
DirectedGraph.outgoingEdgeIterator(Vertex v)
returns all incident edges from the given vertex |
void |
UndirectedGraph.removeVertex(Vertex v)
remove the Vertex and all incident edges from the graph. |
void |
DirectedGraph.removeVertex(Vertex v)
remove the Vertex and all incident edges from the graph. |
Constructors in de.aitools.iv.graphdrawing.datastructures.graph with parameters of type Vertex | |
---|---|
Edge(Vertex from,
Vertex to)
|
|
Edge(Vertex from,
Vertex to,
double weight)
|
Uses of Vertex in de.aitools.iv.graphdrawing.datastructures.graph.algorithms |
---|
Methods in de.aitools.iv.graphdrawing.datastructures.graph.algorithms that return Vertex | |
---|---|
static Vertex |
CenterVertex.getCenterVertex(UndirectedGraph g)
|
Methods in de.aitools.iv.graphdrawing.datastructures.graph.algorithms with parameters of type Vertex | |
---|---|
void |
TreeVertexVisitor.visit(Vertex v,
Vertex parent)
|
Constructors in de.aitools.iv.graphdrawing.datastructures.graph.algorithms with parameters of type Vertex | |
---|---|
DepthFirstSearch(Graph g,
Vertex root,
TreeVertexVisitor visitor)
|
Uses of Vertex in de.aitools.iv.graphdrawing.demo |
---|
Methods in de.aitools.iv.graphdrawing.demo that return Vertex | |
---|---|
Vertex |
IKnowGraph.getRoot()
|
Uses of Vertex in de.aitools.iv.graphdrawing.distortion |
---|
Methods in de.aitools.iv.graphdrawing.distortion that return Vertex | |
---|---|
Vertex |
DistortionVisualization.getRoot()
|
Vertex |
DistortionVertexDraw.getVertex()
|
Methods in de.aitools.iv.graphdrawing.distortion with parameters of type Vertex | |
---|---|
static DistortionVertexDraw |
AttachmentWrapper.getVertexDraw(Vertex vertex,
Visualization visualization)
|
void |
DistortionVisualization.setShade(Vertex vertex,
double shade)
|
static void |
AttachmentWrapper.setVertexDraw(Vertex vertex,
Visualization visualization,
VertexDraw vertexDraw)
just calls AttachmentManager.setVertexDraw(vertex, visualization, vertexDraw); |
void |
DistortionVisualization.update(UndirectedGraph graph,
Vertex root)
updates the graph data |
Constructors in de.aitools.iv.graphdrawing.distortion with parameters of type Vertex | |
---|---|
DistortionVertexDraw(Vertex v,
java.awt.geom.Point2D pos,
java.awt.geom.Point2D center,
DistortionVisualization distortionPanel)
Creates a new instance of VertexDraw |
|
DistortionVisualization(UndirectedGraph graph,
Vertex root)
Constructs a new DistortionVisualization and calls update(graph, root); |
Uses of Vertex in de.aitools.iv.graphdrawing.distortion.layout |
---|
Methods in de.aitools.iv.graphdrawing.distortion.layout with parameters of type Vertex | |
---|---|
void |
Layout.compute(UndirectedGraph g,
Vertex root,
Visualization visualization,
java.lang.Object layoutHint)
sets the position of every visible vertex of the graph. |
void |
CircularTreeLayout.compute(UndirectedGraph graph,
Vertex root,
Visualization visualization,
java.lang.Object layoutHint)
|
void |
HorizontalTreeLayout.compute(UndirectedGraph g,
Vertex root,
Visualization visualization,
java.lang.Object layoutHint)
|
Uses of Vertex in de.aitools.iv.graphdrawing.jtree |
---|
Methods in de.aitools.iv.graphdrawing.jtree that return Vertex | |
---|---|
Vertex |
JTreeVisualization.getRoot()
|
Vertex |
JTreeVertexDraw.getVertex()
|
Methods in de.aitools.iv.graphdrawing.jtree with parameters of type Vertex | |
---|---|
void |
ExpandFirstColumns.compute(UndirectedGraph g,
Vertex root,
Visualization visualization)
|
static JTreeVertexDraw |
AttachmentWrapper.getVertexDraw(Vertex vertex,
Visualization visualization)
|
void |
JTreeVisualization.setShade(Vertex vertex,
double shade)
|
static void |
AttachmentWrapper.setVertexDraw(Vertex vertex,
Visualization visualization,
VertexDraw vertexDraw)
just calls AttachmentManager.setVertexDraw(vertex, visualization, vertexDraw); |
void |
JTreeVisualization.update(UndirectedGraph graph,
Vertex root)
|
void |
ModelConverter.visit(Vertex v,
Vertex parent)
this Method is public as an implementation side effect. |
Constructors in de.aitools.iv.graphdrawing.jtree with parameters of type Vertex | |
---|---|
JTreeVertexDraw(Vertex vertex,
JTreeVisualization jTreeView)
|
|
ModelConverter(UndirectedGraph tree,
Vertex root,
JTreeVisualization jTreeView)
converts a de.aitools.common.datastructures.graph.UndirectedGraph to javax.swing.tree.TreeModel with the specified root-vertex |
Uses of Vertex in de.aitools.iv.graphdrawing.nativeboxtree |
---|
Methods in de.aitools.iv.graphdrawing.nativeboxtree that return Vertex | |
---|---|
Vertex |
NativeBoxTreeVisualization.getRoot()
|
Vertex |
NativeBoxTreeVertexDraw.getVertex()
|
Methods in de.aitools.iv.graphdrawing.nativeboxtree with parameters of type Vertex | |
---|---|
static NativeBoxTreeVertexDraw |
AttachmentWrapper.getVertexDraw(Vertex vertex,
Visualization visualization)
|
void |
NativeBoxTreeVisualization.setShade(Vertex vertex,
double shade)
|
static void |
AttachmentWrapper.setVertexDraw(Vertex vertex,
Visualization visualization,
VertexDraw vertexDraw)
just calls AttachmentManager.setVertexDraw(vertex, visualization, vertexDraw); |
void |
NativeBoxTreeVisualization.update(UndirectedGraph graph,
Vertex root)
|
Constructors in de.aitools.iv.graphdrawing.nativeboxtree with parameters of type Vertex | |
---|---|
NativeBoxTreeVertexDraw(NativeBoxTreeVisualization view,
Vertex vertex)
|
|
NativeBoxTreeVisualization(UndirectedGraph graph,
Vertex root)
Invokes the default constructor and performs update(graph, root) |
|
ReingoldTilfordExtendedLayout(UndirectedGraph graph,
Vertex root,
NativeBoxTreeVisualization visualization)
|
|
WalkerExtendedLayout(UndirectedGraph graph,
Vertex root,
NativeBoxTreeVisualization visualization)
|
Uses of Vertex in de.aitools.iv.graphdrawing.nativetree |
---|
Methods in de.aitools.iv.graphdrawing.nativetree that return Vertex | |
---|---|
Vertex |
NativeTreeVisualization.getRoot()
|
Vertex |
NativeTreeVertexDraw.getVertex()
|
Methods in de.aitools.iv.graphdrawing.nativetree with parameters of type Vertex | |
---|---|
static NativeTreeVertexDraw |
AttachmentWrapper.getVertexDraw(Vertex vertex,
Visualization visualization)
|
void |
NativeTreeVisualization.setShade(Vertex vertex,
double shade)
|
static void |
AttachmentWrapper.setVertexDraw(Vertex vertex,
Visualization visualization,
VertexDraw vertexDraw)
just calls AttachmentManager.setVertexDraw(vertex, visualization, vertexDraw); |
void |
NativeTreeVisualization.update(UndirectedGraph graph,
Vertex root)
|
Constructors in de.aitools.iv.graphdrawing.nativetree with parameters of type Vertex | |
---|---|
NativeTreeVertexDraw(NativeTreeVisualization view,
Vertex vertex)
|
|
NativeTreeVisualization(UndirectedGraph graph,
Vertex root)
Invokes the default constructor and performs update(graph, root) |
|
ReingoldTilfordExtendedLayout(UndirectedGraph graph,
Vertex root,
NativeTreeVisualization visualization)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |