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

<!--	Generated by Teneo on Wed Jul 11 19:05:12 CEST 2007 -->
<jdo>
	<package name="org.eclipse.emf.teneo.samples.emf.sample.product.impl">
		<class name="org.eclipse.emf.teneo.samples.emf.sample.product.impl.ProductTypeImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="producttype" identity-type="application">
			<implements name="org.eclipse.emf.teneo.samples.emf.sample.product.ProductType"/>
			<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="code" persistence-modifier="persistent" null-value="none"/>
			<field name="codeESet" persistence-modifier="persistent"/>
			<field name="id" persistence-modifier="persistent" primary-key="true"/>
			<field name="supplier" persistence-modifier="persistent" delete-action="restrict" null-value="exception">
				<foreign-key/>
				<column name="suppliertype_supplier_e_id" allows-null="false"/>
				<extension vendor-name="jpox" key="implementation-classes" value="org.eclipse.emf.teneo.samples.emf.sample.product.impl.SupplierTypeImpl"/>
			</field>
			<field name="price" persistence-modifier="persistent" null-value="none"/>
			<field name="priceESet" persistence-modifier="persistent"/>
			<field name="createdOn" persistence-modifier="persistent" null-value="exception" embedded="true"/>
			<field name="anyOne" persistence-modifier="persistent" delete-action="restrict" null-value="none">
				<foreign-key/>
				<extension vendor-name="jpox" key="implementation-classes" value="org.eclipse.emf.teneo.jpox.mapping.AnyTypeEObject"/>
			</field>
			<field name="anyList" persistence-modifier="persistent" table="producttype_anylist" embedded="true" delete-action="restrict">
				<collection element-type="org.eclipse.emf.teneo.jpox.mapping.AnyTypeEObject">
					<extension vendor-name="jpox" key="cache-lazy-loading" value="true"/>
				</collection>
				<join/>
				<element>
					<embedded>
						<field name="classifier">
							<column name="CLASSIFIER"/>
						</field>
						<field name="value">
							<column name="VALUE"/>
						</field>
					</embedded>
				</element>
				<order column="PRODUCTTYPE_ANYLIST_IDX"/>
			</field>
		</class>
		<class name="org.eclipse.emf.teneo.samples.emf.sample.product.impl.SupplierTypeImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="suppliertype" identity-type="datastore">
			<implements name="org.eclipse.emf.teneo.samples.emf.sample.product.SupplierType"/>
			<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="exception"/>
			<field name="noOfEmployees" persistence-modifier="persistent" null-value="none"/>
			<field name="noOfEmployeesESet" persistence-modifier="persistent"/>
		</class>
		<class name="org.eclipse.emf.teneo.samples.emf.sample.product.impl.ClassificationTypeImpl" requires-extent="true" persistence-modifier="persistence-capable" detachable="true" table="classificationtype" identity-type="datastore">
			<implements name="org.eclipse.emf.teneo.samples.emf.sample.product.ClassificationType"/>
			<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="nameESet" persistence-modifier="persistent"/>
		</class>
	</package>
</jdo>

Back to the top