Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f2050a65a86103e110f6d474f3f201e2b3038953 (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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE jdo SYSTEM "file:/javax/jdo/jdo.dtd">

<!--	Generated by Teneo on Tue Sep 26 12:57:40 CEST 2006 -->
<jdo>
	<package name="org.eclipse.emf.teneo.samples.issues.bagduplicate.impl">
		<class name="org.eclipse.emf.teneo.samples.issues.bagduplicate.impl.PersonImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="person" identity-type="application">
			<implements name="org.eclipse.emf.teneo.samples.issues.bagduplicate.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="name" persistence-modifier="persistent" primary-key="true"/>
			<field name="father" persistence-modifier="persistent" delete-action="restrict" null-value="none">
				<foreign-key>
					<column name="father_name" allows-null="true"/>
				</foreign-key>
				<extension vendor-name="jpox" key="implementation-classes" value="org.eclipse.emf.teneo.samples.issues.bagduplicate.impl.PersonImpl"/>
			</field>
			<field name="mother" persistence-modifier="persistent" delete-action="restrict" null-value="none">
				<foreign-key>
					<column name="mother_name" allows-null="true"/>
				</foreign-key>
				<extension vendor-name="jpox" key="implementation-classes" value="org.eclipse.emf.teneo.samples.issues.bagduplicate.impl.PersonImpl"/>
			</field>
			<field name="children" persistence-modifier="persistent" table="person_person" delete-action="restrict">
				<collection element-type="org.eclipse.emf.teneo.samples.issues.bagduplicate.impl.PersonImpl" dependent-element="false">
					<extension vendor-name="jpox" key="cache-lazy-loading" value="true"/>
				</collection>
				<join/>
			</field>
		</class>
	</package>
</jdo>

Back to the top