Class InjectionPoint
- java.lang.Object
-
- com.h3xstream.findsecbugs.injection.InjectionPoint
-
public class InjectionPoint extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static InjectionPointNONEThis instance is use to represent "null" as no injection point.
-
Constructor Summary
Constructors Constructor Description InjectionPoint(int[] injectableArguments, String bugType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetBugType()int[]getInjectableArguments()
-
-
-
Field Detail
-
NONE
public static final InjectionPoint NONE
This instance is use to represent "null" as no injection point. It is a cleaner option than returning NULL by contract. (see Null Object pattern)
-
-
Constructor Detail
-
InjectionPoint
public InjectionPoint(int[] injectableArguments, String bugType)
-
-
Method Detail
-
getInjectableArguments
public int[] getInjectableArguments()
-
getBugType
public String getBugType()
-
-