Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9731f481321a6e2ef03b3ee50a3c39b7dc81aecb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE jdo SYSTEM "file:/javax/jdo/jdo.dtd">

<!--	Generated by Teneo on Fri Sep 22 15:30:46 CEST 2006 -->
<jdo>
	<package name="org.eclipse.emf.teneo.samples.emf.annotations.compositeid.impl">
		<class name="org.eclipse.emf.teneo.samples.emf.annotations.compositeid.impl.ParentImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="parent" identity-type="application">
			<implements name="org.eclipse.emf.teneo.samples.emf.annotations.compositeid.Parent"/>
			<inheritance strategy="new-table"/>
			<version strategy="version-number" column="e_version"/>
			<field name="children" persistence-modifier="persistent" delete-action="restrict">
				<collection element-type="org.eclipse.emf.teneo.samples.emf.annotations.compositeid.impl.ChildImpl" dependent-element="false">
					<extension vendor-name="jpox" key="cache-lazy-loading" value="true"/>
				</collection>
				<order column="PARENT_CHILDREN_IDX"/>
				<column name="children_firstname" allows-null="true"/>
				<column name="children_lastname" allows-null="true"/>
				<foreign-key delete-action="restrict" update-action="cascade"/>
			</field>
		</class>
		<class name="org.eclipse.emf.teneo.samples.emf.annotations.compositeid.impl.ChildImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="child" identity-type="application">
			<implements name="org.eclipse.emf.teneo.samples.emf.annotations.compositeid.Child"/>
			<inheritance strategy="new-table"/>
			<version strategy="version-number" column="e_version"/>
		</class>
		<class name="org.eclipse.emf.teneo.samples.emf.annotations.compositeid.impl.PersonImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" objectid-class="org.eclipse.emf.teneo.samples.emf.annotations.compositeid.PersonID" table="person" identity-type="application">
			<implements name="org.eclipse.emf.teneo.samples.emf.annotations.compositeid.Person"/>
			<implements name="org.eclipse.emf.ecore.EObject"/>
			<implements name="org.eclipse.emf.common.notify.Notifier"/>
			<inheritance strategy="new-table"/>
			<version strategy="version-number" column="e_version"/>
			<field name="firstName" persistence-modifier="persistent" primary-key="true"/>
			<field name="lastName" persistence-modifier="persistent" primary-key="true"/>
		</class>
	</package>
</jdo>

Back to the top