Package edu.umd.cs.findbugs.plan
Class DetectorNode
- java.lang.Object
-
- edu.umd.cs.findbugs.graph.AbstractVertex<ConstraintEdge,DetectorNode>
-
- edu.umd.cs.findbugs.plan.DetectorNode
-
- All Implemented Interfaces:
GraphVertex<DetectorNode>
,java.lang.Comparable<DetectorNode>
public class DetectorNode extends AbstractVertex<ConstraintEdge,DetectorNode>
Node in a ConstraintGraph. It represents a single Detector which must be ordered before or after some other Detector(s).- Author:
- David Hovemeyer
- See Also:
ConstraintGraph
,ConstraintEdge
,ExecutionPlan
-
-
Constructor Summary
Constructors Constructor Description DetectorNode(DetectorFactory factory)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DetectorFactory
getFactory()
Get the DetectorFactory.java.lang.String
toString()
Get the Plugin Name for this DetectorFactory for debugging support
-
-
-
Constructor Detail
-
DetectorNode
public DetectorNode(DetectorFactory factory)
Constructor.- Parameters:
factory
- the DetectorFactory for the Detector this node represents
-
-
Method Detail
-
getFactory
public DetectorFactory getFactory()
Get the DetectorFactory.
-
toString
public java.lang.String toString()
Get the Plugin Name for this DetectorFactory for debugging support- Overrides:
toString
in classjava.lang.Object
-
-