Hi all,

I´m trying to generate two VOs for my bean.
Xdoclet generates the complete VO (GroupTO), but
doesn´t generate the other (GroupLightTO).

My code is: 

/**
 * @ejb:bean                        name="Group"
 *           view-type="both"
 *           type="CMP"
 * @ejb:value-object
 *   name="GroupLight"
 *   match="light"
 */
public abstract class GroupBean implements EntityBean
{
  /**
   * @ejb.value-object match="light"
   * @ejb:interface-method
   */
  public abstract void setName(String name);

  /**
   * @ejb:interface-method
   */
  public abstract void setParent(String parent);

  /**
   * @ejb.interface-method
   */
  public abstract GroupLightTO getGroupLightTO();

  /**
   * @ejb.value-object match="light"
   * @ejb:interface-method
   * @ejb:pk-field
   * @ejb:persistent-field
   */
  public abstract String getName();

  /**
   * @ejb:interface-method
   * @ejb:persistent-field
   */
  public abstract String getParent();
}

My Xdoclet tag for VOs is <dataobject
pattern="{0}TO"/>.

Can anyone shed some light on this?

Thanks in advance,

Mauricio

_______________________________________________________________________
Desafio AntiZona - Um emocionante desafio de perguntas e respostas que
te dá um Renault Clio, kits de eletrônicos, computadores, notebooks e 
mochilas. Cadastre-se, participe e concorra!
www.cade.com.br/antizona


-------------------------------------------------------
This SF.net email is sponsored by: VM Ware
With VMware you can run multiple operating systems on a single machine.
WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines
at the same time. Free trial click here:http://www.vmware.com/wl/offer/358/0
_______________________________________________
xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to