The Groovy 1.8 docs have 3 types of JavaDocs:
api/ gapi/ jdk/
The jdk/ Javadocs show methods that Groovy adds to Java classes. That's easy to understand.
The 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. (The case-sensitive display makes it hard to find things.)
The gapi/ All Classes list has four genXXX entries at the end of the list (that case-sensitive sort again) which don't seem to be in the api/ list.
Does anyone know what the difference is between the api/ and gapi/ JavaDocs?
Thanks.