| java.lang.Object org.codehaus.aspectwerkz.joinpoint.impl.CatchClauseRttiImpl
CatchClauseRttiImpl | public CatchClauseRttiImpl(CatchClauseSignatureImpl signature, Object thisInstance, Object targetInstance)(Code) | | Creates a new catch clause RTTI.
Parameters: signature - Parameters: thisInstance - Parameters: targetInstance - |
cloneFor | public Rtti cloneFor(Object thisInstance, Object targetInstance)(Code) | | Clones the RTTI instance.
Parameters: thisInstance - Parameters: targetInstance - |
getDeclaringType | public Class getDeclaringType()(Code) | | Returns the declaring class.
the declaring class |
getModifiers | public int getModifiers()(Code) | | Returns the modifiers for the signature. Could be used like this:
boolean isPublic = java.lang.reflect.Modifier.isPublic(signature.getModifiers());
the mofifiers |
getName | public String getName()(Code) | | Returns the name (f.e. name of method of field).
|
getParameterType | public Class getParameterType()(Code) | | Returns the parameter type.
the parameter type |
getParameterValue | public Object getParameterValue()(Code) | | Returns the value of the parameter.
the value of the parameter |
getTarget | public Object getTarget()(Code) | | Returns the target instance.
the target instance |
getThis | public Object getThis()(Code) | | Returns the instance currently executing.
the instance currently executing |
toString | public String toString()(Code) | | Returns a string representation of the signature.
a string representation |
|
|