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

<!--	Generated by Teneo on Fri Sep 22 15:31:22 CEST 2006 -->
<jdo>
	<package name="org.eclipse.emf.teneo.samples.emf.annotations.uniqueconstraints.impl">
		<class name="org.eclipse.emf.teneo.samples.emf.annotations.uniqueconstraints.impl.ItemImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="MYITEMTABLE" identity-type="datastore">
			<implements name="org.eclipse.emf.teneo.samples.emf.annotations.uniqueconstraints.Item"/>
			<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="Item"/>
			</inheritance>
			<unique>
				<column name="MYSTR"/>
				<column name="MYINT"/>
			</unique>
			<version strategy="version-number" column="e_version"/>
			<field name="name" persistence-modifier="persistent" null-value="exception">
				<column name="MYSTR" allows-null="true"/>
			</field>
			<field name="age" persistence-modifier="persistent" null-value="none">
				<column name="MYINT" allows-null="true"/>
			</field>
			<field name="ageESet" persistence-modifier="persistent"/>
		</class>
	</package>
</jdo>

Back to the top