/[classpath]/gjdoc/src/com/sun/javadoc/ClassDoc.java
ViewVC logotype

Diff of /gjdoc/src/com/sun/javadoc/ClassDoc.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by mark, Sun Oct 6 21:19:46 2002 UTC revision 1.2 by julian, Tue Dec 7 15:00:02 2004 UTC
# Line 140  interfaces(); Line 140  interfaces();
140    
141  /**  /**
142    * This method returns the list of fields that are visible to the user in    * This method returns the list of fields that are visible to the user in
143      * this class, or the list of all fields in this class.
144      *
145      * @param filtered if true, only return visible (included) fields;
146      * otherwise, return all fields.
147      *
148      * @return The list of visible fields in this class, or the list of
149      * all fields in this class.
150      */
151    public abstract FieldDoc[]
152    fields(boolean filtered);
153    
154    /*************************************************************************/
155    
156    /**
157      * This method returns the list of fields that are visible to the user in
158    * this class.  Does this depend on the -private -protected, etc flags    * this class.  Does this depend on the -private -protected, etc flags
159    * passed to javadoc?    * passed to javadoc?
160    *    *
# Line 151  fields(); Line 166  fields();
166  /*************************************************************************/  /*************************************************************************/
167    
168  /**  /**
169      * This method returns either the list of methods that are visible to
170      * the user in the class represented by this object, or a list of all
171      * methods, excluding constructor methods.
172      *
173      * @param filtered if true, only return visible (included) methods;
174      * otherwise, return all methods.
175      *
176      * @return The list of all methods in this class, or the list of
177      * visible methods in this class.
178      */
179    public abstract MethodDoc[]
180    methods(boolean filtered);
181    
182    /*************************************************************************/
183    
184    /**
185    * This method returns the list of methods that are visible to the user in    * This method returns the list of methods that are visible to the user in
186    * the class represented by this object, excluding constructor methods.    * the class represented by this object, excluding constructor methods.
187    *    *
# Line 161  methods(); Line 192  methods();
192    
193  /*************************************************************************/  /*************************************************************************/
194    
195    /**
196      * This method returns either the list of constructors that are
197      * visible to the user in the class represented by this object, or
198      * the list of all constructors.
199      *
200      * @param filtered if true, only return visible (included)
201      * constructors; otherwise, return all constructors.
202      *
203      * @return The list of all constructors in this class, or the list
204      * visible constructors in this class.
205      */
206    public abstract ConstructorDoc[]
207    constructors(boolean filtered);
208    
209    /*************************************************************************/
210    
211  /**  /**
212    * This method returns the list of constructors that are visible to the user    * This method returns the list of constructors that are visible to the user
213    * in the class represented by this object.    * in the class represented by this object.

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26