| Properties |
| public Class |
getDeclaringClass() Returns the Class object representing the class or interface
that declares the member or constructor represented by this Member.
| return | an object representing the declaring class of the
underlying member |
|
| public int |
getModifiers() Returns the Java language modifiers for the member or
constructor represented by this Member, as an integer. The
Modifier class should be used to decode the modifiers in
the integer.
|
| public String |
getName() Returns the simple name of the underlying member or constructor
represented by this Member.
| return | the simple name of the underlying member |
|
| public boolean |
isSynthetic() Returns true if this member was introduced by
the compiler; returns false otherwise.
| return | true if and only if this member was introduced by
the compiler. |
| since | 1.5 |
|