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

<!--	Generated by Teneo on Thu Jul 12 19:33:08 CEST 2007 -->
<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="datastore">
			<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" null-value="none"/>
			<field name="idESet" persistence-modifier="persistent"/>
			<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