[jboss-cvs] JBossCache/docs/JBossCache-UserGuide/en/modules ...

Brian Stansberry brian.stansberry at jboss.com
Fri Jun 1 23:41:05 EDT 2007


  User: bstansberry
  Date: 07/06/01 23:41:05

  Modified:    docs/JBossCache-UserGuide/en/modules  configuration.xml
  Log:
  Add section id; minor cleanups
  
  Revision  Changes    Path
  1.10      +4 -3      JBossCache/docs/JBossCache-UserGuide/en/modules/configuration.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: configuration.xml
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/docs/JBossCache-UserGuide/en/modules/configuration.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -b -r1.9 -r1.10
  --- configuration.xml	31 May 2007 05:29:17 -0000	1.9
  +++ configuration.xml	2 Jun 2007 03:41:05 -0000	1.10
  @@ -25,7 +25,7 @@
          
      </section>
      
  -   <section>
  +   <section id="configuration.creation">
          <title>Creating a <literal>Configuration</literal></title>
          
          <para> 
  @@ -160,7 +160,8 @@
         <programlisting>
            <![CDATA[
               Configuration config = new Configuration();
  -            config.setTransactionManagerLookupClass(GenericTransactionManagerLookup.class.getName());
  +            String tmlc = GenericTransactionManagerLookup.class.getName();
  +            config.setTransactionManagerLookupClass(tmlc);
               config.setIsolationLevel(IsolationLevel.READ_COMMITTED);
               config.setCacheMode(CacheMode.LOCAL);
               config.setLockParentForChildInsertRemove(true);
  @@ -216,7 +217,7 @@
            are all Java Beans that expose all config elements via simple setters
            and getters.  Therefore, any good IOC framework should be able to
            build up a <literal>Configuration</literal> from an XML file in
  -         the frameworks own format. See the 
  +         the framework's own format. See the 
            <link linkend="deployment.microcontainer">deployment via the JBoss micrcontainer</link>
            section for an example of this.
         </para>
  
  
  



More information about the jboss-cvs-commits mailing list