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

<!--	Generated by Teneo on Fri Sep 22 15:31:30 CEST 2006 -->
<jdo>
	<package name="org.eclipse.emf.teneo.samples.emf.annotations.id.impl">
		<class name="org.eclipse.emf.teneo.samples.emf.annotations.id.impl.IdentityIDImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="identityid" identity-type="application">
			<implements name="org.eclipse.emf.teneo.samples.emf.annotations.id.IdentityID"/>
			<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="IdentityID"/>
			</inheritance>
			<version strategy="version-number" column="e_version"/>
			<field name="myid" persistence-modifier="persistent" primary-key="true" value-strategy="identity" indexed="true"/>
		</class>
		<class name="org.eclipse.emf.teneo.samples.emf.annotations.id.impl.SimpleIDImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="simpleid" identity-type="application">
			<implements name="org.eclipse.emf.teneo.samples.emf.annotations.id.SimpleID"/>
			<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="SimpleID"/>
			</inheritance>
			<version strategy="version-number" column="e_version"/>
			<field name="autoID" persistence-modifier="persistent" primary-key="true" value-strategy="auto" indexed="true">
				<column name="AUTOD" allows-null="false"/>
			</field>
		</class>
		<class name="org.eclipse.emf.teneo.samples.emf.annotations.id.impl.TableIDImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="tableid" identity-type="application">
			<implements name="org.eclipse.emf.teneo.samples.emf.annotations.id.TableID"/>
			<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="TableID"/>
			</inheritance>
			<version strategy="version-number" column="e_version"/>
			<field name="myid" persistence-modifier="persistent" primary-key="true" value-strategy="increment" indexed="true"/>
		</class>
	</package>
</jdo>

Back to the top