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

<!--	Generated by Teneo on Sat Nov 11 22:58:57 CET 2006 -->
<jdo>
	<package name="org.eclipse.emf.teneo.samples.emf.annotations.manytomany.impl">
		<class name="org.eclipse.emf.teneo.samples.emf.annotations.manytomany.impl.CntrImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="cntr" identity-type="datastore">
			<implements name="org.eclipse.emf.teneo.samples.emf.annotations.manytomany.Cntr"/>
			<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="Cntr"/>
			</inheritance>
			<version strategy="version-number" column="e_version"/>
			<field name="rght" persistence-modifier="persistent" delete-action="restrict">
				<collection element-type="org.eclipse.emf.teneo.samples.emf.annotations.manytomany.impl.RghtImpl" dependent-element="false">
					<extension vendor-name="jpox" key="cache-lazy-loading" value="false"/>
				</collection>
				<join/>
			</field>
			<field name="lft" persistence-modifier="persistent" delete-action="restrict">
				<collection element-type="org.eclipse.emf.teneo.samples.emf.annotations.manytomany.impl.LftImpl" dependent-element="false">
					<extension vendor-name="jpox" key="cache-lazy-loading" value="true"/>
				</collection>
				<join/>
			</field>
		</class>
		<class name="org.eclipse.emf.teneo.samples.emf.annotations.manytomany.impl.LftImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="lft" identity-type="datastore">
			<implements name="org.eclipse.emf.teneo.samples.emf.annotations.manytomany.Lft"/>
			<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="Lft"/>
			</inheritance>
			<version strategy="version-number" column="e_version"/>
			<field name="cntr" persistence-modifier="persistent" delete-action="restrict">
				<collection element-type="org.eclipse.emf.teneo.samples.emf.annotations.manytomany.impl.CntrImpl" dependent-element="false">
					<extension vendor-name="jpox" key="cache-lazy-loading" value="true"/>
				</collection>
				<join/>
			</field>
		</class>
		<class name="org.eclipse.emf.teneo.samples.emf.annotations.manytomany.impl.RghtImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="rght" identity-type="datastore">
			<implements name="org.eclipse.emf.teneo.samples.emf.annotations.manytomany.Rght"/>
			<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="Rght"/>
			</inheritance>
			<version strategy="version-number" column="e_version"/>
			<field name="cntr" persistence-modifier="persistent" delete-action="restrict">
				<collection element-type="org.eclipse.emf.teneo.samples.emf.annotations.manytomany.impl.CntrImpl" dependent-element="false">
					<extension vendor-name="jpox" key="cache-lazy-loading" value="true"/>
				</collection>
				<join/>
			</field>
		</class>
	</package>
</jdo>

Back to the top