Is there any documentation on how this will work?

With your sample (Person and Employee), you must write class descriptor like
this:

<class-descriptor class="Person" table="person">
    <field-descriptor id="1" name="personId" column="person_id" ... />
    <field-descriptor id="2" name="name" column="name" ... />
    <field-descriptor id="3" name="ssn" column="ssn" ... />
</class-descriptor>

<class-descriptor class="Employee" table="employee">
    <field-descriptor id="1" name="employeeId" column="employee_id" ... />
    <field-descriptor id="2" name="employeeNum" column="employee_num" ... />
    <field-descriptor id="3" name="hireDate" column="hire_date" ... />
    
    <reference-descriptor name="this" class-ref="Personne"
auto-update="true" ... >
        <foreignkey field-ref="employeeId"/>
    </reference-descriptor>
</class-descriptor>

Houar

 -----Message d'origine-----
De :    Les Hazlewood [mailto:[EMAIL PROTECTED] 
Envoy� :        mercredi 26 mars 2003 22:17
� :     OJB Users List
Objet : Re: Vertical Inheritance


Thomas, 

Thank you so much for a clear answer! 

You mentioned the release candidate addressing vertical inheritance... 

Is there any documentation on how this will work? 

If not, is there internal code documentation that you can direct me to? (I'd

be happy to download the source code and poke my nose around a bit). 

Les

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to