Uses of Class
edu.umd.cs.findbugs.graph.AbstractVertex

Packages that use AbstractVertex
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 AbstractVertex in edu.umd.cs.findbugs
 

Subclasses of AbstractVertex in edu.umd.cs.findbugs
 class CallGraphNode
           
 

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

Subclasses of AbstractVertex in edu.umd.cs.findbugs.ba
 class BasicBlock
          Simple basic block abstraction for BCEL.
 

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

Subclasses of AbstractVertex in edu.umd.cs.findbugs.ba.type2
 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 AbstractVertex in edu.umd.cs.findbugs.graph
 

Classes in edu.umd.cs.findbugs.graph with type parameters of type AbstractVertex
 class AbstractEdge<ActualEdgeType extends AbstractEdge<ActualEdgeType,VertexType>,VertexType extends AbstractVertex<ActualEdgeType,VertexType>>
          GraphEdge implementation for use with AbstractGraph.
 class AbstractGraph<EdgeType extends AbstractEdge<EdgeType,VertexType>,VertexType extends AbstractVertex<EdgeType,VertexType>>
          A simple Graph implementation where the vertex objects store a list of incoming and outgoing edges.
 class AbstractVertex<EdgeType extends AbstractEdge<EdgeType,ActualVertexType>,ActualVertexType extends AbstractVertex<EdgeType,ActualVertexType>>
          GraphVertex implementation for use with AbstractGraph.
 

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

Subclasses of AbstractVertex in edu.umd.cs.findbugs.plan
 class DetectorNode
          Node in a ConstraintGraph.