Package com.mebigfatguy.fbcontrib.detect
Class MethodInfo
- java.lang.Object
-
- com.mebigfatguy.fbcontrib.detect.MethodInfo
-
class MethodInfo extends java.lang.Object
a simple data class that holds information about a method call
-
-
Field Summary
Fields Modifier and Type Field Description (package private) int
argumentCount
(package private) java.lang.String
methodName
(package private) java.lang.String
signatureEnding
-
Constructor Summary
Constructors Constructor Description MethodInfo(java.lang.String methodName, int argumentCount, java.lang.String signatureEnding)
simple constructor for initializing the data
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
int
hashCode()
java.lang.String
toString()
-
-
-
Constructor Detail
-
MethodInfo
MethodInfo(java.lang.String methodName, int argumentCount, java.lang.String signatureEnding)
simple constructor for initializing the data- Parameters:
methodName
- the name of the methodargumentCount
- the number of parameterssignatureEnding
- the return value signature type
-
-