xjavadoc
public interface XExecutableMember extends XMember
UNKNOWN: 9. mars 2003
Method Summary | |
---|---|
String | getNameWithSignature(boolean withParam)
Gets the name and signature
|
List | getParameters()
Returns the parameters.
|
String | getParameterTypes()
Returns the parameters as a comma separated list of classes. |
String | getSignature(boolean withParam)
Returns the signature. |
List | getThrownExceptions()
Returns the thrown exception classes.
|
boolean | isConstructor()
Return true if this is a constructor.
|
boolean | isNative() |
boolean | isSynchronized() |
boolean | throwsException(String exception_class_name)
Return true if the member throws the specified exception in its throws
block.
|
Parameters: withParam whether or not to include the parameter names in the signature.
Returns: the name and signature
Returns: a Collection of XParameter.
(java.lang.String,int)
would return
java.lang.String.class, java.lang.Integer.TYPE
.
Returns: comma separated list of types for all parameters.
(java.lang.String,int)
or
(java.lang.String foo,int bar)
.
Parameters: withParam whether or not to include the parameter names in the signature.
Returns: the signature.
Returns: a Collection of XClass.
Returns: true if this is a constructor.
Parameters: exception_class_name
Returns: true if the member throws the exception