Right now when I generate Java Doc, I get bunch of errors. I was wondering if it is possible to generate Java Doc for certain methods. Say I am making a class to be used by others. I would like them to be able to see the Java Docs for my class. I get the following errors:
package org.json does not exist
import org.json.JSONException;
But JSON java doc are irrelevant. All I need them to be able to see are docs for the methods that I wrote in a class XYZ.
It may be possible, but is not common. Native Javadoc does not support this, I think:
http://java.sun.com/j2se/javadoc/faq/index.html#exclude
But you might have some luck with the Exclude Doclet.