On Wed, 2004-09-08 at 02:12, Harkness, David wrote: > William I. Zumwalt penned ... > > Also, seems weird, but would I just code the primary > > key return type as the return of my ejbCreate() > > methods ... before it's even been generated? I'm not > > understanding this. > > That's my understanding of the spec. The generation of the PK's source > file happens before compilation, so no compiler problems (same with your > interfaces).
One other thing to add to David's reply, William; any time you're referring to classes which are to be generated, use fully qualified names or import them individually. If you use import com.my.interfaces.*; import any.other.package.*; then, because they don't exist when xjavadoc parses your bean class, it can't know which of those packages the generated files belong to. So instead it will, probably incorrectly, just assume they're meant to be in the same package as your bean class. It may look messier to import them one at a time (and many IDEs will "helpfully" keep offering to replace them with a .* import for you), but at least that enables xjavadoc (and hence XDoclet) to figure out the right package. Andrew. ------------------------------------------------------- This SF.Net email is sponsored by BEA Weblogic Workshop FREE Java Enterprise J2EE developer tools! Get your free copy of BEA WebLogic Workshop 8.1 today. http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click _______________________________________________ xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user