Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 76e44344316d24555ab5ab9b3d9265bda4516adf (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE jdo SYSTEM "file:/javax/jdo/jdo.dtd">

<!--	Generated by Teneo on Thu Jul 12 19:36:50 CEST 2007 -->
<jdo>
	<package name="org.eclipse.emf.teneo.samples.issues.inheritance.impl">
		<class name="org.eclipse.emf.teneo.samples.issues.inheritance.impl.AnnotationImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="annotation" identity-type="application">
			<implements name="org.eclipse.emf.teneo.samples.issues.inheritance.Annotation"/>
			<inheritance strategy="new-table"/>
			<version strategy="version-number" column="e_version"/>
		</class>
		<class name="org.eclipse.emf.teneo.samples.issues.inheritance.impl.InterestImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="interest" identity-type="application">
			<implements name="org.eclipse.emf.teneo.samples.issues.inheritance.Interest"/>
			<inheritance strategy="new-table"/>
			<version strategy="version-number" column="e_version"/>
		</class>
		<class name="org.eclipse.emf.teneo.samples.issues.inheritance.impl.SubOneImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="subone" identity-type="application">
			<implements name="org.eclipse.emf.teneo.samples.issues.inheritance.SubOne"/>
			<inheritance strategy="new-table"/>
			<version strategy="version-number" column="e_version"/>
		</class>
		<class name="org.eclipse.emf.teneo.samples.issues.inheritance.impl.SubThingImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="subthing" identity-type="application">
			<implements name="org.eclipse.emf.teneo.samples.issues.inheritance.SubThing"/>
			<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"/>
		</class>
		<class name="org.eclipse.emf.teneo.samples.issues.inheritance.impl.SubTwoImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="subtwo" identity-type="application">
			<implements name="org.eclipse.emf.teneo.samples.issues.inheritance.SubTwo"/>
			<inheritance strategy="new-table"/>
			<version strategy="version-number" column="e_version"/>
		</class>
		<class name="org.eclipse.emf.teneo.samples.issues.inheritance.impl.ThingImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="thing" identity-type="application">
			<implements name="org.eclipse.emf.teneo.samples.issues.inheritance.Thing"/>
			<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="things" persistence-modifier="persistent" delete-action="restrict">
				<collection element-type="org.eclipse.emf.teneo.samples.issues.inheritance.impl.SubThingImpl" dependent-element="false">
					<extension vendor-name="jpox" key="cache-lazy-loading" value="true"/>
				</collection>
				<element>
					<column name="thing_things_name" allows-null="true"/>
				</element>
				<order column="THING_THINGS_IDX"/>
				<foreign-key delete-action="restrict" update-action="cascade"/>
			</field>
		</class>
	</package>
</jdo>

Back to the top