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

<!--	Generated by Teneo on Mon Nov 13 20:21:08 CET 2006 -->
<jdo>
	<package name="org.eclipse.emf.teneo.samples.emf.annotations.edatatypeColumn.impl">
		<class name="org.eclipse.emf.teneo.samples.emf.annotations.edatatypeColumn.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.edatatypeColumn.Book"/>
			<implements name="org.eclipse.emf.ecore.EObject"/>
			<implements name="org.eclipse.emf.common.notify.Notifier"/>
			<inheritance strategy="new-table"/>
			<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