--- "Stundzig, Steffen" <[EMAIL PROTECTED]>
wrote:
Hi Steffen,  
you are on a wrong list.  There is a list dedicated to
xdoclet plugins
( xdoclet-plugins-interest ) , and your question is
related to hibernate plugin.

This list is mostly for core xdoclet development

> hi ashish,
> 
> thanks for your quick answer. But it doesn't work
> for me as in xdoclet
> 1.2.3.
> 
> Here are some code snippets:
> 
> --------- Diary.java ----------
> /**
>  * @hibernate.class
>  */
> public class Diary extends AHImpl {
>   /**
>    * @hibernate.set table="diary_history";    
>    */    
>   public Set getHistoryEntries() {
>     return super.getHistoryEntries0();
>   }
>   ....
> }
> -------- AHImpl.java ----------
> /**
>  * @hibernate.subclass
>  */
> public class AHImpl {
>   private Set historyEntries;
> 
>   /**
>    * @hibernate.key column="id";
>    * @hibernate.set cascade="save-update"
> lazy="true"
>    * @hibernate.composite-element
> class="HistoryEntry"
>    */
>   public abstract Set getHistoryEntries();
>     public Set getHistoryEntries0() {
>       return this.historyEntries;
>   }
> }
> ---------

You have overloaded method in subclass. XD2 does not
accumulate
tags from overloaded methods. 


----[ Konstantin Pribluda http://www.pribluda.de ]----------------
Still using XDoclet 1.x?  XDoclet 2 is released and of production quality.
check it out: http://xdoclet.codehaus.org

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Reply via email to