Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c9e84bcce4e6fc116b69d08ebdc033b89c7895a6 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE jdo SYSTEM "file:/javax/jdo/jdo.dtd">

<!--	Generated by Teneo on Thu Jul 12 14:21:52 CEST 2007 -->
<jdo>
	<package name="org.eclipse.emf.teneo.samples.emf.schemaconstructs.listunion.impl">
		<class name="org.eclipse.emf.teneo.samples.emf.schemaconstructs.listunion.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.listunion.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="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>
			<field name="zipUnion" persistence-modifier="persistent" null-value="exception"/>
			<field name="zipUnions" persistence-modifier="persistent">
				<collection element-type="java.lang.String">
					<extension vendor-name="jpox" key="cache-lazy-loading" value="true"/>
				</collection>
				<join name="statesbycountry_zipunions"/>
				<order column="STATESBYCOUNTRY_ZIPUNIONS_IDX"/>
			</field>
			<field name="simpleUnion" persistence-modifier="persistent" null-value="exception" serialized="true"/>
			<field name="simpleUnions" persistence-modifier="persistent">
				<collection element-type="org.eclipse.emf.teneo.jpox.mapping.AnyTypeObject">
					<extension vendor-name="jpox" key="cache-lazy-loading" value="true"/>
				</collection>
				<join name="statesbycountry_simpleunions"/>
				<element>
					<embedded>
						<field name="classifier">
							<column name="CLASSIFIER"/>
						</field>
						<field name="value">
							<column name="VALUE"/>
						</field>
					</embedded>
				</element>
				<order column="STATESBYCOUNTRY_SIMPLEUNIONS_IDX"/>
			</field>
			<field name="simpleStringUnion" persistence-modifier="persistent" null-value="exception"/>
			<field name="simpleStringUnions" persistence-modifier="persistent">
				<collection element-type="java.lang.String">
					<extension vendor-name="jpox" key="cache-lazy-loading" value="true"/>
				</collection>
				<join name="statesbycountry_simplestringunions"/>
				<order column="STATESBYCOUNTRY_SIMPLESTRINGUNIONS_IDX"/>
			</field>
		</class>
	</package>
</jdo>

Back to the top