Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormtaal2006-08-03 09:57:10 +0000
committermtaal2006-08-03 09:57:10 +0000
commit32973f4ea726bf2c8e335e4361d15efe0ff22f5e (patch)
tree6029dfee2153213959589a42ac0ac1b94b586064 /tests/org.eclipse.emf.teneo.hibernate.test/run/org.eclipse.emf.teneo.test.emf.sample.LibraryQualifyActionHB/mysql_a_o/hibernate.hbm.xml
parentb094afada9066a99aa0667923ed8738762e083d6 (diff)
downloadorg.eclipse.emf.teneo-32973f4ea726bf2c8e335e4361d15efe0ff22f5e.tar.gz
org.eclipse.emf.teneo-32973f4ea726bf2c8e335e4361d15efe0ff22f5e.tar.xz
org.eclipse.emf.teneo-32973f4ea726bf2c8e335e4361d15efe0ff22f5e.zip
Reworked options, removed redundant option
Change package.jdo generation and copy of package.jdo to class path for jpox testcases. Added elver website to org.eclipse.emf.teneo.doc Solved small issue in jpox ElistWrapper which used an EList as delegate, this could result in double notifications
Diffstat (limited to 'tests/org.eclipse.emf.teneo.hibernate.test/run/org.eclipse.emf.teneo.test.emf.sample.LibraryQualifyActionHB/mysql_a_o/hibernate.hbm.xml')
-rw-r--r--tests/org.eclipse.emf.teneo.hibernate.test/run/org.eclipse.emf.teneo.test.emf.sample.LibraryQualifyActionHB/mysql_a_o/hibernate.hbm.xml14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/org.eclipse.emf.teneo.hibernate.test/run/org.eclipse.emf.teneo.test.emf.sample.LibraryQualifyActionHB/mysql_a_o/hibernate.hbm.xml b/tests/org.eclipse.emf.teneo.hibernate.test/run/org.eclipse.emf.teneo.test.emf.sample.LibraryQualifyActionHB/mysql_a_o/hibernate.hbm.xml
index 6d7dd1ea3..94f14a1d3 100644
--- a/tests/org.eclipse.emf.teneo.hibernate.test/run/org.eclipse.emf.teneo.test.emf.sample.LibraryQualifyActionHB/mysql_a_o/hibernate.hbm.xml
+++ b/tests/org.eclipse.emf.teneo.hibernate.test/run/org.eclipse.emf.teneo.test.emf.sample.LibraryQualifyActionHB/mysql_a_o/hibernate.hbm.xml
@@ -1,14 +1,14 @@
<?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 Mon Jul 24 01:46:34 CEST 2006 -->
+<!-- Generated by Elver Store tools on Wed Aug 02 22:37:59 CEST 2006 -->
<hibernate-mapping>
<class entity-name="library.Book" abstract="false" lazy="false" discriminator-value="Book" table="`book`">
- <id type="long" name="e_id">
+ <id type="long" name="e_id" column="e_id">
<generator class="native"/>
</id>
<discriminator column="`dtype`" type="string"/>
- <version name="e_version" access="org.eclipse.emf.teneo.hibernate.mapping.property.VersionPropertyHandler"/>
+ <version name="e_version" column="e_version" access="org.eclipse.emf.teneo.hibernate.mapping.property.VersionPropertyHandler"/>
<property name="title" type="java.lang.String" lazy="false" column="`title`" not-null="true" unique="false"/>
<property name="pages" type="int" lazy="false" column="`pages`" not-null="false" unique="false"/>
<property name="category" lazy="false" access="org.eclipse.emf.teneo.hibernate.mapping.EFeatureAccessor" column="`category`" not-null="false" unique="false">
@@ -21,11 +21,11 @@
</many-to-one>
</class>
<class entity-name="library.Library" abstract="false" lazy="false" discriminator-value="Library" table="`library`">
- <id type="long" name="e_id">
+ <id type="long" name="e_id" column="e_id">
<generator class="native"/>
</id>
<discriminator column="`dtype`" type="string"/>
- <version name="e_version" access="org.eclipse.emf.teneo.hibernate.mapping.property.VersionPropertyHandler"/>
+ <version name="e_version" column="e_version" access="org.eclipse.emf.teneo.hibernate.mapping.property.VersionPropertyHandler"/>
<property name="name" type="java.lang.String" lazy="false" column="`name`" not-null="true" unique="false"/>
<list name="writers" lazy="true" cascade="all,delete-orphan">
<key update="true">
@@ -43,11 +43,11 @@
</list>
</class>
<class entity-name="library.Writer" abstract="false" lazy="false" discriminator-value="Writer" table="`writer`">
- <id type="long" name="e_id">
+ <id type="long" name="e_id" column="e_id">
<generator class="native"/>
</id>
<discriminator column="`dtype`" type="string"/>
- <version name="e_version" access="org.eclipse.emf.teneo.hibernate.mapping.property.VersionPropertyHandler"/>
+ <version name="e_version" column="e_version" access="org.eclipse.emf.teneo.hibernate.mapping.property.VersionPropertyHandler"/>
<property name="name" type="java.lang.String" lazy="false" column="`name`" not-null="true" unique="false"/>
<list name="books" lazy="true" cascade="merge,persist,save-update,lock,refresh">
<key update="true">

Back to the top