I've updated the GWT Xdoclet module to support typeArgs for collections. This is used when returning a collection from a service method:
CODE:
-
/**
-
* @gwt.serviceMethod
-
* @gwt.typeArgs dk.contix.Test
-
*/
-
public List getObjects() {
-
return new ArrayList();
-
}
Notice that the object type is not written in <> as you would do if using GWT directly.
The new module can be downloaded here: xdoclet-gwt-module-0.5.jar.



