Hibernate version: 3.05
Why is it that if I have a subclass that is in a different package from the superclass and I use the xdoclet tag "@hibernate.joined-subclass ".
Then the hbm file does not get generated?
For example...
Code:
package org.model;
/**
* @hibernate.class table="BaseClass "
*/
public abstract class BaseClass {
...
}
Code:
package org.model.sections;
/**
* @hibernate.joined-subclass table="SubClassA"
*/
public class SubClassA extends BaseClass {
...
}
This results in XDoclet not generating the
hbm for the class
SubClassA.
Is this a XDoclet limitation, or a limitation of Hibernate?
I've read through
Hiberante in Action and can't see any info on this.
Thanks
Jeff