Skip to Main Content

Java APIs

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

javadoc not showing my methods

843810Feb 21 2008 — edited Mar 20 2008
I don't see what I'm doing wrong here as I've read threads on here as well as on the NetBeans site, but when I generate a javadoc for my project, the only method that seems to be in my documentation is main. In that particular class I have 3 other methods.

For example:
    /**
     * @param ext file extention allowed to be selected
     * @param desc description of the file type
     * @param fc which type of JFileChooser
     */
    private void useFileFilter(String ext, String desc, JFileChooser fc)
    {
        filter.setAcceptedFiles(ext, desc);
        fc.setAcceptAllFileFilterUsed(false);
        fc.setFileFilter(filter);
    }
Is there additional script configuration I need to do before this works properly or am I safe to assume that without additional arguments javadoc will not include private methods? I'm using NetBeans 6.0.1.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 17 2008
Added on Feb 21 2008
1 comment
3,010 views