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

<!--	Generated by Teneo on Thu Sep 28 21:32:37 CEST 2006 -->
<jdo>
	<package name="org.eclipse.emf.teneo.samples.emf.schemaconstructs.attributes.impl">
		<class name="org.eclipse.emf.teneo.samples.emf.schemaconstructs.attributes.impl.AImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="a" identity-type="application">
			<implements name="org.eclipse.emf.teneo.samples.emf.schemaconstructs.attributes.A"/>
			<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="A"/>
			</inheritance>
			<version strategy="version-number" column="e_version"/>
			<field name="name" persistence-modifier="persistent" null-value="none"/>
			<field name="nameESet" persistence-modifier="persistent"/>
			<field name="b" persistence-modifier="persistent" null-value="none"/>
			<field name="bESet" persistence-modifier="persistent"/>
			<field name="c" persistence-modifier="persistent" null-value="none"/>
			<field name="comment" persistence-modifier="persistent" null-value="none"/>
			<field name="commentESet" persistence-modifier="persistent"/>
			<field name="id" persistence-modifier="persistent" primary-key="true"/>
			<field name="d" persistence-modifier="persistent" null-value="exception"/>
			<field name="myR" persistence-modifier="persistent" delete-action="restrict" null-value="none">
				<foreign-key>
					<column name="myr_id" allows-null="true"/>
				</foreign-key>
				<extension vendor-name="jpox" key="implementation-classes" value="org.eclipse.emf.teneo.samples.emf.schemaconstructs.attributes.impl.RImpl"/>
			</field>
		</class>
		<class name="org.eclipse.emf.teneo.samples.emf.schemaconstructs.attributes.impl.RImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="r" identity-type="datastore">
			<implements name="org.eclipse.emf.teneo.samples.emf.schemaconstructs.attributes.R"/>
			<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="R"/>
			</inheritance>
			<version strategy="version-number" column="e_version"/>
			<field name="name" persistence-modifier="persistent" null-value="exception"/>
		</class>
	</package>
</jdo>

Back to the top