| com.tc.aspectwerkz.joinpoint.Rtti
All known Subclasses: com.tc.aspectwerkz.joinpoint.impl.StaticInitializationRttiImpl,
Rtti | public interface Rtti (Code) | | Holds static and reflective information about the join point (Runtime Type Information).
author: Jonas BonŽr |
getDeclaringType | Class getDeclaringType()(Code) | | Returns the declaring class.
the declaring class |
getModifiers | 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 | String getName()(Code) | | Returns the name (f.e. name of method of field).
|
getTarget | Object getTarget()(Code) | | Returns the target instance.
the target instance |
getThis | Object getThis()(Code) | | Returns the instance currently executing (this).
the instance currently executing (this) |
|
|