Uses of Interface
com.mxgraph.view.mxGraph.mxICellVisitor
Packages that use mxGraph.mxICellVisitor
Package
Description
This package provides various algorithms for graph analysis, such as
shortest path and minimum spanning tree.
This package implements the graph component, represented by the mxGraph
class.
-
Uses of mxGraph.mxICellVisitor in com.mxgraph.analysis
Methods in com.mxgraph.analysis with parameters of type mxGraph.mxICellVisitorModifier and TypeMethodDescriptionstatic void
mxTraversal.bfs
(mxAnalysisGraph aGraph, Object startVertex, mxGraph.mxICellVisitor visitor) Implements a recursive breadth first search starting from the specified cell.private static void
mxTraversal.bfsRec
(mxAnalysisGraph aGraph, Set<Object> queued, LinkedList<Object[]> queue, mxGraph.mxICellVisitor visitor) Core recursive BFS - for internal usestatic void
mxTraversal.dfs
(mxAnalysisGraph aGraph, Object startVertex, mxGraph.mxICellVisitor visitor) Implements a recursive depth first search starting from the specified cell.private static void
mxTraversal.dfsRec
(mxAnalysisGraph aGraph, Object cell, Object edge, Set<Object> seen, mxGraph.mxICellVisitor visitor) Core recursive DFS - for internal usestatic void
mxTraversal.dijkstra
(mxAnalysisGraph aGraph, Object startVertex, Object endVertex, mxGraph.mxICellVisitor visitor) Implements the Dijkstra's shortest path from startVertex to endVertex. -
Uses of mxGraph.mxICellVisitor in com.mxgraph.view
Methods in com.mxgraph.view with parameters of type mxGraph.mxICellVisitorModifier and TypeMethodDescriptionvoid
mxGraph.traverse
(Object vertex, boolean directed, mxGraph.mxICellVisitor visitor) Traverses the tree starting at the given vertex.void
mxGraph.traverse
(Object vertex, boolean directed, mxGraph.mxICellVisitor visitor, Object edge, Set<Object> visited) Traverses the (directed) graph invoking the given function for each visited vertex and edge.