There are 3 types of JavaDocs in Groovy 1.8 docs:
API / GAPI / JDK /
Jdk / Javadocs displays the methods that Groovy adds to Java classes. This is easy to understand.
JavaDocs in api / and gapi / are confusing. They are similar, except that api / has a case-insensitive display of all classes, while gapi / has a case-sensitive display of all classes. (A case-sensitive display makes finding things difficult.)
In the gapi / All Classes list, there are four genXXX entries at the end of the list (this case-sensitive register) that do not seem to be in the api / list.
Does anyone know what is the difference between api / and gapi / JavaDocs?
Thanks.
source share