[jboss-cvs] JBoss Messaging SVN: r6964 - trunk/docs/user-manual/en.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu May 21 09:02:44 EDT 2009


Author: ataylor
Date: 2009-05-21 09:02:44 -0400 (Thu, 21 May 2009)
New Revision: 6964

Modified:
   trunk/docs/user-manual/en/embedding-jbm.xml
   trunk/docs/user-manual/en/examples.xml
Log:
more proof reading updates

Modified: trunk/docs/user-manual/en/embedding-jbm.xml
===================================================================
--- trunk/docs/user-manual/en/embedding-jbm.xml	2009-05-21 13:02:11 UTC (rev 6963)
+++ trunk/docs/user-manual/en/embedding-jbm.xml	2009-05-21 13:02:44 UTC (rev 6964)
@@ -9,8 +9,8 @@
     <section>
         <title>POJO instantiation</title>
         <para>You can follow this step-by-step guide:</para>
-        <para>Create the configuration object. If you need a configuration file, use <literal
-                >FileConfigurationImpl</literal></para>
+        <para>Create the configuration object. If you need a configuration file, use
+                <literal>FileConfigurationImpl</literal></para>
         <programlisting>import org.jboss.messaging.core.config.Configuration;
 import org.jboss.messaging.core.config.impl.FileConfiguration;
 
@@ -20,9 +20,9 @@
 Configuration config = new FileConfiguration();
 config.setConfigurationUrl(urlToYourconfigfile);
 config.start();</programlisting>
-        <para>If you don't need to support a configuration file, just use <literal
-                >ConfigurationImpl</literal> and change the config parameters accordingly, such as
-            adding acceptors. </para>
+        <para>If you don't need to support a configuration file, just use
+                <literal>ConfigurationImpl</literal> and change the config parameters accordingly,
+            such as adding acceptors. </para>
         <para>The acceptors are configured through <literal>ConfigurationImpl</literal>. Just add
             the <literal>NettyAcceptorFactory</literal> on the transports the same way you would
             through the main configuration file.</para>
@@ -38,10 +38,9 @@
 transports.add(new TransportConfiguration(InVMAcceptorFactory.class.getName()));
 
 config.setAcceptorConfigurations(transports);</programlisting>
-        <para>You need to instantiate and start JBoss Messaging server. The class <literal
-                >Messaging</literal> on package <literal>org.jboss.messaging.core.server</literal>
-            has a few static methods helpful on instantiating the server, which is aways our
-            preferable way.</para>
+        <para>You need to instantiate and start JBoss Messaging server. The class
+                <literal>org.jboss.messaging.core.serverMessaging</literal>  has a few static
+            methods for creating servers with common configurations.</para>
         <programlisting>import org.jboss.messaging.core.server.Messaging;
 import org.jboss.messaging.core.server.MessagingServer;
 

Modified: trunk/docs/user-manual/en/examples.xml
===================================================================
--- trunk/docs/user-manual/en/examples.xml	2009-05-21 13:02:11 UTC (rev 6963)
+++ trunk/docs/user-manual/en/examples.xml	2009-05-21 13:02:44 UTC (rev 6964)
@@ -5,8 +5,8 @@
         of the features in an easy to use, fully functional examples.</para>
     <para>The examples are available in the distribution, in the <literal>examples</literal>
         directory. Examples are split into JMS and Core examples. JMS examples show how a particular
-        feature can be used by a normal JMS client. Core examples (TODO) show how the equivalent
-        feature can be used by a core messaging client.</para>
+        feature can be used by a normal JMS client. Core examples show how the equivalent feature
+        can be used by a core messaging client.</para>
     <para>A set of Java EE examples are also provided which need the JBoss Application Server
         installed to be able to run.</para>
     <section>




More information about the jboss-cvs-commits mailing list