|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface JField
Represents an exposed field on a Java class.
Method Summary | |
---|---|
java.lang.String |
getQualifiedName()
Returns a qualied name for this method as specified by java.lang.reflect.Field.toString() : |
JClass |
getType()
Returns the type of this field. |
boolean |
isFinal()
Return true if this field is final. |
boolean |
isStatic()
Return true if this field is static. |
boolean |
isTransient()
Return true if this field is transient. |
boolean |
isVolatile()
Return true if this field is volatile. |
Methods inherited from interface org.codehaus.jam.JMember |
---|
getContainingClass, getModifiers, isPackagePrivate, isPrivate, isProtected, isPublic |
Methods inherited from interface org.codehaus.jam.JAnnotatedElement |
---|
getAllJavadocTags, getAnnotation, getAnnotation, getAnnotations, getAnnotationValue, getComment |
Methods inherited from interface org.codehaus.jam.JElement |
---|
accept, getArtifact, getParent, getSimpleName, getSourcePosition, isSourceAvailable, toString |
Method Detail |
---|
JClass getType()
boolean isFinal()
boolean isStatic()
boolean isVolatile()
boolean isTransient()
java.lang.String getQualifiedName()
Returns a qualied name for this method as specified by
java.lang.reflect.Field.toString()
:
Returns a string describing this Field. The format is the access modifiers for the field, if any, followed by the field type, followed by a space, followed by the fully-qualified name of the class declaring the field, followed by a period, followed by the name of the field. For example:
public static final int java.lang.Thread.MIN_PRIORITY
private int java.io.FileDescriptor.fd
The modifiers are placed in canonical order as specified by "The Java Language Specification". This is public, protected or private first, and then other modifiers in the following order: static, final, transient, volatile.
getQualifiedName
in interface JElement
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |