Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 33a57f9a3031d73af6f635a6b6a601f9027cf471 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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:14:19 CEST 2006 -->
<hibernate-mapping>
	<class entity-name="Person" abstract="false" lazy="false" table="`person`">
		<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="name" type="org.eclipse.emf.teneo.samples.emf.hibernate.usertype.NameType" lazy="false" not-null="false" insert="true" update="true" unique="false">
			<column not-null="false" unique="false" name="`first_name`"/>
			<column not-null="false" unique="false" name="`last_name`"/>
		</property>
	</class>
</hibernate-mapping>

Back to the top