Author: vyemialyanchyk
Date: 2011-01-14 14:36:07 -0500 (Fri, 14 Jan 2011)
New Revision: 28251
Modified:
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/Atypes.hbm.xml
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/dynamicentity/tuplizer/Customer.hbm.xml
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/instrument/domain/Problematic.hbm.xml
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobHolder.java
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobMappings.hbm.xml
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/rowid/Point.hbm.xml
Log:
https://issues.jboss.org/browse/JBIDE-8113 - fixed
Modified:
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/Atypes.hbm.xml
===================================================================
---
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/Atypes.hbm.xml 2011-01-14
19:21:51 UTC (rev 28250)
+++
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/cut/Atypes.hbm.xml 2011-01-14
19:36:07 UTC (rev 28251)
@@ -4,5 +4,5 @@
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="mapping.cut">
- <typedef name="money"
class="org.hibernate.test.cut.MonetoryAmountUserType"/>
+ <typedef name="money"
class="mapping.cut.MonetoryAmountUserType"/>
</hibernate-mapping>
\ No newline at end of file
Modified:
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/dynamicentity/tuplizer/Customer.hbm.xml
===================================================================
---
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/dynamicentity/tuplizer/Customer.hbm.xml 2011-01-14
19:21:51 UTC (rev 28250)
+++
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/dynamicentity/tuplizer/Customer.hbm.xml 2011-01-14
19:36:07 UTC (rev 28251)
@@ -12,7 +12,7 @@
entity mapping to use) given an instance of one of these proxies.
-->
<class name="Person" table="t_person"
discriminator-value="person" abstract="false">
- <tuplizer
class="org.hibernate.test.dynamicentity.tuplizer.MyEntityTuplizer"
entity-mode="pojo"/>
+ <tuplizer class="mapping.dynamicentity.tuplizer.MyEntityTuplizer"
entity-mode="pojo"/>
<id name="id">
<generator class="native"/>
</id>
@@ -27,14 +27,14 @@
</set>
<subclass name="Customer" discriminator-value="customer"
abstract="false">
- <tuplizer
class="org.hibernate.test.dynamicentity.tuplizer.MyEntityTuplizer"
entity-mode="pojo"/>
+ <tuplizer
class="mapping.dynamicentity.tuplizer.MyEntityTuplizer"
entity-mode="pojo"/>
<many-to-one name="company" cascade="none"
column="comp_id"/>
</subclass>
</class>
<!-- Company interface mapping -->
<class name="Company" table="t_company"
abstract="false">
- <tuplizer
class="org.hibernate.test.dynamicentity.tuplizer.MyEntityTuplizer"
entity-mode="pojo"/>
+ <tuplizer class="mapping.dynamicentity.tuplizer.MyEntityTuplizer"
entity-mode="pojo"/>
<id name="id">
<generator class="native"/>
</id>
@@ -42,7 +42,7 @@
</class>
<class name="Address" table="t_address"
abstract="false">
- <tuplizer
class="org.hibernate.test.dynamicentity.tuplizer.MyEntityTuplizer"
entity-mode="pojo"/>
+ <tuplizer class="mapping.dynamicentity.tuplizer.MyEntityTuplizer"
entity-mode="pojo"/>
<id name="id">
<generator class="native"/>
</id>
Modified:
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/instrument/domain/Problematic.hbm.xml
===================================================================
---
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/instrument/domain/Problematic.hbm.xml 2011-01-14
19:21:51 UTC (rev 28250)
+++
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/instrument/domain/Problematic.hbm.xml 2011-01-14
19:36:07 UTC (rev 28251)
@@ -9,6 +9,6 @@
<generator class="increment" />
</id>
<property name="name" type="string"
column="NAME" />
- <property name="bytes"
type="org.hibernate.test.instrument.domain.CustomBlobType"
column="DATA" lazy="true" />
+ <property name="bytes"
type="mapping.instrument.domain.CustomBlobType" column="DATA"
lazy="true" />
</class>
</hibernate-mapping>
Modified:
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobHolder.java
===================================================================
---
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobHolder.java 2011-01-14
19:21:51 UTC (rev 28250)
+++
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobHolder.java 2011-01-14
19:36:07 UTC (rev 28251)
@@ -20,7 +20,7 @@
* <p/>
* {@link #materializedBlob} is used to hold BLOB data that is materialized
* into a byte array immediately; it is mapped via the
- * {@link org.hibernate.test.lob.MaterializedBlobType}.
+ * {@link org.hibernate.type.MaterializedBlobType}.
* <p/>
* {@link #blobLocator} is used to hold BLOB data that is materialized lazily
* via a JDBC BLOB locator; it is mapped via the
Modified:
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobMappings.hbm.xml
===================================================================
---
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobMappings.hbm.xml 2011-01-14
19:21:51 UTC (rev 28250)
+++
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/lob/LobMappings.hbm.xml 2011-01-14
19:36:07 UTC (rev 28251)
@@ -15,7 +15,7 @@
<property name="materializedClob" column="MAT_CLOB_DATA"
type="text" length="15000"/>
<property name="clobLocator" column="CLOB_DATA"
type="clob" length="15000" />
- <property name="materializedBlob" column="MAT_BLOB_DATA"
type="org.hibernate.test.lob.MaterializedBlobType"
length="15000"/>
+ <property name="materializedBlob" column="MAT_BLOB_DATA"
type="org.hibernate.type.MaterializedBlobType" length="15000"/>
<property name="blobLocator" column="BLOB_DATA"
type="blob" length="15000" />
</class>
Modified:
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/rowid/Point.hbm.xml
===================================================================
---
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/rowid/Point.hbm.xml 2011-01-14
19:21:51 UTC (rev 28250)
+++
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/res/project/src/mapping/rowid/Point.hbm.xml 2011-01-14
19:36:07 UTC (rev 28251)
@@ -9,7 +9,7 @@
<hibernate-mapping package="mapping.rowid">
- <typedef name="rowid"
class="org.hibernate.test.rowid.RowIdType"/>
+ <typedef name="rowid" class="mapping.rowid.RowIdType"/>
<class name="Point" rowid="rowid">
<composite-id>