You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openjpa.apache.org by mi...@apache.org on 2010/02/11 00:27:04 UTC

svn commit: r908750 - /openjpa/branches/1.3.x/openjpa-project/src/doc/manual/ref_guide_caching.xml

Author: mikedd
Date: Wed Feb 10 23:26:57 2010
New Revision: 908750

URL: http://svn.apache.org/viewvc?rev=908750&view=rev
Log:
fix line length

Modified:
    openjpa/branches/1.3.x/openjpa-project/src/doc/manual/ref_guide_caching.xml

Modified: openjpa/branches/1.3.x/openjpa-project/src/doc/manual/ref_guide_caching.xml
URL: http://svn.apache.org/viewvc/openjpa/branches/1.3.x/openjpa-project/src/doc/manual/ref_guide_caching.xml?rev=908750&r1=908749&r2=908750&view=diff
==============================================================================
--- openjpa/branches/1.3.x/openjpa-project/src/doc/manual/ref_guide_caching.xml (original)
+++ openjpa/branches/1.3.x/openjpa-project/src/doc/manual/ref_guide_caching.xml Wed Feb 10 23:26:57 2010
@@ -222,7 +222,10 @@
                 <primary>caching</primary>
                 <secondary>exclusions</secondary>
             </indexterm>
-            Entities may be explicitly excluded from the cache by providing a list of fully qualified class names in the ExcludedTypes argument. The entities provided via ExcludedTypes will not be cached regardless of the @DataCache annotation. 
+            Entities may be explicitly excluded from the cache by providing a 
+            list of fully qualified class names in the ExcludedTypes argument. 
+            The entities provided via ExcludedTypes will not be cached 
+            regardless of the @DataCache annotation. 
             </para>
             <example id="ex_exclude_types_from_cache">
                 <title>
@@ -231,7 +234,7 @@
                 <para>
                     Exclude entities foo.bar.Person and foo.bar.Employee from the cache. 
                     <programlisting>
-                    &lt;property name="openjpa.DataCache" value="true(ExcludedTypes=foo.bar.Person;foo.bar.Employee)"/&gt;
+&lt;property name="openjpa.DataCache" value="true(ExcludedTypes=foo.bar.Person;foo.bar.Employee)"/&gt;
                     </programlisting>
                 </para>
             </example>
@@ -241,7 +244,11 @@
                 <primary>caching</primary>
                 <secondary>inclusions</secondary>
             </indexterm>
-            Entities may be explicitly included from the cache by providing a list of fully qualified class names in the Types argument. The entities provided via ExcludedTypes will not cached regardless of the @DataCache annotation. Any entities which are not included in this list will not be cached. 
+            Entities may be explicitly included from the cache by providing a 
+            list of fully qualified class names in the Types argument. The 
+            entities provided via ExcludedTypes will not cached regardless of
+            the @DataCache annotation. Any entities which are not included in
+            this list will not be cached. 
             </para>
             <example id="ex_include_types_in_cache">
                 <title>
@@ -250,7 +257,7 @@
                 <para>
                     Include only entity foo.bar.FullTimeEmployee from the cache. 
                     <programlisting>
-                    &lt;property name="openjpa.DataCache" value="true(Types=foo.bar.FullTimeEmployee)"/&gt;
+&lt;property name="openjpa.DataCache" value="true(Types=foo.bar.FullTimeEmployee)"/&gt;
                     </programlisting>
                 </para>
             </example>