March 2005
Beginner to intermediate
1254 pages
104h 21m
English
Member
This
interface defines the methods shared by all members (fields, methods,
and constructors) of a class. getName( ) returns
the name of the member, getModifiers( ) returns
its modifiers, and getDeclaringClass( ) returns
the Class object that represents the class of
which the member is a part. isSynthetic(
)
returns true if the
member is one that does not appear in the source code but was
introduced by the compiler.
public interface Member { // Public Constants public static final int DECLARED; =1 public static final int PUBLIC; =0 // Public Instance Methods Class getDeclaringClass( ); int getModifiers( ); String getName( ); 5.0 boolean isSynthetic( ); }
Constructor, Field,
Method
Read now
Unlock full access