Class MethodDef
- java.lang.Object
-
- com.thoughtworks.qdox.parser.structs.LocatedDef
-
- com.thoughtworks.qdox.parser.structs.MethodDef
-
public class MethodDef extends LocatedDef
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
body
boolean
constructor
int
dimensions
java.util.Set
exceptions
java.util.Set
modifiers
java.lang.String
name
java.util.List
params
TypeDef
returnType
java.util.List
typeParams
-
Fields inherited from class com.thoughtworks.qdox.parser.structs.LocatedDef
lineNumber
-
-
Constructor Summary
Constructors Constructor Description MethodDef()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
int
hashCode()
java.lang.String
toString()
-
-
-
Field Detail
-
name
public java.lang.String name
-
typeParams
public java.util.List typeParams
-
returnType
public TypeDef returnType
-
modifiers
public java.util.Set modifiers
-
params
public java.util.List params
-
exceptions
public java.util.Set exceptions
-
constructor
public boolean constructor
-
dimensions
public int dimensions
-
body
public java.lang.String body
-
-