From hibernate-commits at lists.jboss.org Mon Mar 8 12:56:56 2010 Content-Type: multipart/mixed; boundary="===============5243593080219285780==" MIME-Version: 1.0 From: hibernate-commits at lists.jboss.org To: hibernate-commits at lists.jboss.org Subject: [hibernate-commits] Hibernate SVN: r18933 - core/trunk/annotations/src/main/docbook/en/modules. Date: Mon, 08 Mar 2010 12:56:55 -0500 Message-ID: <201003081756.o28Hutkv028415@svn01.web.mwc.hst.phx2.redhat.com> --===============5243593080219285780== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Author: hardy.ferentschik Date: 2010-03-08 12:56:55 -0500 (Mon, 08 Mar 2010) New Revision: 18933 Modified: core/trunk/annotations/src/main/docbook/en/modules/entity.xml core/trunk/annotations/src/main/docbook/en/modules/setup.xml core/trunk/annotations/src/main/docbook/en/modules/xml-overriding.xml Log: HHH-4933 removed all 'label' attributes in sections. they should not be use= d and they screw up the toc Modified: core/trunk/annotations/src/main/docbook/en/modules/entity.xml =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- core/trunk/annotations/src/main/docbook/en/modules/entity.xml 2010-03-0= 8 16:40:44 UTC (rev 18932) +++ core/trunk/annotations/src/main/docbook/en/modules/entity.xml 2010-03-0= 8 17:56:55 UTC (rev 18933) @@ -26,7 +26,7 @@ Mapping Entities = -
+
Intro = This section explains how to describe persistence mappings using @@ -34,7 +34,7 @@ extensions.
= -
+
Mapping with JPA (Java Persistence Annotations) = JPA entities are plain POJOs. Actually, they are Hibernate @@ -136,7 +136,7 @@ you shouldn't worry about that.
= -
+
Versioning for optimistic locking = You can add optimistic locking capability to an entity using= the @@ -168,7 +168,7 @@
= -
+
Mapping simple properties =
@@ -377,7 +377,7 @@
= -
+
Declaring column attributes = The column(s) used for a property mapping can be defined usi= ng @@ -646,8 +646,7 @@
= -
+
Mapping identifier properties = The @Id annotation lets you define which @@ -1593,7 +1592,7 @@ }
= -
+
Collections = You can map Collection, @@ -1606,8 +1605,7 @@ @ElementCollection. We will describe that in more detail in the following subsections. = -
+
One-to-many = One-to-many associations are declared at the property level @@ -1728,8 +1726,7 @@ (inversejoinColumns).
= -
+
Defaults = Without describing any physical mapping, a unidirectional @@ -1766,8 +1763,7 @@
= -
+
Many-to-many =
@@ -1979,8 +1975,7 @@
= -
+
Indexed collections (List, Map) = Lists can be mapped in two different ways: @@ -2396,7 +2391,7 @@ customer.getOrders().remove(order); //order will be deleted by cascade
= -
+
Association fetching = You have the ability to either eagerly or lazily fetch @@ -2704,8 +2699,7 @@ Unfortunately, you lose the type-safety of queries written using= the Criteria API. = -
+
Mapping JP-QL/HQL queries = You can map JP-QL/HQL queries using annotations. @@ -2823,7 +2817,7 @@ operations.
= -
+
Mapping native queries = You can also map a native query (ie a plain SQL query). To ach= ieve @@ -3043,7 +3037,7 @@
= -
+
Hibernate Annotation Extensions = Hibernate 3.1 offers a variety of additional annotations that you @@ -3055,7 +3049,7 @@ org.hibernate.annotations package contains all these annotations extensions. = -
+
Entity = You can fine tune some of the actions done by Hibernate on @@ -3216,7 +3210,7 @@ public class Carrot extends Vegetable { ... }
= -
+
Identifier = Hibernate Annotations goes beyond the Java Persistence @@ -3313,7 +3307,7 @@
= -
+
Property =
@@ -3519,7 +3513,7 @@
= -
+
Inheritance = SINGLE_TABLE is a very powerful strategy but sometimes, and @@ -3771,10 +3765,10 @@
= -
+
Collection related annotations = -
+
Enhance collection settings = It is possible to set @@ -3857,11 +3851,10 @@ alter table Man_Woman add constraint TO_MAN_FK foreign key (man_id) refere= nces Man
= -
+
Extra collection types = -
+
Bidirectional association with indexed collections = A bidirectional association where one end is an indexed @@ -3985,7 +3978,7 @@
= -
+
Cascade = Hibernate offers more operations than the Java Persistence @@ -4161,7 +4154,7 @@ ability to set those annotations at a package level.
= -
+
Custom SQL for CRUD operations = Hibernate gives you the ability to override every single SQL Modified: core/trunk/annotations/src/main/docbook/en/modules/setup.xml =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- core/trunk/annotations/src/main/docbook/en/modules/setup.xml 2010-03-08= 16:40:44 UTC (rev 18932) +++ core/trunk/annotations/src/main/docbook/en/modules/setup.xml 2010-03-08= 17:56:55 UTC (rev 18933) @@ -25,9 +25,9 @@ - Setting up an annotations project</ti= tle> + <title id=3D"setup">Setting up an annotations project = -
+
Requirements = @@ -60,7 +60,7 @@
= -
+
Configuration = First, set up your classpath (after you have created a new proje= ct Modified: core/trunk/annotations/src/main/docbook/en/modules/xml-overriding= .xml =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- core/trunk/annotations/src/main/docbook/en/modules/xml-overriding.xml 2= 010-03-08 16:40:44 UTC (rev 18932) +++ core/trunk/annotations/src/main/docbook/en/modules/xml-overriding.xml 2= 010-03-08 17:56:55 UTC (rev 18933) @@ -24,7 +24,7 @@ --> = - + Overriding metadata through XML = The primary target for metadata in EJB3 is annotations, but the EJ= B3 @@ -83,7 +83,7 @@ feature.
= -
+
Entity level metadata = You can either define or override metadata informations on a g= iven @@ -424,4 +424,4 @@ informations in the chapter describing annotations.
- \ No newline at end of file + --===============5243593080219285780==--