Title: Tag inheritance from interfaces
not quite sure I'm 100% understanding, so to confirm, if you declare:
 
/**
 * Do such and such.
 * @ejb.interface-method
 */
public void doSuchAndSuch()
{
  ;
}
 
in your bean, then you should have
 
/**
 * Do such and such.
 */
public void doSuchAndSuch();
 
generated in the interface.
 
Is this not happening?  Or have I misinterpreted what it is you're after?
 
cheers
dim
----- Original Message -----
Sent: Friday, October 25, 2002 9:58 AM
Subject: [Xdoclet-user] Tag inheritance from interfaces

Sorry if these questions have been answered before, but I couldn't find them. I found a similar post on the SourceForge help forum, but no answer.

We would like to be able to use business interfaces for our entity beans, but the current release of XDoclet does not seem to inherit the javadoc comments from them. The workaround so far is to re-declare the business methods in the bean solely to provide XDoclet with information, which is less than optimal.

Did I miss something basic to make this work, or is this a known limitation? Is this kind of inheritance planned for release 1.2?

Eric McIntyre

Reply via email to