FileDocCategorySizeDatePackage
Member.javaAPI DocAndroid 1.5 API2460Wed May 06 22:41:04 BST 2009java.lang.reflect

Member

public interface Member
Common interface providing access to reflective information on class members.
see
Field
see
Constructor
see
Method
since
Android 1.0

Fields Summary
public static final int
PUBLIC
Designates all public members of a class or interface (including inherited members).
public static final int
DECLARED
Designates all declared members of a class or interface (without inherited members).
Constructors Summary
Methods Summary
public java.lang.ClassgetDeclaringClass()
Returns the class that declares this member.

return
the declaring class
since
Android 1.0

public intgetModifiers()
Returns the modifiers for this member. The {@link Modifier} class should be used to decode the result.

return
the modifiers for this member
see
Modifier
since
Android 1.0

public java.lang.StringgetName()
Returns the name of this member.

return
the name of this member
since
Android 1.0

public booleanisSynthetic()
Indicates whether or not this member is synthetic (artificially introduced by the compiler).

return
{@code true} if this member is synthetic, {@code false} otherwise
since
Android 1.0