Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ccf339b5fd56114455e0a77e024d45fa05c3ef73 (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 Thu Mar 29 23:45:45 CEST 2007 -->
<jdo>
	<package name="org.eclipse.emf.teneo.samples.emf.annotations.column.impl">
		<class name="org.eclipse.emf.teneo.samples.emf.annotations.column.impl.BookImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="mybooktable" identity-type="datastore">
			<implements name="org.eclipse.emf.teneo.samples.emf.annotations.column.Book"/>
			<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="Book"/>
			</inheritance>
			<version strategy="version-number" column="e_version"/>
			<field name="title" persistence-modifier="persistent" null-value="exception">
				<column name="titel" allows-null="true" length="25"/>
				<unique>
					<column name="titel" allows-null="true" length="25"/>
				</unique>
			</field>
			<field name="pages" persistence-modifier="none"/>
			<field name="weight" persistence-modifier="persistent" null-value="exception" embedded="true">
				<column name="gewicht" allows-null="true" length="5" scale="2"/>
			</field>
			<field name="author" persistence-modifier="persistent" null-value="exception"/>
		</class>
	</package>
</jdo>

Back to the top