Class TaintLocation
- java.lang.Object
-
- com.h3xstream.findsecbugs.taintanalysis.data.TaintLocation
-
public class TaintLocation extends Object
Global comparable specification of a taint source (or path node) location- Author:
- David Formanek (Y Soft Corporation, a.s.)
-
-
Constructor Summary
Constructors Constructor Description TaintLocation(edu.umd.cs.findbugs.classfile.MethodDescriptor methodDescriptor, int position)Constructs a location from the specified method and position inside
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)edu.umd.cs.findbugs.classfile.MethodDescriptorgetMethodDescriptor()Returns the method of this locationintgetPosition()Returns the position in the method of this locationinthashCode()StringtoString()
-
-
-
Constructor Detail
-
TaintLocation
public TaintLocation(edu.umd.cs.findbugs.classfile.MethodDescriptor methodDescriptor, int position)Constructs a location from the specified method and position inside- Parameters:
methodDescriptor- method of the locationposition- position in the method- Throws:
NullPointerException- if method is nullIllegalArgumentException- if position is negative
-
-