Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d8c1945de3187c34445dfb6f1fc3021754307a69 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE jdo SYSTEM "file:/javax/jdo/jdo.dtd">

<!--	Generated by Teneo on Thu Sep 21 02:17:52 CEST 2006 -->
<jdo>
	<package name="org.eclipse.emf.teneo.samples.emf.annotations.lob.impl">
		<class name="org.eclipse.emf.teneo.samples.emf.annotations.lob.impl.PersonImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="person" identity-type="application">
			<implements name="org.eclipse.emf.teneo.samples.emf.annotations.lob.Person"/>
			<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="id" persistence-modifier="persistent" primary-key="true"/>
			<field name="name" persistence-modifier="persistent" null-value="exception"/>
			<field name="address" persistence-modifier="persistent" null-value="none"/>
			<field name="photo" persistence-modifier="persistent" embedded="true">
				<array embedded-element="true"/>
			</field>
		</class>
	</package>
</jdo>

Back to the top