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

<!--	Generated by Teneo on Wed Jul 18 17:05:45 CEST 2007 -->
<jdo>
	<package name="org.eclipse.emf.teneo.samples.emf.sample.inv.impl">
		<class name="org.eclipse.emf.teneo.samples.emf.sample.inv.impl.PTypeImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="ptype" identity-type="application">
			<implements name="org.eclipse.emf.teneo.samples.emf.sample.inv.PType"/>
			<implements name="org.eclipse.emf.ecore.EObject"/>
			<implements name="org.eclipse.emf.common.notify.Notifier"/>
			<inheritance strategy="new-table">
				<discriminator column="dtype" strategy="value-map" value="PType"/>
			</inheritance>
			<version strategy="version-number" column="e_version"/>
			<field name="id" persistence-modifier="persistent" primary-key="true" value-strategy="auto" indexed="true"/>
			<field name="name" persistence-modifier="persistent" null-value="none"/>
			<field name="base" persistence-modifier="persistent" delete-action="restrict" null-value="none">
				<foreign-key/>
				<column name="ptype_base_id" allows-null="true"/>
				<extension vendor-name="jpox" key="implementation-classes" value="org.eclipse.emf.teneo.samples.emf.sample.inv.impl.PTypeImpl"/>
			</field>
			<field name="subTypes" persistence-modifier="persistent" mapped-by="base" delete-action="restrict">
				<collection element-type="org.eclipse.emf.teneo.samples.emf.sample.inv.impl.PTypeImpl" dependent-element="false">
					<extension vendor-name="jpox" key="cache-lazy-loading" value="true"/>
				</collection>
				<foreign-key delete-action="restrict" update-action="cascade"/>
			</field>
			<field name="subNOTypes" persistence-modifier="persistent" delete-action="restrict">
				<collection element-type="org.eclipse.emf.teneo.samples.emf.sample.inv.impl.PTypeImpl" dependent-element="false">
					<extension vendor-name="jpox" key="cache-lazy-loading" value="true"/>
				</collection>
				<element>
					<column name="ptype_subnotypes_id" allows-null="true"/>
				</element>
				<foreign-key delete-action="restrict" update-action="cascade"/>
			</field>
			<field name="infoReferences" persistence-modifier="persistent" delete-action="restrict">
				<collection element-type="org.eclipse.emf.teneo.samples.emf.sample.inv.impl.PDeclarationImpl" dependent-element="false">
					<extension vendor-name="jpox" key="cache-lazy-loading" value="true"/>
				</collection>
				<element>
					<column name="ptype_inforeferences_id" allows-null="true"/>
				</element>
				<foreign-key delete-action="restrict" update-action="cascade"/>
			</field>
		</class>
		<class name="org.eclipse.emf.teneo.samples.emf.sample.inv.impl.PDeclarationImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="pdeclaration" identity-type="application">
			<implements name="org.eclipse.emf.teneo.samples.emf.sample.inv.PDeclaration"/>
			<implements name="org.eclipse.emf.ecore.EObject"/>
			<implements name="org.eclipse.emf.common.notify.Notifier"/>
			<inheritance strategy="new-table">
				<discriminator column="dtype" strategy="value-map" value="PDeclaration"/>
			</inheritance>
			<version strategy="version-number" column="e_version"/>
			<field name="id" persistence-modifier="persistent" primary-key="true" value-strategy="auto" indexed="true"/>
			<field name="name" persistence-modifier="persistent" null-value="none"/>
		</class>
	</package>
</jdo>

Back to the top