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

<!--	Generated by Teneo on Wed Jul 18 17:06:58 CEST 2007 -->
<jdo>
	<package name="org.eclipse.emf.teneo.samples.issues.generaltest.impl">
		<class name="org.eclipse.emf.teneo.samples.issues.generaltest.impl.AddressImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="address" identity-type="datastore">
			<implements name="org.eclipse.emf.teneo.samples.issues.generaltest.Address"/>
			<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="name" persistence-modifier="persistent" null-value="none"/>
			<field name="contacts" persistence-modifier="persistent" delete-action="restrict">
				<collection element-type="org.eclipse.emf.teneo.samples.issues.generaltest.impl.ContactImpl" dependent-element="true">
					<extension vendor-name="jpox" key="cache-lazy-loading" value="true"/>
				</collection>
				<order column="ADDRESS_CONTACTS_IDX"/>
				<foreign-key delete-action="cascade" update-action="cascade"/>
			</field>
			<field name="state" persistence-modifier="none"/>
			<field name="country" persistence-modifier="persistent" delete-action="restrict" null-value="none">
				<foreign-key/>
				<column name="country_country_e_id" allows-null="true"/>
				<extension vendor-name="jpox" key="implementation-classes" value="org.eclipse.emf.teneo.samples.issues.generaltest.impl.CountryImpl"/>
			</field>
			<field name="city" persistence-modifier="persistent" dependent="true" delete-action="restrict" null-value="none">
				<foreign-key delete-action="cascade" update-action="cascade"/>
				<column name="city_city_e_id" allows-null="true"/>
				<extension vendor-name="jpox" key="implementation-classes" value="org.eclipse.emf.teneo.samples.issues.generaltest.impl.CityImpl"/>
			</field>
			<field name="tc" persistence-modifier="none"/>
			<field name="volatileString" persistence-modifier="none"/>
		</class>
		<class name="org.eclipse.emf.teneo.samples.issues.generaltest.impl.ContactImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="contact" identity-type="datastore">
			<implements name="org.eclipse.emf.teneo.samples.issues.generaltest.Contact"/>
			<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="name" persistence-modifier="persistent" null-value="none"/>
		</class>
		<class name="org.eclipse.emf.teneo.samples.issues.generaltest.impl.CountryImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="country" identity-type="datastore">
			<implements name="org.eclipse.emf.teneo.samples.issues.generaltest.Country"/>
			<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="name" persistence-modifier="persistent" null-value="none"/>
		</class>
		<class name="org.eclipse.emf.teneo.samples.issues.generaltest.impl.CityImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="city" identity-type="datastore">
			<implements name="org.eclipse.emf.teneo.samples.issues.generaltest.City"/>
			<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="name" persistence-modifier="persistent" null-value="none"/>
		</class>
		<class name="org.eclipse.emf.teneo.samples.issues.generaltest.impl.TCImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="tc" identity-type="datastore">
			<implements name="org.eclipse.emf.teneo.samples.issues.generaltest.TC"/>
			<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="name" persistence-modifier="persistent" null-value="none"/>
		</class>
	</package>
</jdo>

Back to the top