Package org.eclipse.jetty.annotations
Class AnnotationParser.MethodInfo
- java.lang.Object
-
- org.eclipse.jetty.annotations.AnnotationParser.MethodInfo
-
- Enclosing class:
- AnnotationParser
public class AnnotationParser.MethodInfo extends Object
Immutable information gathered by parsing a method on a class.
-
-
Constructor Summary
Constructors Constructor Description MethodInfo(AnnotationParser.ClassInfo classInfo, String methodName, int access, String desc, String signature, String[] exceptions)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetAccess()AnnotationParser.ClassInfogetClassInfo()StringgetDesc()String[]getExceptions()StringgetMethodName()StringgetSignature()
-
-
-
Constructor Detail
-
MethodInfo
public MethodInfo(AnnotationParser.ClassInfo classInfo, String methodName, int access, String desc, String signature, String[] exceptions)
-
-
Method Detail
-
getClassInfo
public AnnotationParser.ClassInfo getClassInfo()
-
getMethodName
public String getMethodName()
-
getAccess
public int getAccess()
-
getDesc
public String getDesc()
-
getSignature
public String getSignature()
-
getExceptions
public String[] getExceptions()
-
-