Hibernate SVN: r14740 - annotations/trunk.
by hibernate-commits@lists.jboss.org
Author: hardy.ferentschik
Date: 2008-06-05 05:10:41 -0400 (Thu, 05 Jun 2008)
New Revision: 14740
Modified:
annotations/trunk/build.xml
annotations/trunk/common-build.xml
Log:
Build file cleanup:
- removed the part which was using the removed lib.dir
Modified: annotations/trunk/build.xml
===================================================================
--- annotations/trunk/build.xml 2008-06-05 08:44:13 UTC (rev 14739)
+++ annotations/trunk/build.xml 2008-06-05 09:10:41 UTC (rev 14740)
@@ -64,7 +64,6 @@
</tstamp>
<!-- available file="${jpa-api.jar}" type="file" property="jpa-api.jar.available"/>
<available file="${commons-annotations.jar}" type="file" property="commons-annotations.jar.available"/ -->
- <mkdir dir="${lib.dir}/test"/>
<mkdir dir="${ivy.dep.dir}/core"/>
<mkdir dir="${ivy.dep.dir}/test"/>
<ivy:configure file="${ivy.jar.dir}/ivyconf.xml" />
@@ -169,7 +168,7 @@
</target>
<!-- Some of this can probably be moved to common-build... -->
- <target name="dist" depends="get.deps.core,get.deps.test,jar,javadoc,jpa-javadoc,copysource,copytest,copylib,extras"
+ <target name="dist" depends="get.deps.core,get.deps.test,jar,javadoc,jpa-javadoc,copysource,copytest,extras"
description="Build everything">
<ant inheritall="false" dir="${basedir}/doc/reference"/>
@@ -202,15 +201,7 @@
<include name="*.jar"/>
</fileset>
</copy>
- <copy todir="${dist.lib.dir}/test" failonerror="false">
- <fileset file="${lib.dir}/test/*.jar"/>
- </copy>
- <mkdir dir="${dist.lib.dir}/build"/>
- <copy todir="${dist.lib.dir}/build" failonerror="false">
- <fileset file="${lib.dir}/build/*.jar"/>
- </copy>
-
<!-- ivy uses the module name without hibernate- (to mimic the directory names). Revert the situation -->
<move file="${dist.lib.dir}/commons-annotations.jar" tofile="${dist.lib.dir}/hibernate-commons-annotations.jar"
failonerror="false"/>
Modified: annotations/trunk/common-build.xml
===================================================================
--- annotations/trunk/common-build.xml 2008-06-05 08:44:13 UTC (rev 14739)
+++ annotations/trunk/common-build.xml 2008-06-05 09:10:41 UTC (rev 14740)
@@ -13,7 +13,6 @@
<property name="src.dir" location="src/java"/>
<property name="test.dir" location="src/test"/>
- <property name="lib.dir" location="lib"/>
<property name="build.dir" location="build"/>
<property name="classes.dir" location="${build.dir}/classes"/>
<property name="testclasses.dir" location="${build.dir}/testclasses"/>
@@ -44,9 +43,6 @@
<property name="pom.file" value="pom.xml"/>
<property name="src.jar" value="${build.dir}/src.jar"/>
- <!-- build related properties -->
- <property name="build.lib.dir" value="${lib.dir}/build"/>
-
<taskdef name="junit" classname="org.apache.tools.ant.taskdefs.optional.junit.JUnitTask">
</taskdef>
@@ -71,9 +67,6 @@
<artifact:remoteRepository id="offline.repository.jboss.org" url="file://${offline.repository.jboss.org}" />
<path id="lib.class.path">
- <fileset dir="${lib.dir}">
- <include name="*.jar"/>
- </fileset>
<path refid="lib.moduleclass.path"/>
<pathelement path="${clover.jar}"/>
</path>
@@ -120,9 +113,6 @@
<taskdef resource="clovertasks"/>
<path id="junit.classpath">
- <fileset dir="${lib.dir}">
- <include name="*.jar"/>
- </fileset>
<pathelement path="${classes.dir}"/>
<pathelement path="${testclasses.dir}"/>
<path refid="lib.class.path"/>
@@ -268,18 +258,6 @@
</copy>
</target>
- <target name="copylib" description="Copy jars to lib dir">
- <mkdir dir="${dist.lib.dir}"/>
- <copy todir="${dist.lib.dir}">
- <fileset dir="${lib.dir}">
- <include name="*.jar"/>
- <exclude name="log4j.jar"/>
- <exclude name="checkstyle*.jar"/>
- <include name="*.txt"/>
- </fileset>
- </copy>
- </target>
-
<target name="copydoc" description="Copy doc to dist dir" if="copy.doc">
<mkdir dir="${dist.doc.dir}"/>
<copy todir="${dist.doc.dir}">
@@ -340,7 +318,7 @@
</replace>
</target>
- <target name="dist" depends="jar,javadoc,copysource,copylib,copydoc,extras" description="Build everything">
+ <target name="dist" depends="jar,javadoc,copysource,copydoc,extras" description="Build everything">
<zip zipfile = "${dist.dir}-${version}.zip">
<zipfileset prefix="${name}-${version}" dir="${dist.dir}"/>
</zip>
16 years, 6 months
Hibernate SVN: r14739 - annotations/trunk.
by hibernate-commits@lists.jboss.org
Author: hardy.ferentschik
Date: 2008-06-05 04:44:13 -0400 (Thu, 05 Jun 2008)
New Revision: 14739
Removed:
annotations/trunk/lib/
Log:
Build file cleanup:
- removed obsolete lib directory
16 years, 6 months
Hibernate SVN: r14738 - annotations/trunk.
by hibernate-commits@lists.jboss.org
Author: hardy.ferentschik
Date: 2008-06-05 04:43:42 -0400 (Thu, 05 Jun 2008)
New Revision: 14738
Modified:
annotations/trunk/
annotations/trunk/build.xml
annotations/trunk/common-build.xml
Log:
Build file cleanup:
- removed obsolete lib directory
- introduced a variable for the test reports
- moved test reports into build directory
- removed duplicated junitsingle target
Property changes on: annotations/trunk
___________________________________________________________________
Name: svn:ignore
- target
test_output
build
.*
+ target
build
.*
Modified: annotations/trunk/build.xml
===================================================================
--- annotations/trunk/build.xml 2008-06-05 08:06:33 UTC (rev 14737)
+++ annotations/trunk/build.xml 2008-06-05 08:43:42 UTC (rev 14738)
@@ -135,64 +135,6 @@
</javac>
</target>
-
- <!-- target name="junit" depends="compiletest">
- <mkdir dir="test_output"/>
- <junit fork="yes" printsummary="yes" haltonfailure="yes"
- forkmode="perBatch">
- <classpath>
- <fileset dir="${jdbc.dir}">
- <include name="**/*.jar"/>
- <include name="**/*.zip"/>
- </fileset>
- <path refid="lib.class.path"/>
- <pathelement path="${classes.dir}"/>
- <pathelement path="${src.dir}"/>
- <pathelement path="${test.dir}"/>
- </classpath>
- <formatter type="plain"/>
- <formatter type="xml"/>
- <batchtest fork="yes" todir="test_output" haltonfailure="no">
- <fileset dir="${classes.dir}">
- <include name="**/*Test.class"/>
- </fileset>
- </batchtest>
- </junit>
- </target -->
-
- <!-- Run a single unit test. -->
- <target name="junitsingle" depends="compiletest"
- description="Run a single test suite (requires testname and jdbc.driver properties)">
- <mkdir dir="test_output"/>
- <junit printsummary="yes" fork="yes" haltonfailure="yes">
- <classpath>
- <fileset dir="${jdbc.dir}">
- <include name="**/*.jar"/>
- <include name="**/*.zip"/>
- </fileset>
- <path refid="lib.class.path"/>
- <pathelement path="${classes.dir}"/>
- <pathelement path="${src.dir}"/>
- <!-- pick up properties from here -->
- <pathelement path="${test.dir}"/>
- <!-- pick up mappings from here -->
- </classpath>
- <formatter type="plain"/>
- <formatter type="xml"/>
- <test fork="yes" todir="test_output" haltonfailure="no" name="${testname}"/>
- </junit>
- </target>
-
- <!-- target name="report">
- <mkdir dir="test_output"/>
- <junitreport todir="test_output">
- <fileset dir="test_output">
- <include name="TEST-*.xml"/>
- </fileset>
- <report format="frames" todir="test_output/report"/>
- </junitreport>
- </target -->
-
<target name="jar" depends="compile" description="Build the distribution .jar file">
<mkdir dir="${classes.dir}/META-INF"/>
<manifest file="${classes.dir}/META-INF/MANIFEST.MF">
@@ -216,10 +158,6 @@
/>
</target>
- <!-- target name="javadoc" description="Compile the Javadoc API documentation to dist dir">
- <echo>Skipping java doc since ant's javadoc task cannot handle an alternative javadoc</echo>
- </target -->
-
<target name="jpa-javadoc" if="jpa-present">
<mkdir dir="${jpa-javadoc.dir}"/>
<ant dir="../jpa-api" target="javadoc" inheritAll="false"/>
Modified: annotations/trunk/common-build.xml
===================================================================
--- annotations/trunk/common-build.xml 2008-06-05 08:06:33 UTC (rev 14737)
+++ annotations/trunk/common-build.xml 2008-06-05 08:43:42 UTC (rev 14738)
@@ -16,7 +16,8 @@
<property name="lib.dir" location="lib"/>
<property name="build.dir" location="build"/>
<property name="classes.dir" location="${build.dir}/classes"/>
- <property name="testclasses.dir" location="${build.dir}/testclasses"/>
+ <property name="testclasses.dir" location="${build.dir}/testclasses"/>
+ <property name="testreports.dir" location="${build.dir}/test-reports"/>
<property name="dist.target.dir" location="target"/>
<property name="dist.dir" location="${dist.target.dir}/${name}"/>
<property name="instrumenttest.out.dir" value="instrumenttestout"/>
@@ -47,21 +48,9 @@
<property name="build.lib.dir" value="${lib.dir}/build"/>
<taskdef name="junit" classname="org.apache.tools.ant.taskdefs.optional.junit.JUnitTask">
- <classpath>
- <fileset dir="${common-build.basedir}/lib/build"> <!-- ${build.lib.dir} fails in reference doc build -->
- <include name="junit-*.jar"/>
- <include name="ant-junit-*.jar"/>
- </fileset>
- </classpath>
</taskdef>
<taskdef name="junitreport" classname="org.apache.tools.ant.taskdefs.optional.junit.XMLResultAggregator">
- <classpath>
- <fileset dir="${common-build.basedir}/lib/build"> <!-- ${build.lib.dir} fails in reference doc build -->
- <include name="junit-*.jar"/>
- <include name="ant-junit-*.jar"/>
- </fileset>
- </classpath>
</taskdef>
<!-- ivy load -->
@@ -377,12 +366,12 @@
</target>
<target name="junit" depends="compiletest">
- <mkdir dir="test_output"/>
+ <mkdir dir="${testreports.dir}"/>
<junit printsummary="yes" haltonfailure="yes" forkmode="once">
<classpath refid="junit.classpath"/>
<formatter type="plain"/>
<formatter type="xml"/>
- <batchtest fork="yes" todir="test_output" haltonfailure="no">
+ <batchtest fork="yes" todir="${testreports.dir}" haltonfailure="no">
<fileset refid="junit.batchtestset"/>
</batchtest>
</junit>
@@ -390,12 +379,12 @@
<!-- Run a single unit test. -->
<target name="junitsingle" depends="compiletest" description="Run a single test suite (requires testname and jdbc.driver properties)">
- <mkdir dir="test_output"/>
+ <mkdir dir="${testreports.dir}"/>
<junit printsummary="yes" fork="yes" haltonfailure="yes">
<classpath refid="junit.classpath"/>
<formatter type="plain"/>
<formatter type="xml"/>
- <test fork="yes" todir="test_output" haltonfailure="no" name="${testname}"/>
+ <test fork="yes" todir="${testreports.dir}" haltonfailure="no" name="${testname}"/>
</junit>
</target>
@@ -416,11 +405,11 @@
</target>
<target name="junitreport" depends="">
- <junitreport todir="./test_output">
- <fileset dir="test_output">
+ <junitreport todir="${testreports.dir}">
+ <fileset dir="${testreports.dir}">
<include name="TEST-*.xml"/>
</fileset>
- <report format="frames" todir="./test_output"/>
+ <report format="frames" todir="${testreports.dir}"/>
</junitreport>
</target>
16 years, 6 months
Hibernate SVN: r14736 - in annotations/trunk/src: java/org/hibernate/annotations and 59 other directories.
by hibernate-commits@lists.jboss.org
Author: hardy.ferentschik
Date: 2008-06-04 10:23:42 -0400 (Wed, 04 Jun 2008)
New Revision: 14736
Modified:
annotations/trunk/src/java/org/hibernate/AnnotationException.java
annotations/trunk/src/java/org/hibernate/annotations/AccessType.java
annotations/trunk/src/java/org/hibernate/annotations/Any.java
annotations/trunk/src/java/org/hibernate/annotations/AnyMetaDef.java
annotations/trunk/src/java/org/hibernate/annotations/AnyMetaDefs.java
annotations/trunk/src/java/org/hibernate/annotations/BatchSize.java
annotations/trunk/src/java/org/hibernate/annotations/Cache.java
annotations/trunk/src/java/org/hibernate/annotations/CacheConcurrencyStrategy.java
annotations/trunk/src/java/org/hibernate/annotations/CacheModeType.java
annotations/trunk/src/java/org/hibernate/annotations/Cascade.java
annotations/trunk/src/java/org/hibernate/annotations/CascadeType.java
annotations/trunk/src/java/org/hibernate/annotations/Check.java
annotations/trunk/src/java/org/hibernate/annotations/CollectionId.java
annotations/trunk/src/java/org/hibernate/annotations/CollectionOfElements.java
annotations/trunk/src/java/org/hibernate/annotations/Columns.java
annotations/trunk/src/java/org/hibernate/annotations/DiscriminatorFormula.java
annotations/trunk/src/java/org/hibernate/annotations/Entity.java
annotations/trunk/src/java/org/hibernate/annotations/Fetch.java
annotations/trunk/src/java/org/hibernate/annotations/FetchMode.java
annotations/trunk/src/java/org/hibernate/annotations/Filter.java
annotations/trunk/src/java/org/hibernate/annotations/FilterDef.java
annotations/trunk/src/java/org/hibernate/annotations/FilterDefs.java
annotations/trunk/src/java/org/hibernate/annotations/FilterJoinTable.java
annotations/trunk/src/java/org/hibernate/annotations/FilterJoinTables.java
annotations/trunk/src/java/org/hibernate/annotations/Filters.java
annotations/trunk/src/java/org/hibernate/annotations/FlushModeType.java
annotations/trunk/src/java/org/hibernate/annotations/ForceDiscriminator.java
annotations/trunk/src/java/org/hibernate/annotations/ForeignKey.java
annotations/trunk/src/java/org/hibernate/annotations/Formula.java
annotations/trunk/src/java/org/hibernate/annotations/Generated.java
annotations/trunk/src/java/org/hibernate/annotations/GenerationTime.java
annotations/trunk/src/java/org/hibernate/annotations/GenericGenerator.java
annotations/trunk/src/java/org/hibernate/annotations/GenericGenerators.java
annotations/trunk/src/java/org/hibernate/annotations/Immutable.java
annotations/trunk/src/java/org/hibernate/annotations/Index.java
annotations/trunk/src/java/org/hibernate/annotations/IndexColumn.java
annotations/trunk/src/java/org/hibernate/annotations/LazyCollection.java
annotations/trunk/src/java/org/hibernate/annotations/LazyCollectionOption.java
annotations/trunk/src/java/org/hibernate/annotations/LazyToOne.java
annotations/trunk/src/java/org/hibernate/annotations/LazyToOneOption.java
annotations/trunk/src/java/org/hibernate/annotations/Loader.java
annotations/trunk/src/java/org/hibernate/annotations/ManyToAny.java
annotations/trunk/src/java/org/hibernate/annotations/MapKey.java
annotations/trunk/src/java/org/hibernate/annotations/MapKeyManyToMany.java
annotations/trunk/src/java/org/hibernate/annotations/MetaValue.java
annotations/trunk/src/java/org/hibernate/annotations/NamedNativeQueries.java
annotations/trunk/src/java/org/hibernate/annotations/NamedNativeQuery.java
annotations/trunk/src/java/org/hibernate/annotations/NamedQueries.java
annotations/trunk/src/java/org/hibernate/annotations/NamedQuery.java
annotations/trunk/src/java/org/hibernate/annotations/NaturalId.java
annotations/trunk/src/java/org/hibernate/annotations/NotFound.java
annotations/trunk/src/java/org/hibernate/annotations/NotFoundAction.java
annotations/trunk/src/java/org/hibernate/annotations/OnDelete.java
annotations/trunk/src/java/org/hibernate/annotations/OnDeleteAction.java
annotations/trunk/src/java/org/hibernate/annotations/OptimisticLock.java
annotations/trunk/src/java/org/hibernate/annotations/OptimisticLockType.java
annotations/trunk/src/java/org/hibernate/annotations/OrderBy.java
annotations/trunk/src/java/org/hibernate/annotations/ParamDef.java
annotations/trunk/src/java/org/hibernate/annotations/Parameter.java
annotations/trunk/src/java/org/hibernate/annotations/Parent.java
annotations/trunk/src/java/org/hibernate/annotations/Persister.java
annotations/trunk/src/java/org/hibernate/annotations/PolymorphismType.java
annotations/trunk/src/java/org/hibernate/annotations/Proxy.java
annotations/trunk/src/java/org/hibernate/annotations/ResultCheckStyle.java
annotations/trunk/src/java/org/hibernate/annotations/SQLDelete.java
annotations/trunk/src/java/org/hibernate/annotations/SQLDeleteAll.java
annotations/trunk/src/java/org/hibernate/annotations/SQLInsert.java
annotations/trunk/src/java/org/hibernate/annotations/SQLUpdate.java
annotations/trunk/src/java/org/hibernate/annotations/Sort.java
annotations/trunk/src/java/org/hibernate/annotations/SortType.java
annotations/trunk/src/java/org/hibernate/annotations/Table.java
annotations/trunk/src/java/org/hibernate/annotations/Tables.java
annotations/trunk/src/java/org/hibernate/annotations/Target.java
annotations/trunk/src/java/org/hibernate/annotations/Tuplizer.java
annotations/trunk/src/java/org/hibernate/annotations/Tuplizers.java
annotations/trunk/src/java/org/hibernate/annotations/Type.java
annotations/trunk/src/java/org/hibernate/annotations/TypeDef.java
annotations/trunk/src/java/org/hibernate/annotations/TypeDefs.java
annotations/trunk/src/java/org/hibernate/annotations/Where.java
annotations/trunk/src/java/org/hibernate/annotations/WhereJoinTable.java
annotations/trunk/src/java/org/hibernate/cfg/AbstractPropertyHolder.java
annotations/trunk/src/java/org/hibernate/cfg/AnnotatedClassType.java
annotations/trunk/src/java/org/hibernate/cfg/AnnotationBinder.java
annotations/trunk/src/java/org/hibernate/cfg/AnnotationConfiguration.java
annotations/trunk/src/java/org/hibernate/cfg/BinderHelper.java
annotations/trunk/src/java/org/hibernate/cfg/ClassPropertyHolder.java
annotations/trunk/src/java/org/hibernate/cfg/CollectionPropertyHolder.java
annotations/trunk/src/java/org/hibernate/cfg/ComponentPropertyHolder.java
annotations/trunk/src/java/org/hibernate/cfg/CreateKeySecondPass.java
annotations/trunk/src/java/org/hibernate/cfg/DefaultComponentSafeNamingStrategy.java
annotations/trunk/src/java/org/hibernate/cfg/EJB3DTDEntityResolver.java
annotations/trunk/src/java/org/hibernate/cfg/EJB3NamingStrategy.java
annotations/trunk/src/java/org/hibernate/cfg/Ejb3Column.java
annotations/trunk/src/java/org/hibernate/cfg/Ejb3DiscriminatorColumn.java
annotations/trunk/src/java/org/hibernate/cfg/Ejb3JoinColumn.java
annotations/trunk/src/java/org/hibernate/cfg/ExtendedMappings.java
annotations/trunk/src/java/org/hibernate/cfg/FkSecondPass.java
annotations/trunk/src/java/org/hibernate/cfg/IndexColumn.java
annotations/trunk/src/java/org/hibernate/cfg/IndexOrUniqueKeySecondPass.java
annotations/trunk/src/java/org/hibernate/cfg/InheritanceState.java
annotations/trunk/src/java/org/hibernate/cfg/JoinedSubclassFkSecondPass.java
annotations/trunk/src/java/org/hibernate/cfg/NotYetImplementedException.java
annotations/trunk/src/java/org/hibernate/cfg/OneToOneSecondPass.java
annotations/trunk/src/java/org/hibernate/cfg/PropertyData.java
annotations/trunk/src/java/org/hibernate/cfg/PropertyHolder.java
annotations/trunk/src/java/org/hibernate/cfg/PropertyHolderBuilder.java
annotations/trunk/src/java/org/hibernate/cfg/PropertyInferredData.java
annotations/trunk/src/java/org/hibernate/cfg/PropertyPreloadedData.java
annotations/trunk/src/java/org/hibernate/cfg/RecoverableException.java
annotations/trunk/src/java/org/hibernate/cfg/SecondaryTableSecondPass.java
annotations/trunk/src/java/org/hibernate/cfg/ToOneFkSecondPass.java
annotations/trunk/src/java/org/hibernate/cfg/WrappedInferredData.java
annotations/trunk/src/java/org/hibernate/cfg/annotations/ArrayBinder.java
annotations/trunk/src/java/org/hibernate/cfg/annotations/BagBinder.java
annotations/trunk/src/java/org/hibernate/cfg/annotations/CollectionBinder.java
annotations/trunk/src/java/org/hibernate/cfg/annotations/EntityBinder.java
annotations/trunk/src/java/org/hibernate/cfg/annotations/IdBagBinder.java
annotations/trunk/src/java/org/hibernate/cfg/annotations/ListBinder.java
annotations/trunk/src/java/org/hibernate/cfg/annotations/MapBinder.java
annotations/trunk/src/java/org/hibernate/cfg/annotations/Nullability.java
annotations/trunk/src/java/org/hibernate/cfg/annotations/PrimitiveArrayBinder.java
annotations/trunk/src/java/org/hibernate/cfg/annotations/PropertyBinder.java
annotations/trunk/src/java/org/hibernate/cfg/annotations/QueryBinder.java
annotations/trunk/src/java/org/hibernate/cfg/annotations/ResultsetMappingSecondPass.java
annotations/trunk/src/java/org/hibernate/cfg/annotations/SetBinder.java
annotations/trunk/src/java/org/hibernate/cfg/annotations/SimpleValueBinder.java
annotations/trunk/src/java/org/hibernate/cfg/annotations/TableBinder.java
annotations/trunk/src/java/org/hibernate/cfg/annotations/Version.java
annotations/trunk/src/java/org/hibernate/cfg/annotations/reflection/EJB3OverridenAnnotationReader.java
annotations/trunk/src/java/org/hibernate/cfg/annotations/reflection/EJB3ReflectionManager.java
annotations/trunk/src/java/org/hibernate/cfg/annotations/reflection/XMLContext.java
annotations/trunk/src/java/org/hibernate/cfg/search/CollectionSearchConfiguration.java
annotations/trunk/src/java/org/hibernate/cfg/search/SearchConfiguration.java
annotations/trunk/src/java/org/hibernate/mapping/IdGenerator.java
annotations/trunk/src/java/org/hibernate/type/AbstractLobType.java
annotations/trunk/src/java/org/hibernate/type/ByteArrayBlobType.java
annotations/trunk/src/java/org/hibernate/type/CharacterArrayClobType.java
annotations/trunk/src/java/org/hibernate/type/EnumType.java
annotations/trunk/src/java/org/hibernate/type/PrimitiveByteArrayBlobType.java
annotations/trunk/src/java/org/hibernate/type/PrimitiveCharacterArrayClobType.java
annotations/trunk/src/java/org/hibernate/type/SerializableToBlobType.java
annotations/trunk/src/java/org/hibernate/type/StringClobType.java
annotations/trunk/src/test/org/hibernate/test/annotations/A320.java
annotations/trunk/src/test/org/hibernate/test/annotations/A320b.java
annotations/trunk/src/test/org/hibernate/test/annotations/AlternativeNamingStrategy.java
annotations/trunk/src/test/org/hibernate/test/annotations/AmericaCupClass.java
annotations/trunk/src/test/org/hibernate/test/annotations/Boat.java
annotations/trunk/src/test/org/hibernate/test/annotations/Company.java
annotations/trunk/src/test/org/hibernate/test/annotations/ConfigurationTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/Country.java
annotations/trunk/src/test/org/hibernate/test/annotations/Customer.java
annotations/trunk/src/test/org/hibernate/test/annotations/Discount.java
annotations/trunk/src/test/org/hibernate/test/annotations/EntityTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/Ferry.java
annotations/trunk/src/test/org/hibernate/test/annotations/Flight.java
annotations/trunk/src/test/org/hibernate/test/annotations/FlyingObject.java
annotations/trunk/src/test/org/hibernate/test/annotations/IncorrectEntity.java
annotations/trunk/src/test/org/hibernate/test/annotations/JoinedSubclassTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/Passport.java
annotations/trunk/src/test/org/hibernate/test/annotations/Plane.java
annotations/trunk/src/test/org/hibernate/test/annotations/Port.java
annotations/trunk/src/test/org/hibernate/test/annotations/SafeMappingTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/SecuredBindingTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/Sky.java
annotations/trunk/src/test/org/hibernate/test/annotations/TestCase.java
annotations/trunk/src/test/org/hibernate/test/annotations/Thing.java
annotations/trunk/src/test/org/hibernate/test/annotations/Ticket.java
annotations/trunk/src/test/org/hibernate/test/annotations/TicketComparator.java
annotations/trunk/src/test/org/hibernate/test/annotations/access/AccessTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/access/Bed.java
annotations/trunk/src/test/org/hibernate/test/annotations/access/BigBed.java
annotations/trunk/src/test/org/hibernate/test/annotations/access/Chair.java
annotations/trunk/src/test/org/hibernate/test/annotations/access/Furniture.java
annotations/trunk/src/test/org/hibernate/test/annotations/access/Gardenshed.java
annotations/trunk/src/test/org/hibernate/test/annotations/access/Thingy.java
annotations/trunk/src/test/org/hibernate/test/annotations/access/Woody.java
annotations/trunk/src/test/org/hibernate/test/annotations/any/AnyTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/any/CharProperty.java
annotations/trunk/src/test/org/hibernate/test/annotations/any/IntegerProperty.java
annotations/trunk/src/test/org/hibernate/test/annotations/any/LongProperty.java
annotations/trunk/src/test/org/hibernate/test/annotations/any/Property.java
annotations/trunk/src/test/org/hibernate/test/annotations/any/PropertyList.java
annotations/trunk/src/test/org/hibernate/test/annotations/any/PropertyMap.java
annotations/trunk/src/test/org/hibernate/test/annotations/any/PropertySet.java
annotations/trunk/src/test/org/hibernate/test/annotations/any/StringProperty.java
annotations/trunk/src/test/org/hibernate/test/annotations/any/package-info.java
annotations/trunk/src/test/org/hibernate/test/annotations/array/ArrayTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/array/Competitor.java
annotations/trunk/src/test/org/hibernate/test/annotations/array/Contest.java
annotations/trunk/src/test/org/hibernate/test/annotations/bytecode/Hammer.java
annotations/trunk/src/test/org/hibernate/test/annotations/bytecode/ProxyBreakingTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/bytecode/Tool.java
annotations/trunk/src/test/org/hibernate/test/annotations/cascade/CascadeTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/cascade/Mouth.java
annotations/trunk/src/test/org/hibernate/test/annotations/cascade/Tooth.java
annotations/trunk/src/test/org/hibernate/test/annotations/cid/A.java
annotations/trunk/src/test/org/hibernate/test/annotations/cid/AId.java
annotations/trunk/src/test/org/hibernate/test/annotations/cid/B.java
annotations/trunk/src/test/org/hibernate/test/annotations/cid/C.java
annotations/trunk/src/test/org/hibernate/test/annotations/cid/Channel.java
annotations/trunk/src/test/org/hibernate/test/annotations/cid/Child.java
annotations/trunk/src/test/org/hibernate/test/annotations/cid/ChildPk.java
annotations/trunk/src/test/org/hibernate/test/annotations/cid/CompositeIdTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/cid/LittleGenius.java
annotations/trunk/src/test/org/hibernate/test/annotations/cid/Order.java
annotations/trunk/src/test/org/hibernate/test/annotations/cid/OrderLine.java
annotations/trunk/src/test/org/hibernate/test/annotations/cid/OrderLinePk.java
annotations/trunk/src/test/org/hibernate/test/annotations/cid/Parent.java
annotations/trunk/src/test/org/hibernate/test/annotations/cid/ParentPk.java
annotations/trunk/src/test/org/hibernate/test/annotations/cid/Presenter.java
annotations/trunk/src/test/org/hibernate/test/annotations/cid/Product.java
annotations/trunk/src/test/org/hibernate/test/annotations/cid/TvMagazin.java
annotations/trunk/src/test/org/hibernate/test/annotations/cid/TvMagazinPk.java
annotations/trunk/src/test/org/hibernate/test/annotations/cid/TvProgram.java
annotations/trunk/src/test/org/hibernate/test/annotations/cid/TvProgramIdClass.java
annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/Boy.java
annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/Brand.java
annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/Character.java
annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/CollectionElementTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/CountryAttitude.java
annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/LocalizedString.java
annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/Matrix.java
annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/TestCourse.java
annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/Toy.java
annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/deepcollectionelements/A.java
annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/deepcollectionelements/B.java
annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/deepcollectionelements/C.java
annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/deepcollectionelements/DeepCollectionElementTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/indexedCollection/Contact.java
annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/indexedCollection/IndexedCollectionOfElementsTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/indexedCollection/Sale.java
annotations/trunk/src/test/org/hibernate/test/annotations/configuration/ConfigurationTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/configuration/package-info.java
annotations/trunk/src/test/org/hibernate/test/annotations/duplicatedgenerator/DuplicateTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/duplicatedgenerator/Flight.java
annotations/trunk/src/test/org/hibernate/test/annotations/embedded/Address.java
annotations/trunk/src/test/org/hibernate/test/annotations/embedded/AddressType.java
annotations/trunk/src/test/org/hibernate/test/annotations/embedded/Book.java
annotations/trunk/src/test/org/hibernate/test/annotations/embedded/CorpType.java
annotations/trunk/src/test/org/hibernate/test/annotations/embedded/Country.java
annotations/trunk/src/test/org/hibernate/test/annotations/embedded/Deal.java
annotations/trunk/src/test/org/hibernate/test/annotations/embedded/EmbeddedTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/embedded/FixedLeg.java
annotations/trunk/src/test/org/hibernate/test/annotations/embedded/FloatLeg.java
annotations/trunk/src/test/org/hibernate/test/annotations/embedded/InternetProvider.java
annotations/trunk/src/test/org/hibernate/test/annotations/embedded/Leg.java
annotations/trunk/src/test/org/hibernate/test/annotations/embedded/LegalStructure.java
annotations/trunk/src/test/org/hibernate/test/annotations/embedded/Manager.java
annotations/trunk/src/test/org/hibernate/test/annotations/embedded/Nationality.java
annotations/trunk/src/test/org/hibernate/test/annotations/embedded/NotonialDeal.java
annotations/trunk/src/test/org/hibernate/test/annotations/embedded/Person.java
annotations/trunk/src/test/org/hibernate/test/annotations/embedded/RegionalArticle.java
annotations/trunk/src/test/org/hibernate/test/annotations/embedded/RegionalArticlePk.java
annotations/trunk/src/test/org/hibernate/test/annotations/embedded/SpreadDeal.java
annotations/trunk/src/test/org/hibernate/test/annotations/embedded/Summary.java
annotations/trunk/src/test/org/hibernate/test/annotations/embedded/Swap.java
annotations/trunk/src/test/org/hibernate/test/annotations/embedded/VanillaSwap.java
annotations/trunk/src/test/org/hibernate/test/annotations/entity/Address.java
annotations/trunk/src/test/org/hibernate/test/annotations/entity/BasicHibernateAnnotationsTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/entity/Bid.java
annotations/trunk/src/test/org/hibernate/test/annotations/entity/CasterStringType.java
annotations/trunk/src/test/org/hibernate/test/annotations/entity/CommunityBid.java
annotations/trunk/src/test/org/hibernate/test/annotations/entity/Country.java
annotations/trunk/src/test/org/hibernate/test/annotations/entity/Flight.java
annotations/trunk/src/test/org/hibernate/test/annotations/entity/Forest.java
annotations/trunk/src/test/org/hibernate/test/annotations/entity/Java5FeaturesTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/entity/Length.java
annotations/trunk/src/test/org/hibernate/test/annotations/entity/MonetaryAmount.java
annotations/trunk/src/test/org/hibernate/test/annotations/entity/MonetaryAmountUserType.java
annotations/trunk/src/test/org/hibernate/test/annotations/entity/PropertyDefaultMappingsTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/entity/Race.java
annotations/trunk/src/test/org/hibernate/test/annotations/entity/Ransom.java
annotations/trunk/src/test/org/hibernate/test/annotations/entity/Starred.java
annotations/trunk/src/test/org/hibernate/test/annotations/entity/Tree.java
annotations/trunk/src/test/org/hibernate/test/annotations/entity/WashingMachine.java
annotations/trunk/src/test/org/hibernate/test/annotations/entity/ZipCode.java
annotations/trunk/src/test/org/hibernate/test/annotations/entity/package-info.java
annotations/trunk/src/test/org/hibernate/test/annotations/entitynonentity/Cellular.java
annotations/trunk/src/test/org/hibernate/test/annotations/entitynonentity/Communication.java
annotations/trunk/src/test/org/hibernate/test/annotations/entitynonentity/EntityNonEntityTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/entitynonentity/GSM.java
annotations/trunk/src/test/org/hibernate/test/annotations/entitynonentity/Interaction.java
annotations/trunk/src/test/org/hibernate/test/annotations/entitynonentity/Phone.java
annotations/trunk/src/test/org/hibernate/test/annotations/entitynonentity/Voice.java
annotations/trunk/src/test/org/hibernate/test/annotations/fetch/Branch.java
annotations/trunk/src/test/org/hibernate/test/annotations/fetch/FetchingTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/fetch/Leaf.java
annotations/trunk/src/test/org/hibernate/test/annotations/fetch/Person.java
annotations/trunk/src/test/org/hibernate/test/annotations/fetch/Stay.java
annotations/trunk/src/test/org/hibernate/test/annotations/generics/DNA.java
annotations/trunk/src/test/org/hibernate/test/annotations/generics/Dummy.java
annotations/trunk/src/test/org/hibernate/test/annotations/generics/EmbeddedGenericsTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/generics/Gene.java
annotations/trunk/src/test/org/hibernate/test/annotations/generics/GenericsTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/generics/Item.java
annotations/trunk/src/test/org/hibernate/test/annotations/generics/Paper.java
annotations/trunk/src/test/org/hibernate/test/annotations/generics/PaperType.java
annotations/trunk/src/test/org/hibernate/test/annotations/generics/Price.java
annotations/trunk/src/test/org/hibernate/test/annotations/generics/PricedStuff.java
annotations/trunk/src/test/org/hibernate/test/annotations/generics/SomeGuy.java
annotations/trunk/src/test/org/hibernate/test/annotations/generics/State.java
annotations/trunk/src/test/org/hibernate/test/annotations/generics/StateType.java
annotations/trunk/src/test/org/hibernate/test/annotations/generics/Stuff.java
annotations/trunk/src/test/org/hibernate/test/annotations/generics/UnresolvedTypeTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/generics/WildEntity.java
annotations/trunk/src/test/org/hibernate/test/annotations/genericsinheritance/Child.java
annotations/trunk/src/test/org/hibernate/test/annotations/genericsinheritance/ChildHierarchy1.java
annotations/trunk/src/test/org/hibernate/test/annotations/genericsinheritance/ChildHierarchy2.java
annotations/trunk/src/test/org/hibernate/test/annotations/genericsinheritance/ChildHierarchy22.java
annotations/trunk/src/test/org/hibernate/test/annotations/genericsinheritance/GenericsInheritanceTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/genericsinheritance/Parent.java
annotations/trunk/src/test/org/hibernate/test/annotations/genericsinheritance/ParentHierarchy1.java
annotations/trunk/src/test/org/hibernate/test/annotations/genericsinheritance/ParentHierarchy2.java
annotations/trunk/src/test/org/hibernate/test/annotations/genericsinheritance/ParentHierarchy22.java
annotations/trunk/src/test/org/hibernate/test/annotations/id/Ball.java
annotations/trunk/src/test/org/hibernate/test/annotations/id/BreakDance.java
annotations/trunk/src/test/org/hibernate/test/annotations/id/Computer.java
annotations/trunk/src/test/org/hibernate/test/annotations/id/Department.java
annotations/trunk/src/test/org/hibernate/test/annotations/id/Dog.java
annotations/trunk/src/test/org/hibernate/test/annotations/id/FirTree.java
annotations/trunk/src/test/org/hibernate/test/annotations/id/Footballer.java
annotations/trunk/src/test/org/hibernate/test/annotations/id/FootballerPk.java
annotations/trunk/src/test/org/hibernate/test/annotations/id/Furniture.java
annotations/trunk/src/test/org/hibernate/test/annotations/id/GoalKeeper.java
annotations/trunk/src/test/org/hibernate/test/annotations/id/Home.java
annotations/trunk/src/test/org/hibernate/test/annotations/id/IdClassTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/id/IdTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/id/Location.java
annotations/trunk/src/test/org/hibernate/test/annotations/id/MilitaryBuilding.java
annotations/trunk/src/test/org/hibernate/test/annotations/id/Monkey.java
annotations/trunk/src/test/org/hibernate/test/annotations/id/Phone.java
annotations/trunk/src/test/org/hibernate/test/annotations/id/Shoe.java
annotations/trunk/src/test/org/hibernate/test/annotations/id/SoundSystem.java
annotations/trunk/src/test/org/hibernate/test/annotations/id/Store.java
annotations/trunk/src/test/org/hibernate/test/annotations/id/Tower.java
annotations/trunk/src/test/org/hibernate/test/annotations/id/Tree.java
annotations/trunk/src/test/org/hibernate/test/annotations/id/package-info.java
annotations/trunk/src/test/org/hibernate/test/annotations/identifiercollection/IdentifierCollectionTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/identifiercollection/Passport.java
annotations/trunk/src/test/org/hibernate/test/annotations/identifiercollection/Stamp.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/BasketItems.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/BasketItemsPK.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/Card.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/CardField.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/CardKey.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/Customer.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/Customers.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/IdManyToOneTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/Project.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/ShoppingBaskets.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/ShoppingBasketsPK.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/Store.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/StoreCustomer.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/StoreCustomerPK.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/alphabetical/A.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/alphabetical/Acces.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/alphabetical/AlphabeticalIdManyToOneTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/alphabetical/AlphabeticalManyToOneTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/alphabetical/B.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/alphabetical/BId.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/alphabetical/Benefserv.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/alphabetical/C.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/alphabetical/CId.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/alphabetical/Droitacces.java
annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/alphabetical/Service.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/AddressBook.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/AddressEntry.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/AddressEntryPk.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/AlphabeticalDirectory.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Atmosphere.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Drawer.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Dress.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Gas.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/GasKey.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Generation.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/GenerationGroup.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/GenerationUser.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/IndexedCollectionTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/MapKeyTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/News.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Newspaper.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Painter.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Painting.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/PaintingPk.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/PressReleaseAgency.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Software.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Trainee.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Training.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Version.java
annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Wardrobe.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/Apple.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/Carrot.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/Fruit.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/SubclassTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/Tomato.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/Vegetable.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/VegetablePk.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Alarm.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Asset.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Clothing.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Document.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/EventInformation.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/File.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/FinancialAsset.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Folder.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/JoinedSubclassAndSecondaryTable.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/JoinedSubclassTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Parent.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Pool.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/ProgramExecution.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/PropertyAsset.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Sweater.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/SwimmingPool.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/SymbolicLink.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/mixed/Document.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/mixed/File.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/mixed/Folder.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/mixed/SubclassTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/mixed/SymbolicLink.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/singletable/Building.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/singletable/Funk.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/singletable/House.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/singletable/Music.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/singletable/Noise.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/singletable/PaperTrash.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/singletable/Rock.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/singletable/Trash.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/union/Document.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/union/File.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/union/Folder.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/union/SubclassTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/union/SymbolicLink.java
annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/Contact.java
annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/ContactImpl.java
annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/InterfacesTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/User.java
annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/UserImpl.java
annotations/trunk/src/test/org/hibernate/test/annotations/join/A.java
annotations/trunk/src/test/org/hibernate/test/annotations/join/B.java
annotations/trunk/src/test/org/hibernate/test/annotations/join/C.java
annotations/trunk/src/test/org/hibernate/test/annotations/join/Cat.java
annotations/trunk/src/test/org/hibernate/test/annotations/join/Death.java
annotations/trunk/src/test/org/hibernate/test/annotations/join/Dog.java
annotations/trunk/src/test/org/hibernate/test/annotations/join/DogPk.java
annotations/trunk/src/test/org/hibernate/test/annotations/join/JoinTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/join/Life.java
annotations/trunk/src/test/org/hibernate/test/annotations/loader/LoaderTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/loader/Player.java
annotations/trunk/src/test/org/hibernate/test/annotations/loader/Team.java
annotations/trunk/src/test/org/hibernate/test/annotations/loader/TestCase.java
annotations/trunk/src/test/org/hibernate/test/annotations/lob/Book.java
annotations/trunk/src/test/org/hibernate/test/annotations/lob/CompiledCode.java
annotations/trunk/src/test/org/hibernate/test/annotations/lob/Editor.java
annotations/trunk/src/test/org/hibernate/test/annotations/lob/LobTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Building.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/BuildingCompany.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Cat.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/CatPk.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/City.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Company.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Employee.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Employer.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Friend.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Group.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/GroupWithSet.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Inspector.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/InspectorPrefixes.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/KnownClient.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Man.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/ManPk.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/ManyToManyTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Permission.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Store.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Supplier.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Woman.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/WomanPk.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Zone.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/BiggestForest.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Car.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Carz.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Child.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Color.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Customer.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Deal.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/DistrictUser.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/ForestType.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Frame.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Lens.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Lotz.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/LotzPK.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/ManyToOneJoinTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/ManyToOneOnNonPkTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/ManyToOneTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Node.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/NodePk.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Order.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/OrderLine.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Parent.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/ParentPk.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/TreeType.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/User.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/UserPK.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/referencedcolumnname/GenericObject.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/referencedcolumnname/Item.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/referencedcolumnname/ManyToOneReferencedColumnNameTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/referencedcolumnname/Vendor.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/referencedcolumnname/WarehouseItem.java
annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/referencedcolumnname/ZItemCost.java
annotations/trunk/src/test/org/hibernate/test/annotations/naturalid/Citizen.java
annotations/trunk/src/test/org/hibernate/test/annotations/naturalid/NaturalIdTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/naturalid/State.java
annotations/trunk/src/test/org/hibernate/test/annotations/notfound/Coin.java
annotations/trunk/src/test/org/hibernate/test/annotations/notfound/Currency.java
annotations/trunk/src/test/org/hibernate/test/annotations/notfound/NotFoundTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Child.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/City.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Monkey.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/OneToManyTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Order.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/OrderByTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/OrderID.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/OrderItem.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/OrderItemID.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Organisation.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/OrganisationUser.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Parent.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/ParentPk.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Person.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/PoliticalParty.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Politician.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Soldier.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Street.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Tiger.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Trainer.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Troop.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/Address.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/Body.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/Client.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/Computer.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/ComputerPk.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/Heart.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/OneToOneErrorTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/OneToOneTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/Owner.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/OwnerAddress.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/Party.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/PartyAffiliate.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/SerialNumber.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/SerialNumberPk.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/Show.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/ShowDescription.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/Trousers.java
annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/TrousersZip.java
annotations/trunk/src/test/org/hibernate/test/annotations/override/AssociationOverrideTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/override/Location.java
annotations/trunk/src/test/org/hibernate/test/annotations/override/Move.java
annotations/trunk/src/test/org/hibernate/test/annotations/override/Trip.java
annotations/trunk/src/test/org/hibernate/test/annotations/persister/Card.java
annotations/trunk/src/test/org/hibernate/test/annotations/persister/CollectionPersister.java
annotations/trunk/src/test/org/hibernate/test/annotations/persister/Deck.java
annotations/trunk/src/test/org/hibernate/test/annotations/persister/EntityPersister.java
annotations/trunk/src/test/org/hibernate/test/annotations/persister/PersisterTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/polymorphism/Car.java
annotations/trunk/src/test/org/hibernate/test/annotations/polymorphism/MovingThing.java
annotations/trunk/src/test/org/hibernate/test/annotations/polymorphism/PolymorphismTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/polymorphism/SportCar.java
annotations/trunk/src/test/org/hibernate/test/annotations/query/Area.java
annotations/trunk/src/test/org/hibernate/test/annotations/query/Captain.java
annotations/trunk/src/test/org/hibernate/test/annotations/query/CasimirParticle.java
annotations/trunk/src/test/org/hibernate/test/annotations/query/Chaos.java
annotations/trunk/src/test/org/hibernate/test/annotations/query/Dictionary.java
annotations/trunk/src/test/org/hibernate/test/annotations/query/Dimensions.java
annotations/trunk/src/test/org/hibernate/test/annotations/query/Identity.java
annotations/trunk/src/test/org/hibernate/test/annotations/query/Mark.java
annotations/trunk/src/test/org/hibernate/test/annotations/query/Night.java
annotations/trunk/src/test/org/hibernate/test/annotations/query/QueryAndSQLTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/query/SpaceShip.java
annotations/trunk/src/test/org/hibernate/test/annotations/query/SynonymousDictionary.java
annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/Bag.java
annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/Clothes.java
annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/House.java
annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/Inhabitant.java
annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/Item.java
annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/ItemCost.java
annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/Luggage.java
annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/Postman.java
annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/Rambler.java
annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/ReferencedColumnNameTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/Vendor.java
annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/WarehouseItem.java
annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Administration.java
annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Availability.java
annotations/trunk/src/test/org/hibernate/test/annotations/reflection/BusTrip.java
annotations/trunk/src/test/org/hibernate/test/annotations/reflection/BusTripPk.java
annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Competition.java
annotations/trunk/src/test/org/hibernate/test/annotations/reflection/EJB3OverridenAnnotationReaderTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/reflection/LogListener.java
annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Match.java
annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Organization.java
annotations/trunk/src/test/org/hibernate/test/annotations/reflection/OtherLogListener.java
annotations/trunk/src/test/org/hibernate/test/annotations/reflection/SocialSecurityMoralAccount.java
annotations/trunk/src/test/org/hibernate/test/annotations/reflection/SocialSecurityNumber.java
annotations/trunk/src/test/org/hibernate/test/annotations/reflection/SocialSecurityPhysicalAccount.java
annotations/trunk/src/test/org/hibernate/test/annotations/reflection/TennisMatch.java
annotations/trunk/src/test/org/hibernate/test/annotations/reflection/XMLContextTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/strategy/Location.java
annotations/trunk/src/test/org/hibernate/test/annotations/strategy/Storm.java
annotations/trunk/src/test/org/hibernate/test/annotations/strategy/StrategyTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/tableperclass/Component.java
annotations/trunk/src/test/org/hibernate/test/annotations/tableperclass/Machine.java
annotations/trunk/src/test/org/hibernate/test/annotations/tableperclass/Product.java
annotations/trunk/src/test/org/hibernate/test/annotations/tableperclass/Robot.java
annotations/trunk/src/test/org/hibernate/test/annotations/tableperclass/T800.java
annotations/trunk/src/test/org/hibernate/test/annotations/tableperclass/TablePerClassTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/target/Brand.java
annotations/trunk/src/test/org/hibernate/test/annotations/target/Luggage.java
annotations/trunk/src/test/org/hibernate/test/annotations/target/LuggageImpl.java
annotations/trunk/src/test/org/hibernate/test/annotations/target/Owner.java
annotations/trunk/src/test/org/hibernate/test/annotations/target/OwnerImpl.java
annotations/trunk/src/test/org/hibernate/test/annotations/target/Size.java
annotations/trunk/src/test/org/hibernate/test/annotations/target/SizeImpl.java
annotations/trunk/src/test/org/hibernate/test/annotations/target/TargetTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/Country.java
annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/Cuisine.java
annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/DataProxyHandler.java
annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/DynamicComponentTuplizer.java
annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/DynamicEntityTuplizer.java
annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/DynamicInstantiator.java
annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/EntityNameInterceptor.java
annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/ProxyHelper.java
annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/TuplizerTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/type/Dvd.java
annotations/trunk/src/test/org/hibernate/test/annotations/type/MyOid.java
annotations/trunk/src/test/org/hibernate/test/annotations/type/MyOidGenerator.java
annotations/trunk/src/test/org/hibernate/test/annotations/type/MyOidType.java
annotations/trunk/src/test/org/hibernate/test/annotations/type/TypeTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/various/Antenna.java
annotations/trunk/src/test/org/hibernate/test/annotations/various/Conductor.java
annotations/trunk/src/test/org/hibernate/test/annotations/various/GeneratedTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/various/IndexTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/various/ProfessionalAgreement.java
annotations/trunk/src/test/org/hibernate/test/annotations/various/Truck.java
annotations/trunk/src/test/org/hibernate/test/annotations/various/Vehicule.java
annotations/trunk/src/test/org/hibernate/test/annotations/various/VersionTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/CarModel.java
annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Ejb3XmlTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Light.java
annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Lighter.java
annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Manufacturer.java
annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Model.java
annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/A.java
annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/AImpl.java
annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/B.java
annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/BImpl.java
annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/CloudType.java
annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/Government.java
annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/HbmTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/PrimeMinister.java
annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/Sky.java
annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/Z.java
annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/ZImpl.java
Log:
NO CODE CHANGES!
Enabled svn keyword substitution on java files.
Property changes on: annotations/trunk/src/java/org/hibernate/AnnotationException.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/AccessType.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Any.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/AnyMetaDef.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/AnyMetaDefs.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/BatchSize.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Cache.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/CacheConcurrencyStrategy.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/CacheModeType.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Cascade.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/CascadeType.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Check.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/CollectionId.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/CollectionId.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/CollectionId.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
import java.lang.annotation.Target;
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/CollectionId.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/CollectionOfElements.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Columns.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/DiscriminatorFormula.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Entity.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/Fetch.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/Fetch.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/Fetch.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
import java.lang.annotation.Target;
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Fetch.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/FetchMode.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/FetchMode.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/FetchMode.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
/**
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/FetchMode.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Filter.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/FilterDef.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/FilterDefs.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/FilterJoinTable.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/FilterJoinTable.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/FilterJoinTable.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
import java.lang.annotation.Target;
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/FilterJoinTable.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/FilterJoinTables.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/FilterJoinTables.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/FilterJoinTables.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
import java.lang.annotation.Target;
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/FilterJoinTables.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Filters.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/FlushModeType.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/ForceDiscriminator.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/ForceDiscriminator.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/ForceDiscriminator.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
import java.lang.annotation.Target;
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/ForceDiscriminator.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/ForeignKey.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/ForeignKey.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/ForeignKey.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
import static java.lang.annotation.ElementType.FIELD;
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/ForeignKey.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Formula.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/Generated.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/Generated.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/Generated.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
import java.lang.annotation.Target;
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Generated.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/GenerationTime.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/GenerationTime.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/GenerationTime.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
/**
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/GenerationTime.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/GenericGenerator.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/GenericGenerators.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/Immutable.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/Immutable.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/Immutable.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
import java.lang.annotation.*;
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Immutable.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Index.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/IndexColumn.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/LazyCollection.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/LazyCollection.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/LazyCollection.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
import java.lang.annotation.Target;
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/LazyCollection.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/LazyCollectionOption.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/LazyCollectionOption.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/LazyCollectionOption.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
/**
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/LazyCollectionOption.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/LazyToOne.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/LazyToOne.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/LazyToOne.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
import java.lang.annotation.Target;
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/LazyToOne.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/LazyToOneOption.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/LazyToOneOption.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/LazyToOneOption.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
/**
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/LazyToOneOption.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Loader.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/ManyToAny.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/MapKey.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/MapKey.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/MapKey.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
import java.lang.annotation.Target;
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/MapKey.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/MapKeyManyToMany.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/MapKeyManyToMany.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/MapKeyManyToMany.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
import java.lang.annotation.ElementType;
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/MapKeyManyToMany.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/MetaValue.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/NamedNativeQueries.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/NamedNativeQuery.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/NamedQueries.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/NamedQuery.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/NaturalId.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/NotFound.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/NotFoundAction.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/OnDelete.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/OnDeleteAction.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/OptimisticLock.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/OptimisticLock.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/OptimisticLock.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
import java.lang.annotation.ElementType;
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/OptimisticLock.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/OptimisticLockType.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/OrderBy.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/ParamDef.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Parameter.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/Parent.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/Parent.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/Parent.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
import static java.lang.annotation.ElementType.FIELD;
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Parent.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/Persister.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/Persister.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/Persister.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
import java.lang.annotation.*;
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Persister.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/PolymorphismType.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Proxy.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/ResultCheckStyle.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/SQLDelete.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/SQLDeleteAll.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/SQLDeleteAll.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/SQLDeleteAll.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
import static java.lang.annotation.ElementType.FIELD;
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/SQLDeleteAll.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/SQLInsert.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/SQLUpdate.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Sort.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/SortType.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Table.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Tables.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/Target.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/Target.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/Target.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
import java.lang.annotation.Retention;
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Target.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/Tuplizer.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/Tuplizer.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/Tuplizer.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
import java.lang.annotation.*;
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Tuplizer.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/Tuplizers.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/Tuplizers.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/Tuplizers.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
import java.lang.annotation.Retention;
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Tuplizers.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Type.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/TypeDef.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/TypeDefs.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/Where.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/java/org/hibernate/annotations/WhereJoinTable.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/annotations/WhereJoinTable.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/annotations/WhereJoinTable.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.annotations;
import java.lang.annotation.Target;
Property changes on: annotations/trunk/src/java/org/hibernate/annotations/WhereJoinTable.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/AbstractPropertyHolder.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/AnnotatedClassType.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/AnnotationBinder.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/AnnotationConfiguration.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/BinderHelper.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/ClassPropertyHolder.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/CollectionPropertyHolder.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/ComponentPropertyHolder.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/java/org/hibernate/cfg/CreateKeySecondPass.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/cfg/CreateKeySecondPass.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/cfg/CreateKeySecondPass.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.cfg;
import java.util.Map;
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/CreateKeySecondPass.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/DefaultComponentSafeNamingStrategy.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/java/org/hibernate/cfg/EJB3DTDEntityResolver.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/cfg/EJB3DTDEntityResolver.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/cfg/EJB3DTDEntityResolver.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.cfg;
import java.io.InputStream;
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/EJB3DTDEntityResolver.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/EJB3NamingStrategy.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/Ejb3Column.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/Ejb3DiscriminatorColumn.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/Ejb3JoinColumn.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/ExtendedMappings.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/java/org/hibernate/cfg/FkSecondPass.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/cfg/FkSecondPass.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/cfg/FkSecondPass.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: FkSecondPass.java 11650 2007-06-07 16:44:52Z epbernard $
+//$Id$
package org.hibernate.cfg;
import java.util.concurrent.atomic.AtomicInteger;
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/FkSecondPass.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/IndexColumn.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/IndexOrUniqueKeySecondPass.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/InheritanceState.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/JoinedSubclassFkSecondPass.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/NotYetImplementedException.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/OneToOneSecondPass.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/PropertyData.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/PropertyHolder.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/PropertyHolderBuilder.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/PropertyInferredData.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/PropertyPreloadedData.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/RecoverableException.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/SecondaryTableSecondPass.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/ToOneFkSecondPass.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/java/org/hibernate/cfg/WrappedInferredData.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/cfg/WrappedInferredData.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/cfg/WrappedInferredData.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.cfg;
import org.hibernate.MappingException;
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/WrappedInferredData.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/annotations/ArrayBinder.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/annotations/BagBinder.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/annotations/CollectionBinder.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/annotations/EntityBinder.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/java/org/hibernate/cfg/annotations/IdBagBinder.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/cfg/annotations/IdBagBinder.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/cfg/annotations/IdBagBinder.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.cfg.annotations;
import java.util.Collections;
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/annotations/IdBagBinder.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/annotations/ListBinder.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/annotations/MapBinder.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/annotations/Nullability.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/annotations/PrimitiveArrayBinder.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/annotations/PropertyBinder.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/annotations/QueryBinder.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/annotations/ResultsetMappingSecondPass.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/annotations/SetBinder.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/annotations/SimpleValueBinder.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/annotations/TableBinder.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/java/org/hibernate/cfg/annotations/Version.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/cfg/annotations/Version.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/cfg/annotations/Version.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.cfg.annotations;
import org.slf4j.Logger;
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/annotations/Version.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/annotations/reflection/EJB3OverridenAnnotationReader.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/annotations/reflection/EJB3ReflectionManager.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/java/org/hibernate/cfg/annotations/reflection/XMLContext.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/cfg/annotations/reflection/XMLContext.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/java/org/hibernate/cfg/annotations/reflection/XMLContext.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.cfg.annotations.reflection;
import java.util.ArrayList;
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/annotations/reflection/XMLContext.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/search/CollectionSearchConfiguration.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/cfg/search/SearchConfiguration.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/java/org/hibernate/mapping/IdGenerator.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/type/AbstractLobType.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/type/ByteArrayBlobType.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/type/CharacterArrayClobType.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/type/EnumType.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/type/PrimitiveByteArrayBlobType.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/type/PrimitiveCharacterArrayClobType.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/type/SerializableToBlobType.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/java/org/hibernate/type/StringClobType.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/A320.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/A320b.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/AlternativeNamingStrategy.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/AmericaCupClass.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/Boat.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/Company.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/ConfigurationTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/Country.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/Customer.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/Discount.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/EntityTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/Ferry.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/Flight.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/FlyingObject.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/IncorrectEntity.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/JoinedSubclassTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/Passport.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/Plane.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/Port.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/SafeMappingTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/SecuredBindingTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/Sky.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/TestCase.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/Thing.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/Ticket.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/TicketComparator.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/access/AccessTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/access/Bed.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/access/BigBed.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/access/Chair.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/access/Furniture.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/access/Gardenshed.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/access/Gardenshed.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/access/Gardenshed.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: Furniture.java 9795 2006-04-26 06:41:18Z epbernard $
+//$Id$
package org.hibernate.test.annotations.access;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/access/Gardenshed.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/access/Thingy.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/access/Woody.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/any/AnyTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/any/CharProperty.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/any/IntegerProperty.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/any/LongProperty.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/any/Property.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/any/PropertyList.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/any/PropertyMap.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/any/PropertySet.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/any/StringProperty.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/any/package-info.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/array/ArrayTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/array/Competitor.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/array/Contest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/bytecode/Hammer.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/bytecode/Hammer.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/bytecode/Hammer.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.bytecode;
/**
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/bytecode/Hammer.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/bytecode/ProxyBreakingTest.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/bytecode/ProxyBreakingTest.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/bytecode/ProxyBreakingTest.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.bytecode;
import org.hibernate.Session;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/bytecode/ProxyBreakingTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/bytecode/Tool.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/bytecode/Tool.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/bytecode/Tool.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.bytecode;
/**
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/bytecode/Tool.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/cascade/CascadeTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/cascade/Mouth.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/cascade/Tooth.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/cid/A.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/cid/AId.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/cid/B.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/cid/C.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/cid/Channel.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/cid/Channel.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/cid/Channel.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.cid;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/cid/Channel.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/cid/Child.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/cid/ChildPk.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/cid/CompositeIdTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/cid/LittleGenius.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/cid/Order.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/cid/OrderLine.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/cid/OrderLinePk.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/cid/Parent.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/cid/ParentPk.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/cid/Presenter.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/cid/Presenter.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/cid/Presenter.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.cid;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/cid/Presenter.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/cid/Product.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/cid/TvMagazin.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/cid/TvMagazin.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/cid/TvMagazin.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.cid;
import java.util.Date;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/cid/TvMagazin.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/cid/TvMagazinPk.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/cid/TvMagazinPk.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/cid/TvMagazinPk.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.cid;
import java.io.Serializable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/cid/TvMagazinPk.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/cid/TvProgram.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/cid/TvProgramIdClass.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/Boy.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/Brand.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/Character.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/CollectionElementTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/CountryAttitude.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/LocalizedString.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/Matrix.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/TestCourse.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/Toy.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/deepcollectionelements/A.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/deepcollectionelements/B.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/deepcollectionelements/C.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/deepcollectionelements/DeepCollectionElementTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/indexedCollection/Contact.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/indexedCollection/IndexedCollectionOfElementsTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/collectionelement/indexedCollection/Sale.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/configuration/ConfigurationTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/configuration/package-info.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/duplicatedgenerator/DuplicateTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/duplicatedgenerator/Flight.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/embedded/Address.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/embedded/AddressType.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/embedded/Book.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/embedded/CorpType.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/embedded/Country.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/embedded/Deal.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/embedded/EmbeddedTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/embedded/FixedLeg.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/embedded/FloatLeg.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/embedded/InternetProvider.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/embedded/Leg.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/embedded/LegalStructure.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/embedded/Manager.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/embedded/Nationality.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/embedded/NotonialDeal.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/embedded/Person.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/embedded/RegionalArticle.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/embedded/RegionalArticlePk.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/embedded/SpreadDeal.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/embedded/Summary.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/embedded/Swap.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/embedded/VanillaSwap.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entity/Address.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entity/BasicHibernateAnnotationsTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entity/Bid.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entity/CasterStringType.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entity/CommunityBid.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entity/Country.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entity/Flight.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entity/Forest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entity/Java5FeaturesTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entity/Length.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entity/MonetaryAmount.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entity/MonetaryAmountUserType.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entity/PropertyDefaultMappingsTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entity/Race.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entity/Ransom.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entity/Starred.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entity/Tree.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entity/WashingMachine.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entity/ZipCode.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entity/package-info.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entitynonentity/Cellular.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entitynonentity/Communication.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entitynonentity/EntityNonEntityTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entitynonentity/GSM.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entitynonentity/Interaction.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entitynonentity/Phone.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/entitynonentity/Voice.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/fetch/Branch.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/fetch/Branch.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/fetch/Branch.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.fetch;
import java.util.Set;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/fetch/Branch.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/fetch/FetchingTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/fetch/Leaf.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/fetch/Leaf.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/fetch/Leaf.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.fetch;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/fetch/Leaf.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/fetch/Person.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/fetch/Stay.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/generics/DNA.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/generics/DNA.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/generics/DNA.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: Address.java 8967 2006-01-03 12:27:34Z epbernard $
+//$Id$
package org.hibernate.test.annotations.generics;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/generics/DNA.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/generics/Dummy.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/generics/EmbeddedGenericsTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/generics/Gene.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/generics/GenericsTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/generics/Item.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/generics/Paper.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/generics/PaperType.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/generics/Price.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/generics/PricedStuff.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/generics/SomeGuy.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/generics/State.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/generics/State.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/generics/State.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.generics;
/**
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/generics/State.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/generics/StateType.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/generics/StateType.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/generics/StateType.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.generics;
import java.io.Serializable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/generics/StateType.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/generics/Stuff.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/generics/UnresolvedTypeTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/generics/WildEntity.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/genericsinheritance/Child.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/genericsinheritance/ChildHierarchy1.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/genericsinheritance/ChildHierarchy2.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/genericsinheritance/ChildHierarchy22.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/genericsinheritance/GenericsInheritanceTest.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/genericsinheritance/GenericsInheritanceTest.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/genericsinheritance/GenericsInheritanceTest.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.genericsinheritance;
import org.hibernate.test.annotations.TestCase;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/genericsinheritance/GenericsInheritanceTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/genericsinheritance/Parent.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/genericsinheritance/ParentHierarchy1.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/genericsinheritance/ParentHierarchy2.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/genericsinheritance/ParentHierarchy22.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/id/Ball.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/id/BreakDance.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/id/BreakDance.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/id/BreakDance.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.id;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/id/BreakDance.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/id/Computer.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/id/Department.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/id/Dog.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/id/FirTree.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/id/Footballer.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/id/FootballerPk.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/id/Furniture.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/id/GoalKeeper.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/id/Home.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/id/IdClassTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/id/IdTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/id/Location.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/id/MilitaryBuilding.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/id/Monkey.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/id/Phone.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/id/Shoe.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/id/SoundSystem.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/id/Store.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/id/Tower.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/id/Tree.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/id/package-info.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/identifiercollection/IdentifierCollectionTest.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/identifiercollection/IdentifierCollectionTest.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/identifiercollection/IdentifierCollectionTest.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.identifiercollection;
import org.hibernate.test.annotations.TestCase;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/identifiercollection/IdentifierCollectionTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/identifiercollection/Passport.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/identifiercollection/Passport.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/identifiercollection/Passport.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.identifiercollection;
import java.util.ArrayList;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/identifiercollection/Passport.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/identifiercollection/Stamp.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/identifiercollection/Stamp.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/identifiercollection/Stamp.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.identifiercollection;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/identifiercollection/Stamp.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/BasketItems.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/BasketItemsPK.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/Card.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/Card.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/Card.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.idmanytoone;
import java.io.Serializable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/Card.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/CardField.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/CardField.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/CardField.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.idmanytoone;
import java.io.Serializable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/CardField.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/CardKey.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/CardKey.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/CardKey.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.idmanytoone;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/CardKey.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/Customer.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/Customer.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/Customer.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.idmanytoone;
import java.io.Serializable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/Customer.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/Customers.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/IdManyToOneTest.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/IdManyToOneTest.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/IdManyToOneTest.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.idmanytoone;
import org.hibernate.Session;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/IdManyToOneTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/Project.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/Project.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/Project.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.idmanytoone;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/Project.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/ShoppingBaskets.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/ShoppingBasketsPK.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/Store.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/Store.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/Store.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.idmanytoone;
import java.io.Serializable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/Store.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/StoreCustomer.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/StoreCustomer.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/StoreCustomer.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.idmanytoone;
import java.io.Serializable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/StoreCustomer.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/StoreCustomerPK.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/StoreCustomerPK.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/StoreCustomerPK.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.idmanytoone;
import java.io.Serializable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/StoreCustomerPK.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/alphabetical/A.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/alphabetical/Acces.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/alphabetical/AlphabeticalIdManyToOneTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/alphabetical/AlphabeticalManyToOneTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/alphabetical/B.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/alphabetical/BId.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/alphabetical/Benefserv.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/alphabetical/C.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/alphabetical/CId.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/alphabetical/Droitacces.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/idmanytoone/alphabetical/Service.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/AddressBook.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/AddressEntry.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/AddressEntryPk.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/AlphabeticalDirectory.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/AlphabeticalDirectory.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/AlphabeticalDirectory.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.indexcoll;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/AlphabeticalDirectory.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Atmosphere.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Atmosphere.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Atmosphere.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.indexcoll;
import java.util.HashMap;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Atmosphere.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Drawer.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Dress.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Gas.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Gas.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Gas.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.indexcoll;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Gas.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/GasKey.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/GasKey.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/GasKey.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.indexcoll;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/GasKey.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Generation.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Generation.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Generation.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.indexcoll;
import javax.persistence.Embeddable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Generation.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/GenerationGroup.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/GenerationGroup.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/GenerationGroup.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.indexcoll;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/GenerationGroup.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/GenerationUser.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/GenerationUser.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/GenerationUser.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.indexcoll;
import java.util.Map;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/GenerationUser.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/IndexedCollectionTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/MapKeyTest.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/MapKeyTest.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/MapKeyTest.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.indexcoll;
import org.hibernate.test.annotations.TestCase;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/MapKeyTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/News.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Newspaper.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Painter.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Painting.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/PaintingPk.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/PressReleaseAgency.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Software.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Trainee.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Trainee.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Trainee.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.indexcoll;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Trainee.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Training.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Training.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Training.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.indexcoll;
import java.util.SortedMap;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Training.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Version.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/indexcoll/Wardrobe.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/Apple.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/Carrot.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/Fruit.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/SubclassTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/Tomato.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/Vegetable.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/VegetablePk.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Alarm.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Alarm.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Alarm.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: Sweater.java 8974 2006-01-04 00:43:49Z epbernard $
+//$Id$
package org.hibernate.test.annotations.inheritance.joined;
import javax.persistence.DiscriminatorValue;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Alarm.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Asset.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Asset.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Asset.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.inheritance.joined;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Asset.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Clothing.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Document.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/EventInformation.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/EventInformation.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/EventInformation.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: Sweater.java 8974 2006-01-04 00:43:49Z epbernard $
+//$Id$
package org.hibernate.test.annotations.inheritance.joined;
import javax.persistence.DiscriminatorColumn;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/EventInformation.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/File.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/FinancialAsset.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/FinancialAsset.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/FinancialAsset.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.inheritance.joined;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/FinancialAsset.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Folder.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/JoinedSubclassAndSecondaryTable.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/JoinedSubclassAndSecondaryTable.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/JoinedSubclassAndSecondaryTable.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.inheritance.joined;
import org.hibernate.Session;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/JoinedSubclassAndSecondaryTable.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/JoinedSubclassTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Parent.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Parent.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Parent.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.inheritance.joined;
import java.util.HashSet;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Parent.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Pool.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Pool.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Pool.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.inheritance.joined;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Pool.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/ProgramExecution.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/PropertyAsset.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/PropertyAsset.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/PropertyAsset.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.inheritance.joined;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/PropertyAsset.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/Sweater.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/SwimmingPool.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/SwimmingPool.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/SwimmingPool.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.inheritance.joined;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/SwimmingPool.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/joined/SymbolicLink.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/mixed/Document.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/mixed/File.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/mixed/Folder.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/mixed/SubclassTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/mixed/SymbolicLink.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/singletable/Building.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/singletable/Funk.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/singletable/House.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/singletable/Music.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/singletable/Noise.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/singletable/PaperTrash.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/singletable/Rock.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/singletable/Trash.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/union/Document.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/union/File.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/union/Folder.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/union/SubclassTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/inheritance/union/SymbolicLink.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/Contact.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/Contact.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/Contact.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.interfaces;
/**
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/Contact.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/ContactImpl.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/ContactImpl.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/ContactImpl.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.interfaces;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/ContactImpl.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/InterfacesTest.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/InterfacesTest.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/InterfacesTest.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.interfaces;
import org.hibernate.test.annotations.TestCase;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/InterfacesTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/User.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/User.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/User.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.interfaces;
import java.util.Collection;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/User.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/UserImpl.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/UserImpl.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/UserImpl.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.interfaces;
import java.util.Collection;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/interfaces/UserImpl.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/join/A.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/join/B.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/join/C.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/join/Cat.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/join/Death.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/join/Dog.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/join/DogPk.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/join/JoinTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/join/Life.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/loader/LoaderTest.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/loader/LoaderTest.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/loader/LoaderTest.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: EntityTest.java 9838 2006-04-30 19:00:59Z epbernard $
+//$Id$
package org.hibernate.test.annotations.loader;
import java.util.Set;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/loader/LoaderTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/loader/Player.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/loader/Team.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/loader/TestCase.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/lob/Book.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/lob/CompiledCode.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/lob/Editor.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/lob/LobTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Building.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Building.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Building.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.manytomany;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Building.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/BuildingCompany.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/BuildingCompany.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/BuildingCompany.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.manytomany;
import java.util.Date;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/BuildingCompany.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Cat.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/CatPk.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/City.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Company.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Company.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Company.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.manytomany;
import java.io.Serializable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Company.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Employee.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Employer.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Friend.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Group.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/GroupWithSet.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Inspector.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/InspectorPrefixes.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/KnownClient.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Man.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/ManPk.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/ManyToManyTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Permission.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Store.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Supplier.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Woman.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/WomanPk.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytomany/Zone.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/BiggestForest.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/BiggestForest.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/BiggestForest.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.manytoone;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/BiggestForest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Car.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Carz.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Carz.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Carz.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.manytoone;
import java.io.Serializable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Carz.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Child.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Color.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Customer.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Customer.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Customer.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.manytoone;
import java.io.Serializable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Customer.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Deal.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Deal.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Deal.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.manytoone;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Deal.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/DistrictUser.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/ForestType.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/ForestType.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/ForestType.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.manytoone;
import java.util.Set;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/ForestType.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Frame.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Frame.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Frame.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.manytoone;
import java.util.Set;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Frame.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Lens.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Lens.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Lens.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.manytoone;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Lens.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Lotz.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Lotz.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Lotz.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.manytoone;
import java.util.List;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Lotz.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/LotzPK.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/LotzPK.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/LotzPK.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.manytoone;
import java.io.Serializable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/LotzPK.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/ManyToOneJoinTest.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/ManyToOneJoinTest.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/ManyToOneJoinTest.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.manytoone;
import org.hibernate.test.annotations.TestCase;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/ManyToOneJoinTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/ManyToOneOnNonPkTest.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/ManyToOneOnNonPkTest.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/ManyToOneOnNonPkTest.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.manytoone;
import java.util.Date;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/ManyToOneOnNonPkTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/ManyToOneTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Node.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/NodePk.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Order.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Order.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Order.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.manytoone;
import java.io.Serializable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Order.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/OrderLine.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/OrderLine.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/OrderLine.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.manytoone;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/OrderLine.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/Parent.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/ParentPk.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/TreeType.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/TreeType.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/TreeType.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.manytoone;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/TreeType.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/User.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/UserPK.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/referencedcolumnname/GenericObject.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/referencedcolumnname/Item.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/referencedcolumnname/ManyToOneReferencedColumnNameTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/referencedcolumnname/Vendor.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/referencedcolumnname/WarehouseItem.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/manytoone/referencedcolumnname/ZItemCost.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/naturalid/Citizen.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/naturalid/NaturalIdTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/naturalid/State.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/notfound/Coin.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/notfound/Currency.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/notfound/NotFoundTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Child.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/City.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Monkey.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/OneToManyTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Order.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/OrderByTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/OrderID.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/OrderItem.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/OrderItemID.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Organisation.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Organisation.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Organisation.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.onetomany;
import java.io.Serializable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Organisation.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/OrganisationUser.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/OrganisationUser.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/OrganisationUser.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.onetomany;
import java.io.Serializable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/OrganisationUser.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Parent.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/ParentPk.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Person.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Person.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Person.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.onetomany;
import java.io.Serializable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Person.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/PoliticalParty.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Politician.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Soldier.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Street.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Tiger.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Trainer.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetomany/Troop.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/Address.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/Body.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/Client.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/Computer.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/ComputerPk.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/Heart.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/OneToOneErrorTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/OneToOneTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/Owner.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/Owner.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/Owner.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.onetoone;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/Owner.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/OwnerAddress.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/OwnerAddress.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/OwnerAddress.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.onetoone;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/OwnerAddress.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/Party.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/PartyAffiliate.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/SerialNumber.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/SerialNumberPk.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/Show.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/ShowDescription.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/Trousers.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/onetoone/TrousersZip.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/override/AssociationOverrideTest.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/override/AssociationOverrideTest.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/override/AssociationOverrideTest.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.override;
import org.hibernate.HibernateException;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/override/AssociationOverrideTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/override/Location.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/override/Location.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/override/Location.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.override;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/override/Location.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/override/Move.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/override/Move.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/override/Move.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.override;
import javax.persistence.GeneratedValue;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/override/Move.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/override/Trip.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/override/Trip.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/override/Trip.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.override;
import javax.persistence.AssociationOverride;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/override/Trip.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/persister/Card.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/persister/CollectionPersister.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/persister/Deck.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/persister/EntityPersister.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/persister/PersisterTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/polymorphism/Car.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/polymorphism/Car.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/polymorphism/Car.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.polymorphism;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/polymorphism/Car.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/polymorphism/MovingThing.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/polymorphism/MovingThing.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/polymorphism/MovingThing.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.polymorphism;
/**
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/polymorphism/MovingThing.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/polymorphism/PolymorphismTest.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/polymorphism/PolymorphismTest.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/polymorphism/PolymorphismTest.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.polymorphism;
import org.hibernate.test.annotations.TestCase;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/polymorphism/PolymorphismTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/polymorphism/SportCar.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/polymorphism/SportCar.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/polymorphism/SportCar.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.polymorphism;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/polymorphism/SportCar.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/query/Area.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/query/Captain.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/query/CasimirParticle.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/query/CasimirParticle.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/query/CasimirParticle.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.query;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/query/CasimirParticle.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/query/Chaos.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/query/Chaos.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/query/Chaos.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.query;
import java.util.Set;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/query/Chaos.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/query/Dictionary.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/query/Dimensions.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/query/Identity.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/query/Mark.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/query/Night.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/query/QueryAndSQLTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/query/SpaceShip.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/query/SynonymousDictionary.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/Bag.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/Clothes.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/House.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/Inhabitant.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/Item.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/Item.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/Item.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.referencedcolumnname;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/Item.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/ItemCost.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/ItemCost.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/ItemCost.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.referencedcolumnname;
import java.math.BigDecimal;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/ItemCost.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/Luggage.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/Postman.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/Rambler.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/ReferencedColumnNameTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/Vendor.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/Vendor.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/Vendor.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.referencedcolumnname;
import javax.persistence.Id;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/Vendor.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/WarehouseItem.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/WarehouseItem.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/WarehouseItem.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.referencedcolumnname;
import java.math.BigDecimal;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/referencedcolumnname/WarehouseItem.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Administration.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Administration.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Administration.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.reflection;
import javax.persistence.Basic;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Administration.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Availability.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Availability.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Availability.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.reflection;
/**
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Availability.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/BusTrip.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/reflection/BusTrip.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/reflection/BusTrip.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.reflection;
import java.util.Date;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/BusTrip.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/BusTripPk.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/reflection/BusTripPk.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/reflection/BusTripPk.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.reflection;
/**
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/BusTripPk.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Competition.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Competition.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Competition.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.reflection;
import javax.persistence.MappedSuperclass;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Competition.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/EJB3OverridenAnnotationReaderTest.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/reflection/EJB3OverridenAnnotationReaderTest.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/reflection/EJB3OverridenAnnotationReaderTest.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.reflection;
import java.io.BufferedInputStream;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/EJB3OverridenAnnotationReaderTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/LogListener.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/reflection/LogListener.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/reflection/LogListener.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.reflection;
import javax.persistence.PrePersist;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/LogListener.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Match.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Match.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Match.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.reflection;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Match.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Organization.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Organization.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Organization.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.reflection;
/**
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/Organization.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/OtherLogListener.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/reflection/OtherLogListener.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/reflection/OtherLogListener.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.reflection;
import javax.persistence.PrePersist;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/OtherLogListener.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/SocialSecurityMoralAccount.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/reflection/SocialSecurityMoralAccount.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/reflection/SocialSecurityMoralAccount.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.reflection;
import javax.persistence.DiscriminatorValue;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/SocialSecurityMoralAccount.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/SocialSecurityNumber.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/reflection/SocialSecurityNumber.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/reflection/SocialSecurityNumber.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.reflection;
import java.io.Serializable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/SocialSecurityNumber.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/SocialSecurityPhysicalAccount.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/reflection/SocialSecurityPhysicalAccount.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/reflection/SocialSecurityPhysicalAccount.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.reflection;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/SocialSecurityPhysicalAccount.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/TennisMatch.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/reflection/TennisMatch.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/reflection/TennisMatch.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.reflection;
import javax.persistence.AttributeOverride;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/TennisMatch.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/XMLContextTest.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/reflection/XMLContextTest.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/reflection/XMLContextTest.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.reflection;
import java.io.BufferedInputStream;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/reflection/XMLContextTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/strategy/Location.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/strategy/Storm.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/strategy/StrategyTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/tableperclass/Component.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/tableperclass/Component.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/tableperclass/Component.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.tableperclass;
import javax.persistence.Column;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/tableperclass/Component.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/tableperclass/Machine.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/tableperclass/Product.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/tableperclass/Product.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/tableperclass/Product.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.tableperclass;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/tableperclass/Product.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/tableperclass/Robot.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/tableperclass/T800.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/tableperclass/TablePerClassTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/target/Brand.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/target/Brand.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/target/Brand.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.target;
import java.util.Map;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/target/Brand.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/target/Luggage.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/target/Luggage.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/target/Luggage.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.target;
/**
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/target/Luggage.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/target/LuggageImpl.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/target/LuggageImpl.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/target/LuggageImpl.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.target;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/target/LuggageImpl.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/target/Owner.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/target/Owner.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/target/Owner.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.target;
import java.util.Map;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/target/Owner.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/target/OwnerImpl.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/target/OwnerImpl.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/target/OwnerImpl.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.target;
import java.util.Map;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/target/OwnerImpl.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/target/Size.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/target/Size.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/target/Size.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.target;
/**
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/target/Size.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/target/SizeImpl.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/target/SizeImpl.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/target/SizeImpl.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.target;
import javax.persistence.Embeddable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/target/SizeImpl.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/target/TargetTest.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/target/TargetTest.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/target/TargetTest.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.target;
import org.hibernate.test.annotations.TestCase;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/target/TargetTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/Country.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/Country.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/Country.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.tuplizer;
import javax.persistence.Embeddable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/Country.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/Cuisine.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/Cuisine.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/Cuisine.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.tuplizer;
import javax.persistence.Id;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/Cuisine.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/DataProxyHandler.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/DataProxyHandler.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/DataProxyHandler.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.tuplizer;
import java.lang.reflect.InvocationHandler;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/DataProxyHandler.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/DynamicComponentTuplizer.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/DynamicComponentTuplizer.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/DynamicComponentTuplizer.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.tuplizer;
import org.hibernate.tuple.entity.PojoEntityTuplizer;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/DynamicComponentTuplizer.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/DynamicEntityTuplizer.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/DynamicEntityTuplizer.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/DynamicEntityTuplizer.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.tuplizer;
import org.hibernate.tuple.entity.PojoEntityTuplizer;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/DynamicEntityTuplizer.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/DynamicInstantiator.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/DynamicInstantiator.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/DynamicInstantiator.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.tuplizer;
import java.io.Serializable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/DynamicInstantiator.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/EntityNameInterceptor.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/EntityNameInterceptor.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/EntityNameInterceptor.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.tuplizer;
import org.hibernate.EmptyInterceptor;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/EntityNameInterceptor.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/ProxyHelper.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/ProxyHelper.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/ProxyHelper.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.tuplizer;
import java.io.Serializable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/ProxyHelper.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/TuplizerTest.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/TuplizerTest.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/TuplizerTest.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.tuplizer;
import org.hibernate.test.annotations.TestCase;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/tuplizer/TuplizerTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/type/Dvd.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/type/MyOid.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/type/MyOidGenerator.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/type/MyOidType.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/type/TypeTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/various/Antenna.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/various/Antenna.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/various/Antenna.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.various;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/various/Antenna.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/various/Conductor.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/various/GeneratedTest.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/various/GeneratedTest.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/various/GeneratedTest.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.various;
import org.hibernate.test.annotations.TestCase;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/various/GeneratedTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/various/IndexTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/various/ProfessionalAgreement.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/various/ProfessionalAgreement.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/various/ProfessionalAgreement.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.various;
import java.util.Date;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/various/ProfessionalAgreement.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/various/Truck.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/various/Truck.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/various/Truck.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.various;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/various/Truck.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/various/Vehicule.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/various/VersionTest.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/various/VersionTest.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/various/VersionTest.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.various;
import org.hibernate.Session;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/various/VersionTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/CarModel.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/CarModel.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/CarModel.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.xml.ejb3;
import java.util.Date;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/CarModel.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Ejb3XmlTest.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Ejb3XmlTest.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Ejb3XmlTest.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.xml.ejb3;
import java.util.Date;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Ejb3XmlTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Light.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Light.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Light.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.xml.ejb3;
/**
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Light.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Lighter.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Lighter.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Lighter.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.xml.ejb3;
/**
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Lighter.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Manufacturer.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Manufacturer.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Manufacturer.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.xml.ejb3;
import java.util.HashSet;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Manufacturer.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Model.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Model.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Model.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.xml.ejb3;
/**
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/xml/ejb3/Model.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/A.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/A.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/A.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.xml.hbm;
/**
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/A.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/AImpl.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/AImpl.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/AImpl.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.xml.hbm;
import javax.persistence.Column;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/AImpl.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/B.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/B.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/B.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.xml.hbm;
/**
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/B.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/BImpl.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/BImpl.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/BImpl.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.xml.hbm;
import javax.persistence.Entity;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/BImpl.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/CloudType.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/CloudType.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/CloudType.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.xml.hbm;
/**
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/CloudType.java
___________________________________________________________________
Name: svn:keywords
+ Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/Government.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/HbmTest.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/PrimeMinister.java
___________________________________________________________________
Name: svn:keywords
- Author Date Id Revision
+ Date Revision Author Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/Sky.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/Sky.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/Sky.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.xml.hbm;
import java.util.HashSet;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/Sky.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/Z.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/Z.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/Z.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.xml.hbm;
/**
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/Z.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/ZImpl.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/ZImpl.java 2008-06-04 14:05:50 UTC (rev 14735)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/ZImpl.java 2008-06-04 14:23:42 UTC (rev 14736)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.xml.hbm;
import javax.persistence.Column;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/xml/hbm/ZImpl.java
___________________________________________________________________
Name: svn:keywords
+ Id
16 years, 6 months
Hibernate SVN: r14735 - in annotations/trunk: src/java/org/hibernate/cfg and 3 other directories.
by hibernate-commits@lists.jboss.org
Author: hardy.ferentschik
Date: 2008-06-04 10:05:50 -0400 (Wed, 04 Jun 2008)
New Revision: 14735
Added:
annotations/trunk/src/test/org/hibernate/test/annotations/backquotes/
annotations/trunk/src/test/org/hibernate/test/annotations/backquotes/BackquoteTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/backquotes/Bug.java
annotations/trunk/src/test/org/hibernate/test/annotations/backquotes/Category.java
Modified:
annotations/trunk/
annotations/trunk/src/java/org/hibernate/cfg/Ejb3JoinColumn.java
annotations/trunk/src/test/org/hibernate/test/annotations/quote/QuoteTest.java
annotations/trunk/src/test/org/hibernate/test/annotations/quote/Role.java
annotations/trunk/src/test/org/hibernate/test/annotations/quote/User.java
Log:
ANN-718 :
- Added test case for issue
- Changed Ejb3JoinColumn to use Column.getQuotedName() when calling Mappings.getMappings().getLogicalColumnNamegetMappings()
- Added/Edited some svn properties
Property changes on: annotations/trunk
___________________________________________________________________
Name: svn:ignore
+ target
test_output
build
.*
Modified: annotations/trunk/src/java/org/hibernate/cfg/Ejb3JoinColumn.java
===================================================================
--- annotations/trunk/src/java/org/hibernate/cfg/Ejb3JoinColumn.java 2008-06-04 04:51:36 UTC (rev 14734)
+++ annotations/trunk/src/java/org/hibernate/cfg/Ejb3JoinColumn.java 2008-06-04 14:05:50 UTC (rev 14735)
@@ -208,7 +208,7 @@
) {
Column col = (Column) identifier.getColumnIterator().next();
- String defaultName = mappings.getLogicalColumnName( col.getName(), identifier.getTable() );
+ String defaultName = mappings.getLogicalColumnName( col.getQuotedName(), identifier.getTable() );
if ( pkJoinAnn != null || joinAnn != null ) {
String colName;
String columnDefinition;
@@ -268,7 +268,7 @@
) {
String columnName;
String logicalReferencedColumn = getMappings().getLogicalColumnName(
- referencedColumn.getName(), referencedEntity.getTable()
+ referencedColumn.getQuotedName(), referencedEntity.getTable()
);
boolean mappedBySide = mappedByTableName != null || mappedByPropertyName != null;
boolean ownerSide = getPropertyName() != null;
Added: annotations/trunk/src/test/org/hibernate/test/annotations/backquotes/BackquoteTest.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/backquotes/BackquoteTest.java (rev 0)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/backquotes/BackquoteTest.java 2008-06-04 14:05:50 UTC (rev 14735)
@@ -0,0 +1,27 @@
+//$Id$
+package org.hibernate.test.annotations.backquotes;
+
+import junit.framework.TestCase;
+
+import org.hibernate.cfg.AnnotationConfiguration;
+
+/**
+ * Testcase for ANN-718 - @JoinTable / @JoinColumn fail when using backquotes in PK field name.
+ *
+ * @author Hardy Ferentschik
+ *
+ */
+public class BackquoteTest extends TestCase {
+
+ public void testBackquotes() {
+ try {
+ AnnotationConfiguration config = new AnnotationConfiguration();
+ config.addAnnotatedClass(Bug.class);
+ config.addAnnotatedClass(Category.class);
+ config.buildSessionFactory();
+ }
+ catch( Exception e ) {
+ fail(e.getMessage());
+ }
+ }
+}
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/backquotes/BackquoteTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Added: annotations/trunk/src/test/org/hibernate/test/annotations/backquotes/Bug.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/backquotes/Bug.java (rev 0)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/backquotes/Bug.java 2008-06-04 14:05:50 UTC (rev 14735)
@@ -0,0 +1,49 @@
+//$Id$
+package org.hibernate.test.annotations.backquotes;
+
+import java.util.List;
+
+import javax.persistence.Column;
+import javax.persistence.Entity;
+import javax.persistence.Id;
+import javax.persistence.JoinTable;
+import javax.persistence.ManyToMany;
+
+@Entity
+public class Bug
+{
+ @Id
+ @Column(name="`bug_id`")
+ private int id;
+
+ @Column(name="`title`")
+ private String title;
+
+ @ManyToMany
+ @JoinTable(name="`bug_category`")
+ private List<Category> categories;
+
+ public List<Category> getCategories() {
+ return categories;
+ }
+
+ public void setCategories(List<Category> categories) {
+ this.categories = categories;
+ }
+
+ public int getId() {
+ return id;
+ }
+
+ public void setId(int id) {
+ this.id = id;
+ }
+
+ public String getTitle() {
+ return title;
+ }
+
+ public void setTitle(String title) {
+ this.title = title;
+ }
+}
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/backquotes/Bug.java
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Added: annotations/trunk/src/test/org/hibernate/test/annotations/backquotes/Category.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/backquotes/Category.java (rev 0)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/backquotes/Category.java 2008-06-04 14:05:50 UTC (rev 14735)
@@ -0,0 +1,33 @@
+//$Id$
+package org.hibernate.test.annotations.backquotes;
+
+import javax.persistence.Column;
+import javax.persistence.Entity;
+import javax.persistence.Id;
+
+@Entity
+public class Category
+{
+ @Id
+ @Column(name="`cat_id`")
+ private int id;
+
+ @Column(name="`title`")
+ private String title;
+
+ public int getId() {
+ return id;
+ }
+
+ public void setId(int id) {
+ this.id = id;
+ }
+
+ public String getTitle() {
+ return title;
+ }
+
+ public void setTitle(String title) {
+ this.title = title;
+ }
+}
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/backquotes/Category.java
___________________________________________________________________
Name: svn:keywords
+ Id
Name: svn:eol-style
+ native
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/quote/QuoteTest.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/quote/QuoteTest.java 2008-06-04 04:51:36 UTC (rev 14734)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/quote/QuoteTest.java 2008-06-04 14:05:50 UTC (rev 14735)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.quote;
import org.hibernate.test.annotations.TestCase;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/quote/QuoteTest.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/quote/Role.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/quote/Role.java 2008-06-04 04:51:36 UTC (rev 14734)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/quote/Role.java 2008-06-04 14:05:50 UTC (rev 14735)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.quote;
import java.io.Serializable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/quote/Role.java
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: annotations/trunk/src/test/org/hibernate/test/annotations/quote/User.java
===================================================================
--- annotations/trunk/src/test/org/hibernate/test/annotations/quote/User.java 2008-06-04 04:51:36 UTC (rev 14734)
+++ annotations/trunk/src/test/org/hibernate/test/annotations/quote/User.java 2008-06-04 14:05:50 UTC (rev 14735)
@@ -1,4 +1,4 @@
-//$Id: $
+//$Id$
package org.hibernate.test.annotations.quote;
import java.io.Serializable;
Property changes on: annotations/trunk/src/test/org/hibernate/test/annotations/quote/User.java
___________________________________________________________________
Name: svn:keywords
+ Id
16 years, 6 months
Hibernate SVN: r14734 - core/trunk/documentation/releasenotes/src/main/docbook/en-US.
by hibernate-commits@lists.jboss.org
Author: bsatguna
Date: 2008-06-04 00:51:36 -0400 (Wed, 04 Jun 2008)
New Revision: 14734
Modified:
core/trunk/documentation/releasenotes/src/main/docbook/en-US/Article_Info.xml
core/trunk/documentation/releasenotes/src/main/docbook/en-US/Author_Group.xml
core/trunk/documentation/releasenotes/src/main/docbook/en-US/Book_Info.xml
core/trunk/documentation/releasenotes/src/main/docbook/en-US/Release_Notes.ent
core/trunk/documentation/releasenotes/src/main/docbook/en-US/Release_Notes.xml
Log:
adding more content for Release notes of 3.3.0.CR2 version
Modified: core/trunk/documentation/releasenotes/src/main/docbook/en-US/Article_Info.xml
===================================================================
--- core/trunk/documentation/releasenotes/src/main/docbook/en-US/Article_Info.xml 2008-06-03 23:51:40 UTC (rev 14733)
+++ core/trunk/documentation/releasenotes/src/main/docbook/en-US/Article_Info.xml 2008-06-04 04:51:36 UTC (rev 14734)
@@ -3,15 +3,15 @@
]>
<articleinfo id="Release_Notes-Hibernate-Standalone">
- <title>Enterprise Hibernate x.y.z Release Notes</title>
+ <title>Hibernate</title>
<subtitle>Release Notes</subtitle>
- <issuenum>0.1</issuenum>
- <productnumber>0</productnumber>
- <abstract><para>This document outlines information necessary for installation, migration and bug fixes.</para>
+ <issuenum>3.3.0</issuenum>
+ <productnumber>1</productnumber>
+ <abstract><para>This document provides the release notes for Hibernate &VERSION;.</para>
</abstract>
<corpauthor><inlinemediaobject>
<imageobject>
- <imagedata fileref="Common_Content/images/redhat-logo.svg" />
+ <imagedata fileref="Common_Content/images/hibernate_logo_a.png" />
</imageobject>
</inlinemediaobject>
</corpauthor><copyright>
@@ -19,7 +19,4 @@
<holder>&HOLDER;</holder>
</copyright>
<xi:include href="Common_Content/Legal_Notice.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-</articleinfo>
-
-
-
+</articleinfo>
\ No newline at end of file
Modified: core/trunk/documentation/releasenotes/src/main/docbook/en-US/Author_Group.xml
===================================================================
--- core/trunk/documentation/releasenotes/src/main/docbook/en-US/Author_Group.xml 2008-06-03 23:51:40 UTC (rev 14733)
+++ core/trunk/documentation/releasenotes/src/main/docbook/en-US/Author_Group.xml 2008-06-04 04:51:36 UTC (rev 14734)
@@ -3,10 +3,9 @@
]>
<authorgroup>
- <corpauthor>FF0000 Headgear Documentation Group</corpauthor>
+ <corpauthor>Redhat Documentation Group</corpauthor>
<author>
- <firstname>Dude</firstname>
- <surname>McDude</surname>
+
<affiliation>
<orgname>My Org</orgname>
<orgdiv>Best Div in the place</orgdiv>
Modified: core/trunk/documentation/releasenotes/src/main/docbook/en-US/Book_Info.xml
===================================================================
--- core/trunk/documentation/releasenotes/src/main/docbook/en-US/Book_Info.xml 2008-06-03 23:51:40 UTC (rev 14733)
+++ core/trunk/documentation/releasenotes/src/main/docbook/en-US/Book_Info.xml 2008-06-04 04:51:36 UTC (rev 14734)
@@ -3,7 +3,7 @@
]>
<articleinfo id="Release_Notes-Product_Name_and_Version">
- <title>Product Name and Version</title>
+ <title>Hibernate</title>
<subtitle>Release Notes</subtitle>
<issuenum>0.1</issuenum>
<productnumber>0</productnumber>
@@ -12,7 +12,7 @@
</abstract>
<corpauthor><inlinemediaobject>
<imageobject>
- <imagedata fileref="Common_Content/images/redhat-logo.svg" />
+ <imagedata fileref="/images/hibernate_logo_a.png" />
</imageobject>
</inlinemediaobject>
</corpauthor><copyright>
Modified: core/trunk/documentation/releasenotes/src/main/docbook/en-US/Release_Notes.ent
===================================================================
--- core/trunk/documentation/releasenotes/src/main/docbook/en-US/Release_Notes.ent 2008-06-03 23:51:40 UTC (rev 14733)
+++ core/trunk/documentation/releasenotes/src/main/docbook/en-US/Release_Notes.ent 2008-06-04 04:51:36 UTC (rev 14734)
@@ -1,3 +1,4 @@
<!ENTITY PRODUCT "Hibernate Standalone">
<!ENTITY BOOKID "Release_Notes">
-<!ENTITY VERSION "3.2.4.x">
+<!ENTITY VERSION "3.3.0.CR2">
+<!ENTITY YEAR "2008">
Modified: core/trunk/documentation/releasenotes/src/main/docbook/en-US/Release_Notes.xml
===================================================================
--- core/trunk/documentation/releasenotes/src/main/docbook/en-US/Release_Notes.xml 2008-06-03 23:51:40 UTC (rev 14733)
+++ core/trunk/documentation/releasenotes/src/main/docbook/en-US/Release_Notes.xml 2008-06-04 04:51:36 UTC (rev 14734)
@@ -1,4 +1,28 @@
<?xml version="1.0"?>
+<!--
+ ~ Hibernate, Relational Persistence for Idiomatic Java
+ ~
+ ~ Copyright (c) 2008, Red Hat Middleware LLC or third-party contributors as
+ ~ indicated by the @author tags or express copyright attribution
+ ~ statements applied by the authors. All third-party contributions are
+ ~ distributed under license by Red Hat Middleware LLC.
+ ~
+ ~ This copyrighted material is made available to anyone wishing to use, modify,
+ ~ copy, or redistribute it subject to the terms and conditions of the GNU
+ ~ Lesser General Public License, as published by the Free Software Foundation.
+ ~
+ ~ This program is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ ~ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ ~ for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public License
+ ~ along with this distribution; if not, write to:
+ ~ Free Software Foundation, Inc.
+ ~ 51 Franklin Street, Fifth Floor
+ ~ Boston, MA 02110-1301 USA
+ -->
+
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd">
<article id="HIB_Release_Notes">
<xi:include href="Article_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/>
@@ -103,40 +127,7 @@
The following unit tests are expected to fail:
</para>
- <formalpara>
- <title>
- Ehcache tests (Ehcache is not provided in this distribution):
- </title>
- <para>
- org.hibernate.test.cache.ehcache.EhCacheTest.testQueryCacheInvalidation
- org.hibernate.test.cache.ehcache.EhCacheTest.testEmptySecondLevelCacheEntry
- org.hibernate.test.cache.ehcache.EhCacheTest.testStaleWritesLeaveCacheConsistent
- </para>
- </formalpara>
- <formalpara>
- <title>Expected unit test failure against MS SQL 2005</title>
- <para>
- org.hibernate.test.legacy.MasterDetailTest.testCachedCollectionRefresh
- </para>
- </formalpara>
- <formalpara>
- <title>
- "FailureExpected" tests (known issues to be addressed in the future):
- </title>
- <para>
- org.hibernate.test.hql.ASTParserLoadingTest.testParameterTypeMismatchFailureExpected
- org.hibernate.test.hql.CriteriaHQLAlignmentTest.testCriteriaAggregationReturnTypeFailureExpected
- org.hibernate.test.hql.HQLTest.testEmptyInListFailureExpected
- org.hibernate.test.hql.HQLTest.testMaxindexHqlFuncttestMultipleElementAccessorOperatorsFailureExpectedionInElementAccessorFailureExpected
- org.hibernate.test.hql.HQLTest.testMultipleElementAccessorOperatorsFailureExpected
- org.hibernate.test.hql.HQLTest.testKeyManyToOneJoinFailureExpected
- org.hibernate.test.hql.HQLTest.testDuplicateExplicitJoinFailureExpected
- org.hibernate.test.keymanytoone.bidir.component.EagerKeyManyToOneTest.testLoadEntityWithEagerFetchingToKeyManyToOneReferenceBackToSelfFailureExpected
- org.hibernate.test.legacy.SQLLoaderTest.testReturnPropertyComponentRenameFailureExpected
- org.hibernate.test.readonly.ReadOnlyTest.testReadOnlyOnProxiesFailureExpected
- org.hibernate.test.sql.hand.query.NativeSQLQueriesTest.testCompositeIdJoinsFailureExpected
- </para>
- </formalpara>
+
</section>
</section>
@@ -146,74 +137,78 @@
<section id="Issue_Type_Bugs">
<title>Issue type: Bugs</title>
<formalpara>
- <title>[HHH-2683] - <property>"datediff"</property> is declared as <methodname>NoArgSQLFunction</methodname> in H2Dialect, but actually accepts 3 arguments.</title>
+ <title><ulink url="http://opensource.atlassian.com/projects/hibernate/browse/HHH-2683">[HHH-2683]</ulink> - <property>"datediff"</property> is declared as <literal>NoArgSQLFunction</literal> in H2Dialect, but actually accepts 3 arguments.</title>
<para>
- This issue is now resolved. It has been changed from <methodname>NoArgSQLFunction</methodname> to <methodname>StandardSQLFunction</methodname>.
+ This issue is now resolved. It has been changed from <literal>NoArgSQLFunction</literal> to <literal>StandardSQLFunction</literal>.
</para>
</formalpara>
<formalpara>
- <title><ulink>[HHH-3257]</ulink> - Content images not displayed</title>
- <para></para>
+ <title><ulink url="http://opensource.atlassian.com/projects/hibernate/browse/HHH-3257">[HHH-3257]</ulink> - Content images not displayed</title>
+ <para>This issue affects the use of jdocbook plugin. useRelativeImageUris is now set to false to fix this error.</para>
</formalpara>
<formalpara>
- <title><ulink>[HHH-3260]</ulink> - Hibernate wraps a listener init or destroy exception into an AssertionFailure</title><para></para>
+ <title><ulink url="http://opensource.atlassian.com/projects/hibernate/browse/HHH-3260">[HHH-3260]</ulink> - Hibernate wraps a listener init or destroy exception into an AssertionFailure</title>
+ <para><literal>AssertionFailure</literal> is now replaced with <literal>HibernateException</literal> to catch <literal>listener</literal> exception errors.</para>
</formalpara>
<formalpara>
- <title><ulink>[HHH-3261]</ulink> - Do not wrap exceptions raised by event listeners (at init or destroy time)</title><para></para>
+ <title><ulink url="http://opensource.atlassian.com/projects/hibernate/browse/HHH-3261">[HHH-3261]</ulink> - Do not wrap exceptions raised by event listeners (at init or destroy time)</title>
+ <para>Use of <literal>AssertionFailureExceptions</literal> has been removed. </para>
</formalpara>
<formalpara>
- <title>[HHH-3265] - change license url in pom to http://www.gnu.org/licenses/lgpl-2.1.html</title><para></para>
+ <title><ulink url="http://opensource.atlassian.com/projects/hibernate/browse/HHH-3265">[HHH-3265]</ulink> - change license url in pom to http://www.gnu.org/licenses/lgpl-2.1.html</title>
+ <para>The license information has been updated to version 2.1 of LGPL.</para>
</formalpara>
<formalpara>
- <title>[HHH-3266] - distribution bundle missing jta dependency</title><para></para>
+ <title><ulink url="http://opensource.atlassian.com/projects/hibernate/browse/HHH-3266">[HHH-3266]</ulink> - distribution bundle missing jta dependency</title>
+ <para>The missing dependency set has been updated in the <filename>dist.xml</filename> file.</para>
</formalpara>
<formalpara>
- <title>[HHH-3272] - using of Integer.valueOf(int), which is not available in JDK 1.4</title><para></para>
+ <title><ulink url="http://opensource.atlassian.com/projects/hibernate/browse/HHH-3272">[HHH-3272]</ulink> - use of Integer.valueOf(int) which is not available in JDK 1.4</title>
+ <para>This has been updated for the compatible JDK version. Instead of <literal>Integer.valueOf(int)</literal>, <literal>new Integer(int)</literal> is used.</para>
</formalpara>
<formalpara>
- <title>[HHH-3282] - DB2Dialect should report supportsLobValueChangePropogation() == false</title><para></para>
+ <title><ulink url="http://opensource.atlassian.com/projects/hibernate/browse/HHH-3282">[HHH-3282]</ulink> - <literal>DB2Dialect</literal> should report <literal>supportsLobValueChangePropogation()</literal> as false</title>
+ <para>The above change has been incorporated.</para>
</formalpara>
</section>
<section id="Issue_Type_Improvement">
<title>Improvement</title>
- <formalpara>
- <title>[HHH-2060] - To be able to use <generator> with <composite-id></title><para></para>
- </formalpara>
- <formalpara>
- <title>[HHH-2506] - Make javassist the default ByteCodeProvider</title><para></para>
- </formalpara>
- <formalpara>
- <title>[HHH-2875] - repackage cglib/asm under org.hibernate namespace</title><para></para>
- </formalpara>
- <formalpara>
- <title>[HHH-3229] - Make cascade rules more transparent/explicit/deterministic</title><para></para>
- </formalpara>
- <formalpara>
- <title>[HHH-3269] - upgrade to jDocBook plugin version 2.1.1</title><para></para>
- </formalpara>
- <formalpara>
- <title>[HHH-3276] - review proposed new doc styling</title><para></para>
- </formalpara>
- <formalpara>
- <title>[HHH-3283] - protect BulkManipulationTest#testInsertWithGeneratedTimestampVersion where Dialect#supportsParametersInInsertSelect == false</title><para></para>
- </formalpara>
- <formalpara>
- <title>[HHH-3286] - Move ACTION_PERSIST_SKIPLAZY from HEM to Core in CascadingAction</title><para></para>
- </formalpara>
+
+ <formalpara><title><ulink url="http://opensource.atlassian.com/projects/hibernate/browse/HHH-1786">[HHH-1786]</ulink> JTASessionContext.CleanupSynch does not remove sessions from currentSessionMap</title><para></para></formalpara>
+
+ <formalpara><title><ulink url="http://opensource.atlassian.com/projects/hibernate/browse/HHH-2060">[HHH-2060]</ulink> - To be able to use <literal><generator></literal> with <composite-id></title>
+ <para>Functionality to use <literal><generator></literal> has been incorporated.</para></formalpara>
+
+ <formalpara><title><ulink url="http://opensource.atlassian.com/projects/hibernate/browse/HHH-2506">[HHH-2506]</ulink> - Make javassist the default ByteCodeProvider</title>
+ <para>This is now incorporated into this release.</para></formalpara>
+
+ <formalpara><title><ulink url="http://opensource.atlassian.com/projects/hibernate/browse/HHH-2875">[HHH-2875]</ulink> - repackage cglib/asm under org.hibernate namespace</title>
+ <para></para></formalpara>
+
+ <formalpara><title><ulink url="http://opensource.atlassian.com/projects/hibernate/browse/HHH-3229">[HHH-3229]</ulink> - Make cascade rules more transparent/explicit/deterministic</title><para></para></formalpara>
+
+ <formalpara><title><ulink url="http://opensource.atlassian.com/projects/hibernate/browse/HHH-3269">[HHH-3269]</ulink> - upgrade to jDocBook plugin version 2.1.1</title><para></para></formalpara>
+
+ <formalpara><title><ulink url="http://opensource.atlassian.com/projects/hibernate/browse/HHH-3276">[HHH-3276]</ulink> - review proposed new doc styling</title><para></para></formalpara>
+
+ <formalpara><title><ulink url="http://opensource.atlassian.com/projects/hibernate/browse/HHH-3283">[HHH-3283]</ulink> - protect BulkManipulationTest#testInsertWithGeneratedTimestampVersion where Dialect#supportsParametersInInsertSelect == false</title><para></para></formalpara>
+
+ <formalpara><title><ulink url="http://opensource.atlassian.com/projects/hibernate/browse/HHH-3286">[HHH-3286]</ulink> - Move ACTION_PERSIST_SKIPLAZY from HEM to Core in CascadingAction</title><para></para></formalpara>
+
</section>
<section id="Issue_Type_New_Feature"><title>New Feature</title>
<formalpara>
- <title>[HHH-3279] - create series of maven plugins offering functionality of the ant tools</title><para></para>
+ <title><ulink url="http://opensource.atlassian.com/projects/hibernate/browse/HHH-3279">[HHH-3279]</ulink> - create series of maven plugins offering functionality of the ant tools</title><para></para>
</formalpara>
</section>
<section id="Issue_Type_Task"><title>Task</title>
<formalpara>
- <title>[HHH-3270] - follow up on documentation license questions</title><para></para>
+ <title><ulink url="http://opensource.atlassian.com/projects/hibernate/browse/HHH-3270">[HHH-3270]</ulink> - follow up on documentation license questions</title><para></para>
</formalpara>
</section>
16 years, 6 months
Hibernate SVN: r14733 - core/trunk/documentation/releasenotes/src/main/docbook/en-US.
by hibernate-commits@lists.jboss.org
Author: bsatguna
Date: 2008-06-03 19:51:40 -0400 (Tue, 03 Jun 2008)
New Revision: 14733
Modified:
core/trunk/documentation/releasenotes/src/main/docbook/en-US/Release_Notes.xml
Log:
adding content for 3.3.0.CR2 release notes
Modified: core/trunk/documentation/releasenotes/src/main/docbook/en-US/Release_Notes.xml
===================================================================
--- core/trunk/documentation/releasenotes/src/main/docbook/en-US/Release_Notes.xml 2008-06-03 20:47:14 UTC (rev 14732)
+++ core/trunk/documentation/releasenotes/src/main/docbook/en-US/Release_Notes.xml 2008-06-03 23:51:40 UTC (rev 14733)
@@ -8,62 +8,299 @@
Overview
</title>
<para>
- These release notes contain important information regarding Hibernate &VERSION;. This document covers installation and migration notes, new features and bug fixes.
+ These release notes contain important information regarding Hibernate &VERSION; release. This document lists the necessary software that must be installed before using Hibernate. Users of previous versions of Hibernate may refer to <xref linkend="Issues"/> to find the latest JIRA issue fixes. In addition, the latest <xref linkend="Documentation"/>, product support and license links are also provided.
</para>
-
+
<section id="Background">
<title>Background</title>
<para>
- Hibernate is a powerful object/relational mapping tool for building Java applications. It significantly reduces repetitive persistence related programming tasks by mapping the object model's data representation to a relational data model. The mapping feature eliminates paradigm mismatch issues caused by data handling between objects and relational databases.
+ Hibernate is a powerful object/relational mapping tool and a query service for building Java applications. Hibernate offers a sophisticated object-oriented HQL (Hibernate query language) allowing the programmer to make use of polymorphic queries. Queries can be expressed in native SQL or using Java-based Criteria and Example queries. However, please read these release notes for more information on software that are compatible with this version of Hibernate release.
</para>
</section>
</section>
<section id="Important_Notes">
<title>Installation And Migration Guide</title>
<para>
- This section contains all information related to installing hibernate, testing the installation and running some examples.
+ This section lists the software that must be installed on your local machine before beginning to use Hibernate. Migration notes are also listed in this section for users who will be using existing databases along with Hibernate.
</para>
+
+ <section id="Prerequisites">
+ <title>Prerequisites</title>
+ <para>
+ The software listed in this section needs to be installed before using Hibernate, running unit tests or running the demo.
+ </para>
+ <section id="Using_Hibernate">
+ <title>Using Hibernate</title>
+ <para><application>JDK 1.5</application></para>
+ <para>
+ To build Java applications with Hibernate you must have <application>JDK</application> 1.5 version installed. While this version is compatible with Hibernate, version 1.4 is no longer supported. Once installation of JDK 1.5 version is completed, you must set the environment variables.
+ </para>
+
+ </section>
+
+ <section id="Testing_Hibernate_And_Running_Demo">
+ <title>Testing Hibernate and Running the demo</title>
+ <para>
+ To test Hibernate and run the demo, you will need <application>Apache Ant 1.7.0</application> and <application>JUnit 3.8.1</application>.
+ </para>
+
+ <itemizedlist>
+ <listitem>
+ <para><application>Apache Ant 1.7.0</application></para>
+ <para>Apache Ant can be downloaded from this <ulink url="http://ant.apache.org">link</ulink>. You must set the <property>ANT_HOME</property> environment variable to point to the Apache Ant install location. You may refer to the manual available on their website for installing and setting up Apache Ant for use. </para>
+ </listitem>
+ <listitem>
+ <para><application>JUnit 3.8.1</application></para>
+ <para>
+ To run JUnit tests, you may use JUnit 3.8.1 version which can be downloaded from <ulink url="http://www.junit.org/">here</ulink>. After installation, copy <filename>junit.jar</filename> to <literal>$ANT_HOME/lib</literal> directory. <xref linkend="Running_JUnit_Tests"/> provides further notes on running JUnit tests.
+ </para>
+
+ </listitem>
+ </itemizedlist>
+ </section>
+ </section>
+
<section id="Installation_Notes">
<title>Installation Notes</title>
<para>
- Any information that the user must keep in mind before or during installation has to be specified here.
+ Extract files from the Hibernate <literal>ZIP</literal> file to the desired location. Open the directory where you have extracted these files. To use Hibernate, you must configure the project's classpath settings to point to these <filename>jar</filename> files. Settings for individual IDEs differ, but normally you would add the <filename>jar</filename> files as external library files.
</para>
+
</section>
- <section id="Migration_Guide">
- <title>Migration Guide</title>
- <para>
- Information regarding upgrades
- </para>
+ <section id="Migration_Notes">
+ <title>Migration Notes</title>
+ <section id="Configuring_Database">
+ <title>Configuring your database</title>
+ <para>
+ To use your database with Hibernate, copy your <literal>JDBC</literal> driver into the <literal>lib</literal> directory. Then edit the <filename>hibernate.properties</filename> file in the <literal>etc</literal> directory. Additional configuration notes are available in <citetitle pubwork="book">Hibernate Reference Guide</citetitle>, chapter 3: Configuration. The Hibernate supported databases are: Oracle9i, Oracle10g, MS SQL 2005, PostgreSQL and MySQL.
+ </para>
+ <section id="Oracle_Users">
+ <title>Oracle users</title>
+ <para>
+ OracleDialect and Oracle9Dialect have been deprecated. Oracle8iDialect, Oracle9iDialect, or Oracle10gDialect should be used instead.
+ </para>
+ </section>
+ </section>
</section>
</section>
- <section id="Features_And_Bug_Fixes">
- <title>New features and bug fixes</title>
+
+ <section id="Running_JUnit_Tests">
+ <title>Running JUnit Tests</title>
+
<para>
- All new features and bug fixes mentioned in these release notes are applicable to VERSION;.
+ It is recommended that the Hibernate unit tests be executed using the same dialect and version of JDBC that will be used in production, to ensure that the configuration setting, <property>hibernate.jdbc.batch_versioned_data</property>, is set properly. The value for <property>hibernate.jdbc.batch_versioned_data</property> determines if Hibernate will use batches for updating versioned data (an optimization).
</para>
- <section id="New_Features">
- <title>New Features</title>
+ <para>
+ Optimistic locking relies on the ability to obtain the number of rows updated. If the JDBC driver does not return update counts for each command in a batch, then <property>hibernate.jdbc.batch_versioned_data</property> should be set to "false".
+ </para>
+ <para>
+ The unit tests use the settings in <filename>etc/hibernate.properties</filename>. The value for <property>hibernate.jdbc.batch_versioned_data</property> is set to <parameter>true</parameter> in that file. If the unit tests involving optimistic locking fail, then the appropriate value for this flag is <parameter>false</parameter>. Some versions of Oracle JDBC do not support returning update counts for each command in a batch, so it is particularly important to test using the same version of JDBC as will be used in production.
+ </para>
+
+ <section id="Expected_JUnit_Failures_And_Tests">
+ <title>Expected failures and tests</title>
<para>
- Provide a summary of new features applicable to this release.
+ The following unit tests are expected to fail:
</para>
+
+ <formalpara>
+ <title>
+ Ehcache tests (Ehcache is not provided in this distribution):
+ </title>
+ <para>
+ org.hibernate.test.cache.ehcache.EhCacheTest.testQueryCacheInvalidation
+ org.hibernate.test.cache.ehcache.EhCacheTest.testEmptySecondLevelCacheEntry
+ org.hibernate.test.cache.ehcache.EhCacheTest.testStaleWritesLeaveCacheConsistent
+ </para>
+ </formalpara>
+ <formalpara>
+ <title>Expected unit test failure against MS SQL 2005</title>
+ <para>
+ org.hibernate.test.legacy.MasterDetailTest.testCachedCollectionRefresh
+ </para>
+ </formalpara>
+ <formalpara>
+ <title>
+ "FailureExpected" tests (known issues to be addressed in the future):
+ </title>
+ <para>
+ org.hibernate.test.hql.ASTParserLoadingTest.testParameterTypeMismatchFailureExpected
+ org.hibernate.test.hql.CriteriaHQLAlignmentTest.testCriteriaAggregationReturnTypeFailureExpected
+ org.hibernate.test.hql.HQLTest.testEmptyInListFailureExpected
+ org.hibernate.test.hql.HQLTest.testMaxindexHqlFuncttestMultipleElementAccessorOperatorsFailureExpectedionInElementAccessorFailureExpected
+ org.hibernate.test.hql.HQLTest.testMultipleElementAccessorOperatorsFailureExpected
+ org.hibernate.test.hql.HQLTest.testKeyManyToOneJoinFailureExpected
+ org.hibernate.test.hql.HQLTest.testDuplicateExplicitJoinFailureExpected
+ org.hibernate.test.keymanytoone.bidir.component.EagerKeyManyToOneTest.testLoadEntityWithEagerFetchingToKeyManyToOneReferenceBackToSelfFailureExpected
+ org.hibernate.test.legacy.SQLLoaderTest.testReturnPropertyComponentRenameFailureExpected
+ org.hibernate.test.readonly.ReadOnlyTest.testReadOnlyOnProxiesFailureExpected
+ org.hibernate.test.sql.hand.query.NativeSQLQueriesTest.testCompositeIdJoinsFailureExpected
+ </para>
+ </formalpara>
</section>
- <section id="Bug_Fixes">
- <title>Bug Fixes</title>
- <para>
- The following bugs have been addressed and resolved in this release.
- </para>
+ </section>
+
+ <section id="Issues" xreflabel="Issues">
+ <title>Issues</title>
+
+ <section id="Issue_Type_Bugs">
+ <title>Issue type: Bugs</title>
+ <formalpara>
+ <title>[HHH-2683] - <property>"datediff"</property> is declared as <methodname>NoArgSQLFunction</methodname> in H2Dialect, but actually accepts 3 arguments.</title>
+ <para>
+ This issue is now resolved. It has been changed from <methodname>NoArgSQLFunction</methodname> to <methodname>StandardSQLFunction</methodname>.
+ </para>
+ </formalpara>
+
+ <formalpara>
+ <title><ulink>[HHH-3257]</ulink> - Content images not displayed</title>
+ <para></para>
+ </formalpara>
+ <formalpara>
+ <title><ulink>[HHH-3260]</ulink> - Hibernate wraps a listener init or destroy exception into an AssertionFailure</title><para></para>
+ </formalpara>
+ <formalpara>
+ <title><ulink>[HHH-3261]</ulink> - Do not wrap exceptions raised by event listeners (at init or destroy time)</title><para></para>
+ </formalpara>
+ <formalpara>
+ <title>[HHH-3265] - change license url in pom to http://www.gnu.org/licenses/lgpl-2.1.html</title><para></para>
+ </formalpara>
+ <formalpara>
+ <title>[HHH-3266] - distribution bundle missing jta dependency</title><para></para>
+ </formalpara>
+ <formalpara>
+ <title>[HHH-3272] - using of Integer.valueOf(int), which is not available in JDK 1.4</title><para></para>
+ </formalpara>
+ <formalpara>
+ <title>[HHH-3282] - DB2Dialect should report supportsLobValueChangePropogation() == false</title><para></para>
+ </formalpara>
</section>
+
+ <section id="Issue_Type_Improvement">
+ <title>Improvement</title>
+ <formalpara>
+ <title>[HHH-2060] - To be able to use <generator> with <composite-id></title><para></para>
+ </formalpara>
+ <formalpara>
+ <title>[HHH-2506] - Make javassist the default ByteCodeProvider</title><para></para>
+ </formalpara>
+ <formalpara>
+ <title>[HHH-2875] - repackage cglib/asm under org.hibernate namespace</title><para></para>
+ </formalpara>
+ <formalpara>
+ <title>[HHH-3229] - Make cascade rules more transparent/explicit/deterministic</title><para></para>
+ </formalpara>
+ <formalpara>
+ <title>[HHH-3269] - upgrade to jDocBook plugin version 2.1.1</title><para></para>
+ </formalpara>
+ <formalpara>
+ <title>[HHH-3276] - review proposed new doc styling</title><para></para>
+ </formalpara>
+ <formalpara>
+ <title>[HHH-3283] - protect BulkManipulationTest#testInsertWithGeneratedTimestampVersion where Dialect#supportsParametersInInsertSelect == false</title><para></para>
+ </formalpara>
+ <formalpara>
+ <title>[HHH-3286] - Move ACTION_PERSIST_SKIPLAZY from HEM to Core in CascadingAction</title><para></para>
+ </formalpara>
+ </section>
+
+ <section id="Issue_Type_New_Feature"><title>New Feature</title>
+ <formalpara>
+ <title>[HHH-3279] - create series of maven plugins offering functionality of the ant tools</title><para></para>
+ </formalpara>
+ </section>
+
+
+ <section id="Issue_Type_Task"><title>Task</title>
+ <formalpara>
+ <title>[HHH-3270] - follow up on documentation license questions</title><para></para>
+ </formalpara>
+ </section>
+
+
+
</section>
- <section id="Documentation">
+ <section id="Documentation" xreflabel="documentation">
<title>Documentation</title>
- <para>
- List all the documentation links here and where to find them.
- </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ The <citetitle pubwork="book">Hibernate reference guide</citetitle> is a comprehensive source of material for learning about Hibernate. It kicks off with an example to get you started with Hibernate, lists the major functionality of Hibernate, offers design solutions and suggests best practises.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ The <citetitle pubwork="book">Hibernate Core API Reference</citetitle> guide will be helpful during application development.
+ </para>
+ </listitem>
+ </itemizedlist>
</section>
<section id="Product_Support">
- <title>Product Support</title>
- <para>
- List all the links here.
- </para>
+ <title>Product Support and License Website Links</title>
+ <formalpara>
+ <title>Support Processes</title>
+ <para>
+ <ulink url="http://www.redhat.com/support/process/">http://www.redhat.com/support/process/</ulink>
+ </para>
+ </formalpara>
+
+ <formalpara>
+ <title>
+ Production Support Scope of Coverage
+ </title>
+ <para>
+ <ulink url="http://www.redhat.com/support/policy/soc/production">http://www.redhat.com/support/policy/soc/production</ulink>
+ </para>
+ </formalpara>
+
+ <formalpara>
+ <title>
+ Production Support Service Level Agreement
+ </title>
+
+ <para>
+ <ulink url="http://www.redhat.com/support/policy/sla/production/">http://www.redhat.com/support/policy/sla/production/</ulink>
+ </para>
+ </formalpara>
+
+ <formalpara>
+ <title>
+ Developer Support Scope of Coverage
+ </title>
+
+ <para>
+ <ulink url="http://www.redhat.com/support/policy/soc/developer/">http://www.redhat.com/support/policy/soc/developer/</ulink>
+ </para>
+ </formalpara>
+
+ <formalpara>
+ <title>
+ Developer Support Service Level Agreement
+ </title>
+
+ <para>
+ <ulink url="http://www.redhat.com/support/policy/sla/developer/">http://www.redhat.com/support/policy/sla/developer/</ulink>
+ </para>
+ </formalpara>
+
+ <formalpara>
+ <title>
+ Product Update and Support Policy by Product
+ </title>
+
+ <para>
+ <ulink url="http://www.redhat.com/security/updates/jboss_notes/">http://www.redhat.com/security/updates/jboss_notes/</ulink>
+ </para>
+ </formalpara>
+
+ <formalpara>
+ <title>
+ JBoss End User License Agreement
+ </title>
+
+ <para>
+ <ulink url="http://www.redhat.com/licenses/jboss_eula.html">http://www.redhat.com/licenses/jboss_eula.html</ulink>
+ </para>
+ </formalpara>
</section>
</article>
16 years, 6 months
Hibernate SVN: r14732 - in search/trunk/src: test/org/hibernate/search/test/query and 1 other directory.
by hibernate-commits@lists.jboss.org
Author: epbernard
Date: 2008-06-03 16:47:14 -0400 (Tue, 03 Jun 2008)
New Revision: 14732
Modified:
search/trunk/src/java/org/hibernate/search/bridge/BridgeFactory.java
search/trunk/src/test/org/hibernate/search/test/query/Employee.java
search/trunk/src/test/org/hibernate/search/test/query/ProjectionQueryTest.java
Log:
HSEARCH-207 Make all DateBridge TwoWay
Modified: search/trunk/src/java/org/hibernate/search/bridge/BridgeFactory.java
===================================================================
--- search/trunk/src/java/org/hibernate/search/bridge/BridgeFactory.java 2008-06-03 20:10:07 UTC (rev 14731)
+++ search/trunk/src/java/org/hibernate/search/bridge/BridgeFactory.java 2008-06-03 20:47:14 UTC (rev 14732)
@@ -69,12 +69,12 @@
public static final TwoWayFieldBridge Uri = new TwoWayString2FieldBridgeAdaptor( new UriBridge() );
- public static final FieldBridge DATE_YEAR = new String2FieldBridgeAdaptor( DateBridge.DATE_YEAR );
- public static final FieldBridge DATE_MONTH = new String2FieldBridgeAdaptor( DateBridge.DATE_MONTH );
- public static final FieldBridge DATE_DAY = new String2FieldBridgeAdaptor( DateBridge.DATE_DAY );
- public static final FieldBridge DATE_HOUR = new String2FieldBridgeAdaptor( DateBridge.DATE_HOUR );
- public static final FieldBridge DATE_MINUTE = new String2FieldBridgeAdaptor( DateBridge.DATE_MINUTE );
- public static final FieldBridge DATE_SECOND = new String2FieldBridgeAdaptor( DateBridge.DATE_SECOND );
+ public static final FieldBridge DATE_YEAR = new TwoWayString2FieldBridgeAdaptor( DateBridge.DATE_YEAR );
+ public static final FieldBridge DATE_MONTH = new TwoWayString2FieldBridgeAdaptor( DateBridge.DATE_MONTH );
+ public static final FieldBridge DATE_DAY = new TwoWayString2FieldBridgeAdaptor( DateBridge.DATE_DAY );
+ public static final FieldBridge DATE_HOUR = new TwoWayString2FieldBridgeAdaptor( DateBridge.DATE_HOUR );
+ public static final FieldBridge DATE_MINUTE = new TwoWayString2FieldBridgeAdaptor( DateBridge.DATE_MINUTE );
+ public static final FieldBridge DATE_SECOND = new TwoWayString2FieldBridgeAdaptor( DateBridge.DATE_SECOND );
public static final TwoWayFieldBridge DATE_MILLISECOND =
new TwoWayString2FieldBridgeAdaptor( DateBridge.DATE_MILLISECOND );
Modified: search/trunk/src/test/org/hibernate/search/test/query/Employee.java
===================================================================
--- search/trunk/src/test/org/hibernate/search/test/query/Employee.java 2008-06-03 20:10:07 UTC (rev 14731)
+++ search/trunk/src/test/org/hibernate/search/test/query/Employee.java 2008-06-03 20:47:14 UTC (rev 14732)
@@ -1,6 +1,7 @@
//$Id$
package org.hibernate.search.test.query;
+import java.util.Date;
import javax.persistence.Entity;
import javax.persistence.Id;
@@ -9,6 +10,8 @@
import org.hibernate.search.annotations.Index;
import org.hibernate.search.annotations.Indexed;
import org.hibernate.search.annotations.Store;
+import org.hibernate.search.annotations.DateBridge;
+import org.hibernate.search.annotations.Resolution;
/**
* @author John Grffin
@@ -20,6 +23,18 @@
private String lastname;
private String dept;
+ @Field(store=Store.YES, index = Index.UN_TOKENIZED)
+ @DateBridge(resolution = Resolution.DAY)
+ public Date getHireDate() {
+ return hireDate;
+ }
+
+ public void setHireDate(Date hireDate) {
+ this.hireDate = hireDate;
+ }
+
+ private Date hireDate;
+
public Employee() {
}
Modified: search/trunk/src/test/org/hibernate/search/test/query/ProjectionQueryTest.java
===================================================================
--- search/trunk/src/test/org/hibernate/search/test/query/ProjectionQueryTest.java 2008-06-03 20:10:07 UTC (rev 14731)
+++ search/trunk/src/test/org/hibernate/search/test/query/ProjectionQueryTest.java 2008-06-03 20:47:14 UTC (rev 14732)
@@ -5,6 +5,7 @@
import java.util.Iterator;
import java.util.List;
import java.util.Map;
+import java.util.Date;
import org.apache.lucene.analysis.StopAnalyzer;
import org.apache.lucene.analysis.standard.StandardAnalyzer;
@@ -236,13 +237,13 @@
assertEquals( "SCORE incorrect", 1.0F, projection[4] );
assertEquals( "BOOST incorrect", 1.0F, projection[5] );
assertTrue( "DOCUMENT incorrect", projection[6] instanceof Document );
- assertEquals( "DOCUMENT size incorrect", 4, ( (Document) projection[6] ).getFields().size() );
+ assertEquals( "DOCUMENT size incorrect", 5, ( (Document) projection[6] ).getFields().size() );
assertEquals( "ID incorrect", 1001, projection[7] );
assertNotNull( "Lucene internal doc id", projection[8] );
// Change the projection order and null one
hibQuery.setProjection( FullTextQuery.DOCUMENT, FullTextQuery.THIS, FullTextQuery.SCORE, null, FullTextQuery.ID,
- "id", "lastname", "dept", FullTextQuery.DOCUMENT_ID );
+ "id", "lastname", "dept", "hireDate", FullTextQuery.DOCUMENT_ID );
result = hibQuery.list();
assertNotNull( result );
@@ -251,7 +252,7 @@
assertNotNull( projection );
assertTrue( "DOCUMENT incorrect", projection[0] instanceof Document );
- assertEquals( "DOCUMENT size incorrect", 4, ( (Document) projection[0] ).getFields().size() );
+ assertEquals( "DOCUMENT size incorrect", 5, ( (Document) projection[0] ).getFields().size() );
assertEquals( "THIS incorrect", projection[1], s.get( Employee.class, (Serializable) projection[4] ) );
assertEquals( "SCORE incorrect", 1.0F, projection[2] );
assertNull( "BOOST not removed", projection[3] );
@@ -259,7 +260,8 @@
assertEquals( "id incorrect", 1001, projection[5] );
assertEquals( "last name incorrect", "Jackson", projection[6] );
assertEquals( "dept incorrect", "Accounting", projection[7] );
- assertNotNull( "Lucene internal doc id", projection[8] );
+ assertNotNull( "Date", projection[8] );
+ assertNotNull( "Lucene internal doc id", projection[9] );
//cleanup
for (Object element : s.createQuery( "from " + Employee.class.getName() ).list()) s.delete( element );
@@ -272,6 +274,7 @@
Employee e1 = new Employee( 1000, "Griffin", "ITech" );
s.save( e1 );
Employee e2 = new Employee( 1001, "Jackson", "Accounting" );
+ e2.setHireDate( new Date() );
s.save( e2 );
Employee e3 = new Employee( 1002, "Jimenez", "ITech" );
s.save( e3 );
16 years, 6 months
Hibernate SVN: r14731 - search/trunk/src/java/org/hibernate/search/engine.
by hibernate-commits@lists.jboss.org
Author: epbernard
Date: 2008-06-03 16:10:07 -0400 (Tue, 03 Jun 2008)
New Revision: 14731
Modified:
search/trunk/src/java/org/hibernate/search/engine/ObjectLoader.java
Log:
HSEARCH-196 ONFE not caught when oblectLoader.load is used
Modified: search/trunk/src/java/org/hibernate/search/engine/ObjectLoader.java
===================================================================
--- search/trunk/src/java/org/hibernate/search/engine/ObjectLoader.java 2008-06-03 20:09:33 UTC (rev 14730)
+++ search/trunk/src/java/org/hibernate/search/engine/ObjectLoader.java 2008-06-03 20:10:07 UTC (rev 14731)
@@ -21,7 +21,7 @@
}
public Object load(EntityInfo entityInfo) {
- //be sure to get an initialized object
+ //be sure to get an initialized object but save from ONFE and ENFE
Object maybeProxy = session.load( entityInfo.clazz, entityInfo.id );
try {
Hibernate.initialize( maybeProxy );
16 years, 6 months