Justin Casp wrote:
Hello,Check to see if the class level JavaDoc markup isn't misplaced. This is a common error. For examplo:
I am having a problem getting XDoclet to generate an <entity> entry in my ejb-jar.xml deployment descriptor for one of my CMP 2.x entity beans. What's wierd is that it works correctly for six other beans that I simultaneously converted to XDoclet tag markup.
/**
* @some.tags
*/
import xxx.xxx
public class ...
This is not valid. The JavaDoc must imediatelly precede the class declaration, like:
/**
* @some.tags
*/
public class ...
--
MB
-------------------------------------------------------
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
_______________________________________________
xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user
