Uses of Interface
edu.umd.cs.findbugs.graph.GraphVertex

Packages that use GraphVertex
edu.umd.cs.findbugs Main package for the FindBugs application - contains the engine class (FindBugs), the object model classes for bug instances (BugInstance, BugAnnotation), and other miscellany. 
edu.umd.cs.findbugs.ba A bytecode analysis framework for BCEL, providing CFG construction, generic dataflow analysis, and a variety of specific dataflow analyses. 
edu.umd.cs.findbugs.ba.type2 A whizzy set of classes for representing Java types. 
edu.umd.cs.findbugs.graph   
edu.umd.cs.findbugs.plan   
 

Uses of GraphVertex in edu.umd.cs.findbugs
 

Classes in edu.umd.cs.findbugs that implement GraphVertex
 class CallGraphNode
           
 

Uses of GraphVertex in edu.umd.cs.findbugs.ba
 

Classes in edu.umd.cs.findbugs.ba that implement GraphVertex
 class BasicBlock
          Simple basic block abstraction for BCEL.
 

Uses of GraphVertex in edu.umd.cs.findbugs.ba.type2
 

Classes in edu.umd.cs.findbugs.ba.type2 that implement GraphVertex
 class ArrayType
           
 class ClassType
          Type of objects that are instances of a class.
 class ObjectType
          Lightweight data structure representing an object type: a node in the class hierarchy (i.e., a class or interface).
 

Uses of GraphVertex in edu.umd.cs.findbugs.graph
 

Classes in edu.umd.cs.findbugs.graph with type parameters of type GraphVertex
 class AbstractDepthFirstSearch<GraphType extends Graph<EdgeType,VertexType>,EdgeType extends GraphEdge<EdgeType,VertexType>,VertexType extends GraphVertex<VertexType>>
          Perform a depth first search on a graph.
 class DepthFirstSearch<GraphType extends Graph<EdgeType,VertexType>,EdgeType extends GraphEdge<EdgeType,VertexType>,VertexType extends GraphVertex<VertexType>>
          Perform a forward depth first search of a graph.
 interface Graph<EdgeType extends GraphEdge<EdgeType,VertexType>,VertexType extends GraphVertex<VertexType>>
          Graph interface; defines the operations used to access and manipulate a graph.
 interface GraphEdge<ActualEdgeType extends GraphEdge<ActualEdgeType,VertexType>,VertexType extends GraphVertex<VertexType>>
          GraphEdge interface; represents an edge in a graph.
 interface GraphToolkit<GraphType extends Graph<EdgeType,VertexType>,EdgeType extends GraphEdge<EdgeType,VertexType>,VertexType extends GraphVertex<VertexType>>
          An interface for creating Graph objects, and for copying auxiliary information in vertices and edges.
 class MergeVertices<GraphType extends Graph<EdgeType,VertexType>,EdgeType extends GraphEdge<EdgeType,VertexType>,VertexType extends GraphVertex<VertexType>>
          Algorithm to merge a set of vertices into a single vertex.
 class ReverseDepthFirstSearch<GraphType extends Graph<EdgeType,VertexType>,EdgeType extends GraphEdge<EdgeType,VertexType>,VertexType extends GraphVertex<VertexType>>
          Perform a reverse depth first search of a graph.
 class SearchTree<VertexType extends GraphVertex<VertexType>>
          SearchTree represents a search tree produced by a graph search algorithm, such as BreadthFirstSearch or DepthFirstSearch.
 class SearchTreeBuilder<VertexType extends GraphVertex<VertexType>>
          A search tree callback implementation that builds a list of SearchTrees recording a graph search.
 interface SearchTreeCallback<VertexType extends GraphVertex<VertexType>>
          Callback interface for building a search tree from a depth first search.
 class StronglyConnectedComponents<GraphType extends Graph<EdgeType,VertexType>,EdgeType extends GraphEdge<EdgeType,VertexType>,VertexType extends GraphVertex<VertexType>>
          Algorithm to find strongly connected components in a graph.
 class Transpose<GraphType extends Graph<EdgeType,VertexType>,EdgeType extends GraphEdge<EdgeType,VertexType>,VertexType extends GraphVertex<VertexType>>
          Algorithm to transpose a graph.
 interface VertexChooser<VertexType extends GraphVertex<VertexType>>
          VertexChooser specifies an interface for objects that determine whether or not a vertex is chosen for some purpose.
 interface VertexCombinator<VertexType extends GraphVertex<VertexType>>
          Interface for an object which combines a set of vertices into a single composite vertex; for example, after finding strongly connected components.
 class VisitationTimeComparator<VertexType extends GraphVertex>
          Comparator to compare GraphVertex objects by their visitation times in a search; for example, it could compare the finishing times produced by DepthFirstSearch.
 

Classes in edu.umd.cs.findbugs.graph that implement GraphVertex
 class AbstractVertex<EdgeType extends AbstractEdge<EdgeType,ActualVertexType>,ActualVertexType extends AbstractVertex<EdgeType,ActualVertexType>>
          GraphVertex implementation for use with AbstractGraph.
 

Uses of GraphVertex in edu.umd.cs.findbugs.plan
 

Classes in edu.umd.cs.findbugs.plan that implement GraphVertex
 class DetectorNode
          Node in a ConstraintGraph.