|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.aspectj.runtime.reflect.FieldSignatureImpl
public class FieldSignatureImpl
Method Summary | |
---|---|
protected String |
createToString(org.aspectj.runtime.reflect.StringMaker sm)
|
Class |
getDeclaringType()
Returns a java.lang.Class object representing the class,
interface, or aspect that declared this member. |
String |
getDeclaringTypeName()
Returns the fully-qualified name of the declaring type. |
Field |
getField()
|
Class |
getFieldType()
|
int |
getModifiers()
Returns the modifiers on this signature represented as an int. |
String |
getName()
Returns the identifier part of this signature. |
void |
setLookupClassLoader(ClassLoader loader)
|
String |
toLongString()
Returns an extended string representation of this signature. |
String |
toShortString()
Returns an abbreviated string representation of this signature. |
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface org.aspectj.lang.Signature |
---|
getDeclaringType, getDeclaringTypeName, getModifiers, getName, toLongString, toShortString, toString |
Method Detail |
---|
public Class getFieldType()
getFieldType
in interface FieldSignature
protected String createToString(org.aspectj.runtime.reflect.StringMaker sm)
public Field getField()
getField
in interface FieldSignature
public final String toString()
toString
in interface Signature
toString
in class Object
public final String toShortString()
Signature
toShortString
in interface Signature
public final String toLongString()
Signature
toLongString
in interface Signature
public int getModifiers()
Signature
java.lang.reflect.Modifier
to manipulate this, i.e.
// check if this signature is public java.lang.reflect.Modifier.isPublic(sig.getModifiers()); // print out the modifiers java.lang.reflect.Modifier.toString(sig.getModifiers());
getModifiers
in interface Signature
Member.getModifiers()
,
Modifier
public String getName()
Signature
getName
in interface Signature
Member.getName()
public Class getDeclaringType()
Signature
Returns a java.lang.Class
object representing the class,
interface, or aspect that declared this member. For intra-member
declarations, this will be the type on which the member is declared,
not the type where the declaration is lexically written. Use
SourceLocation.getWithinType()
to get the type in
which the declaration occurs lexically.
For consistency with java.lang.reflect.Member
, this
method should have been named getDeclaringClass()
.
getDeclaringType
in interface Signature
Member.getDeclaringClass()
public String getDeclaringTypeName()
Signature
getDeclaringTypeName
in interface Signature
public void setLookupClassLoader(ClassLoader loader)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |