Is there a way to get xdoclet to add the package attribute to the hibernate-mapping element?
Or do I need to specify the full class name in the @hibernate.collection-one-to-many class="" entry.
Here the set in the parent class, the child "Thingy" is in the same package as the parent so I'd should (?) be able to say class="Thingy" like below.
But xdoclet isn't putting the package= attribute in the hibernate-mapping so this doesn't work because "Thingy" isn't fully qualitied class name.
Code:
/**
* @hibernate.set
* inverse = "true"
* lazy = "true"
* cascade = "all"
* @hibernate.collection-key
* column = "thingySetId"
* @hibernate.collection-one-to-many
* class = "Thingy"
*/
public Set getThingys()
{
return thingys;
}
So, is there a way to get xdoclet to add the package attribute?
Or, are you required to give a fully qualified class name?