fixed some formatting typos
[vimdoclet.git] / sample / java.lang.reflect.Member.txt
blob1fc8819baf4642ec0fd213b322367a3f78c2cdff
1 *java.lang.reflect.Member* *Member* Member is an interface that reflects identif
3 public interface interface Member
6 |java.lang.reflect.Member_Description|
7 |java.lang.reflect.Member_Fields|
8 |java.lang.reflect.Member_Constructors|
9 |java.lang.reflect.Member_Methods|
11 ================================================================================
13 *java.lang.reflect.Member_Fields*
14 |int_java.lang.reflect.Member.DECLARED|
15 |int_java.lang.reflect.Member.PUBLIC|
17 *java.lang.reflect.Member_Methods*
18 |java.lang.reflect.Member.getDeclaringClass()|Returns the Class object represen
19 |java.lang.reflect.Member.getModifiers()|Returns the Java language modifiers fo
20 |java.lang.reflect.Member.getName()|Returns the simple name of the underlying m
21 |java.lang.reflect.Member.isSynthetic()|Returns true if this member was introdu
23 *java.lang.reflect.Member_Description*
25 Member is an interface that reflects identifying information about a single 
26 member (a field or a method) or a constructor. 
30 *int_java.lang.reflect.Member.DECLARED*
32 Identifies the set of declared members of a class or interface. Inherited 
33 members are not included. 
36 *int_java.lang.reflect.Member.PUBLIC*
38 Identifies the set of all public members of a class or interface, including 
39 inherited members. 
43 *java.lang.reflect.Member.getDeclaringClass()*
45 public |java.lang.Class|<?> getDeclaringClass()
47 Returns the Class object representing the class or interface that declares the 
48 member or constructor represented by this Member. 
52     Returns: an object representing the declaring class of the underlying member 
54 *java.lang.reflect.Member.getModifiers()*
56 public int getModifiers()
58 Returns the Java language modifiers for the member or constructor represented 
59 by this Member, as an integer. The Modifier class should be used to decode the 
60 modifiers in the integer. 
64     Returns: the Java language modifiers for the underlying member 
66 *java.lang.reflect.Member.getName()*
68 public |java.lang.String| getName()
70 Returns the simple name of the underlying member or constructor represented by 
71 this Member. 
75     Returns: the simple name of the underlying member 
77 *java.lang.reflect.Member.isSynthetic()*
79 public boolean isSynthetic()
81 Returns true if this member was introduced by the compiler; returns false 
82 otherwise. 
86     Returns: true if and only if this member was introduced by the compiler.