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

<!--	Generated by Teneo on Tue Sep 26 12:55:55 CEST 2006 -->
<jdo>
	<package name="org.eclipse.emf.teneo.samples.emf.schemaconstructs.list.impl">
		<class name="org.eclipse.emf.teneo.samples.emf.schemaconstructs.list.impl.statesByCountryImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="statesbycountry" identity-type="datastore">
			<implements name="org.eclipse.emf.teneo.samples.emf.schemaconstructs.list.statesByCountry"/>
			<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="country" persistence-modifier="persistent" null-value="exception"/>
			<field name="index" persistence-modifier="persistent" null-value="none"/>
			<field name="indexESet" persistence-modifier="persistent"/>
			<field name="allStates" persistence-modifier="persistent">
				<collection element-type="java.lang.String">
					<extension vendor-name="jpox" key="cache-lazy-loading" value="true"/>
				</collection>
				<join/>
				<order column="STATESBYCOUNTRY_ALLSTATES_IDX"/>
			</field>
			<field name="sixImportantStates" persistence-modifier="persistent">
				<collection element-type="java.lang.String">
					<extension vendor-name="jpox" key="cache-lazy-loading" value="true"/>
				</collection>
				<join/>
				<order column="STATESBYCOUNTRY_SIXIMPORTANTSTATES_IDX"/>
			</field>
		</class>
	</package>
</jdo>

Back to the top