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

<!--	Generated by Teneo on Thu Jul 12 19:36:17 CEST 2007 -->
<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">
				<discriminator column="dtype" strategy="value-map" value="statesByCountry"/>
			</inheritance>
			<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 name="statesbycountry_allstates"/>
				<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 name="statesbycountry_siximportantstates"/>
				<order column="STATESBYCOUNTRY_SIXIMPORTANTSTATES_IDX"/>
			</field>
		</class>
	</package>
</jdo>

Back to the top