We have an EntityBeanAdapter class that is the ancestor to all of our entity beans.  
The following is a small snip of the code:

public abstract class EntityBeanAdapter
                implements EntityBean {
. {snip}
  protected PK createPrimaryKey() throws AnException {
  . {snip}
  }
. {snip}
}
 
My implementation class looks like this:

public abstract class ActivityBean extends EntityBeanAdapter{
.
        public abstract String getPrimaryField();
        public abstract void setPrimaryField(String primary);
.
}


Now I would like to publish the ancestor's (EntityBeanAdapter) method createPrimaryKey 
in the ActivityBean local interface.  How could I do this using xdoclet?
      



_______________________________________________________________

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

_______________________________________________
Xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to