Johnathan Conley <mailto:[EMAIL PROTECTED]> once said: > Would like an EJB to be excluded from generation > (actually it's an abstract class that 2 other EJB's extend for common > behavior) Currently hacked it into the fileset - but in the > spirit of xdoclet would like to denote this in the > code.
You are correct, there is a tag for this: * @ejb.bean * generate="False" Note that I have my BaseEJB entity bean tagged as such, yet a Local interface and LocalHome object are both generated as empty classes. All of the other interfaces and homes extend the BaseLocal/BaseLocalHome ones with no problems. Note that others have had trouble actually putting functionality into the base classes (finders, for example), so you might want to try this with one class to make sure it works for you. David Harkness Sr. Software Engineer Sony Pictures Digital Networks (310) 482-4756 ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user
