javadoc not reading past my main function

i am trying to use javadoc to document my program (as you do) and i have 4 function in one class, one of these is main.

javadoc will only read main tho and leave the other 3 with nothing.

i tried sticking the main at the bottom of the code to and that doesnt work either

anyone have any ideas?

(i'm not posting code bc there is nothing wrong with my javadoc coding as it is working for the main code)

[432 byte] By [kotmfua] at [2007-11-27 4:53:16]
# 1

By default, javadoc documents only public and protected members. If the other members are package private or private, they won't be documented unless you provide an option:

javadoc -private

for all members

javadoc -package

for public, protected and package-private members

-Doug

dhkramera at 2007-7-12 10:07:32 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...