HHH-4933 fixed some minor typos

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@18932 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Hardy Ferentschik 2010-03-08 16:40:44 +00:00
parent 85b4ac5adb
commit 83196b1099
1 changed files with 25 additions and 27 deletions

View File

@ -617,34 +617,32 @@ public class Country implements Serializable {
<title>Non-annotated property defaults</title>
<para>If a property is not annotated, the following rules
apply:</para>
apply:<itemizedlist>
<listitem>
<para>If the property is of a single type, it is mapped as
@Basic</para>
</listitem>
<itemizedlist>
<listitem>
<para>If the property is of a single type, it is mapped as
@Basic</para>
</listitem>
<listitem>
<para>Otherwise, if the type of the property is annotated as
@Embeddable, it is mapped as @Embedded</para>
</listitem>
<listitem>
<para>Otherwise, if the type of the property is annotated as
@Embeddable, it is mapped as @Embedded</para>
</listitem>
<listitem>
<para>Otherwise, if the type of the property is
<classname>Serializable</classname>, it is mapped as
<classname>@Basic</classname> in a column holding the object in
its serialized version</para>
</listitem>
<listitem>
<para>Otherwise, if the type of the property is
<classname>Serializable</classname>, it is mapped as
<classname>@Basic</classname> in a column holding the object in
its serialized version</para>
</listitem>
<listitem>
<para>Otherwise, if the type of the property is
<classname>java.sql.Clob</classname> or
<classname>java.sql.Blob</classname>, it is mapped as
<classname>@Lob</classname> with the appropriate
<classname>LobType</classname></para>
</listitem>
</itemizedlist>
<listitem>
<para>Otherwise, if the type of the property is
<classname>java.sql.Clob</classname> or
<classname>java.sql.Blob</classname>, it is mapped as
<classname>@Lob</classname> with the appropriate
<classname>LobType</classname></para>
</listitem>
</itemizedlist></para>
</section>
</section>
@ -746,7 +744,7 @@ public Long getId() { ... } </programlisting>
</programlisting>
<para>If JPA XML (like <filename>META-INF/orm.xml</filename>) is used
to define thegenerators, <literal>EMP_GEN</literal> and
to define the generators, <literal>EMP_GEN</literal> and
<literal>SEQ_GEN</literal> are application level generators.
<literal>EMP_GEN</literal> defines a table based id generator using
the hilo algorithm with a <literal>max_lo</literal> of 20. The hi
@ -1005,7 +1003,7 @@ class UserId implements Serializable {
<section>
<title>Multiple @Id properties</title>
<para>Another arguably more natural) approach is to place
<para>Another, arguably more natural, approach is to place
<classname>@Id</classname> on multiple properties of my entity. This
approach is only supported by Hibernate but does not require an
extra embeddable component.</para>