Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b45469223ca6788d202e25ecb50facd32e4f6e69 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">

<!--	Generated by Elver Store tools on Thu Aug 24 21:16:26 CEST 2006 -->
<hibernate-mapping>
	<class entity-name="SimpleList" abstract="false" lazy="false" table="`simplelist`">
		<id type="long" name="e_id" column="e_id">
			<generator class="native"/>
		</id>
		<version name="e_version" column="e_version" access="org.eclipse.emf.teneo.hibernate.mapping.property.VersionPropertyHandler"/>
		<property name="code" type="java.lang.String" lazy="false" column="`code`" not-null="false"/>
		<list name="boo" lazy="true" cascade="all,delete-orphan">
			<key update="true">
				<column name="`boo_id`" not-null="true" unique="false"/>
			</key>
			<list-index column="`simplelist_boo_idx`"/>
			<element type="boolean"/>
		</list>
		<list name="byt" lazy="true" cascade="all,delete-orphan">
			<key update="true">
				<column name="`byt_id`" not-null="true" unique="false"/>
			</key>
			<list-index column="`simplelist_byt_idx`"/>
			<element type="java.lang.Byte"/>
		</list>
		<list name="doubl" lazy="true" cascade="all,delete-orphan">
			<key update="true">
				<column name="`doubl_id`" not-null="true" unique="false"/>
			</key>
			<list-index column="`simplelist_doubl_idx`"/>
			<element type="java.lang.Double"/>
		</list>
		<list name="floa" lazy="true" cascade="all,delete-orphan">
			<key update="true">
				<column name="`floa_id`" not-null="true" unique="false"/>
			</key>
			<list-index column="`simplelist_floa_idx`"/>
			<element type="java.lang.Float"/>
		</list>
		<list name="inte" lazy="true" cascade="all,delete-orphan">
			<key update="true">
				<column name="`inte_id`" not-null="true" unique="false"/>
			</key>
			<list-index column="`simplelist_inte_idx`"/>
			<element type="java.lang.Integer"/>
		</list>
		<list name="long" table="longNum" lazy="true" cascade="all,delete-orphan">
			<key/>
			<list-index column="`simplelist_long_idx`"/>
			<element type="java.lang.Long"/>
		</list>
		<list name="shor" lazy="true" cascade="all,delete-orphan">
			<key update="true">
				<column name="`shor_id`" not-null="true" unique="false"/>
			</key>
			<list-index column="`simplelist_shor_idx`"/>
			<element type="short"/>
		</list>
		<list name="dat" lazy="true" cascade="all,delete-orphan">
			<key update="true">
				<column name="`dat_id`" not-null="true" unique="false"/>
			</key>
			<list-index column="`simplelist_dat_idx`"/>
			<element type="java.util.Date"/>
		</list>
		<list name="limitedstring" lazy="true" cascade="all,delete-orphan">
			<key update="true">
				<column name="`limitedstring_id`" not-null="true" unique="false"/>
			</key>
			<list-index column="`simplelist_limitedstring_idx`"/>
			<element type="java.lang.String"/>
		</list>
	</class>
	<class entity-name="SimpleType" abstract="false" lazy="false" table="`simpletype`">
		<id type="long" name="e_id" column="e_id">
			<generator class="native"/>
		</id>
		<version name="e_version" column="e_version" access="org.eclipse.emf.teneo.hibernate.mapping.property.VersionPropertyHandler"/>
		<property name="code" type="java.lang.String" lazy="false" column="`code`" not-null="false"/>
		<property name="boo" type="boolean" lazy="false" column="`boo`" not-null="false"/>
		<property name="byt" type="byte" lazy="false" column="`byt`" not-null="false"/>
		<property name="doubl" type="double" lazy="false" column="`doubl`" not-null="false"/>
		<property name="float" type="float" lazy="false" column="`float`" not-null="false"/>
		<property name="inte" type="int" lazy="false" column="`inte`" not-null="false"/>
		<property name="lon" type="long" lazy="false" column="`lon`" not-null="false"/>
		<property name="shor" type="short" lazy="false" column="`shor`" not-null="false"/>
		<property name="enu" lazy="false" access="org.eclipse.emf.teneo.hibernate.mapping.EFeatureAccessor" column="`enu`" not-null="false" unique="false">
			<type name="org.eclipse.emf.teneo.hibernate.mapping.ENumUserType">
				<param name="enumClass">org.eclipse.emf.teneo.samples.emf.schemaconstructs.simpletypes.SimpleEnum</param>
			</type>
		</property>
		<property name="dat" type="date" lazy="false" column="`dat`" not-null="true" unique="false"/>
		<property name="limitedstring" type="java.lang.String" lazy="false" column="`limitedstring`" not-null="true"/>
	</class>
	<class entity-name="SimpleTypeObject" abstract="false" lazy="false" table="`simpletypeobject`">
		<id type="long" name="e_id" column="e_id">
			<generator class="native"/>
		</id>
		<version name="e_version" column="e_version" access="org.eclipse.emf.teneo.hibernate.mapping.property.VersionPropertyHandler"/>
		<property name="code" type="java.lang.String" lazy="false" column="`code`" not-null="false"/>
		<property name="boo" type="java.lang.Boolean" lazy="false" column="`boo`" not-null="false"/>
		<property name="byt" type="java.lang.Byte" lazy="false" column="`byt`" not-null="false"/>
		<property name="doubl" type="java.lang.Double" lazy="false" column="`doubl`" not-null="false"/>
		<property name="float" type="java.lang.Float" lazy="false" column="`float`" not-null="false"/>
		<property name="inte" type="java.lang.Integer" lazy="false" column="`inte`" not-null="false"/>
		<property name="lon" type="java.lang.Long" lazy="false" column="`lon`" not-null="false"/>
		<property name="shor" type="java.lang.Short" lazy="false" column="`shor`" not-null="false"/>
		<property name="enu" lazy="false" access="org.eclipse.emf.teneo.hibernate.mapping.EFeatureAccessor" column="`enu`" not-null="false" unique="false">
			<type name="org.eclipse.emf.teneo.hibernate.mapping.ENumUserType">
				<param name="enumClass">org.eclipse.emf.teneo.samples.emf.schemaconstructs.simpletypes.SimpleEnum</param>
			</type>
		</property>
		<property name="dat" type="date" lazy="false" column="`dat`" not-null="false" unique="false"/>
	</class>
</hibernate-mapping>

Back to the top