public interface IClassItem
| Modifier and Type | Method and Description |
|---|---|
int |
getAccessFlags()
Get access flags.
|
int |
getArgumentCount()
Get number of arguments for method.
|
String |
getArgumentType(int index)
Get argument type as fully qualified class name.
|
String |
getExceptionJavaDoc(int index)
Get method throws JavaDoc description, if available.
|
String[] |
getExceptions()
Get names of exceptions thrown by method.
|
String |
getGenericsSignature()
Get the generics signature information for item.
|
String |
getJavaDoc()
Get item JavaDoc description, if available.
|
String |
getName()
Get item name.
|
IClass |
getOwningClass()
Get owning class information.
|
String |
getParameterJavaDoc(int index)
Get method parameter JavaDoc description, if available.
|
String |
getParameterName(int index)
Get method parameter name, if available.
|
String |
getReturnJavaDoc()
Get return JavaDoc description for method, if available.
|
String |
getSignature()
Get field or method signature.
|
String |
getTypeName()
Get item type as fully qualified class name.
|
boolean |
isInitializer()
Check if item is an initializer.
|
boolean |
isMethod()
Check if item is a method.
|
IClass getOwningClass()
String getName()
String getJavaDoc()
null if not available)String getTypeName()
String getReturnJavaDoc()
null if not available)int getArgumentCount()
-1 if not a methodString getArgumentType(int index)
index - argument numberString getParameterName(int index)
index - parameter numbernull if not available)String getParameterJavaDoc(int index)
index - parameter numbernull if not available)int getAccessFlags()
String getSignature()
boolean isMethod()
true if a method, false if a fieldboolean isInitializer()
true if an initializer, false if a
field or normal methodString[] getExceptions()
null if
a fieldString getExceptionJavaDoc(int index)
index - exception index (into array returned by
getExceptions()null if not available)String getGenericsSignature()
null if none)Copyright © 2005–2016 jibx.org. All rights reserved.