[jboss-cvs] JBossAS SVN: r105625 - projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Jun 3 03:33:00 EDT 2010


Author: misty at redhat.com
Date: 2010-06-03 03:32:59 -0400 (Thu, 03 Jun 2010)
New Revision: 105625

Modified:
   projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Cache.xml
   projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Controls.xml
   projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Events.xml
   projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Gettingstarted.xml
   projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/I18n.xml
   projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Itext.xml
   projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Remoting.xml
   projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Spring.xml
   projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Tutorial.xml
Log:
JBPAPP-4387

Modified: projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Cache.xml
===================================================================
--- projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Cache.xml	2010-06-03 07:18:13 UTC (rev 105624)
+++ projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Cache.xml	2010-06-03 07:32:59 UTC (rev 105625)
@@ -201,11 +201,11 @@
 
 public class ChatroomUsers { 
   @In CacheProvider cacheProvider; 
-  @Unwrap public Set<String> getUsers() throws CacheException   { 
-    Set<String> userList = 
-      (Set<String>) cacheProvider.get("chatroom", "userList"); 
+  @Unwrap public Set&lt;String&gt; getUsers() throws CacheException   { 
+    Set&lt;String&gt; userList = 
+      (Set&lt;String&gt;) cacheProvider.get("chatroom", "userList"); 
     if (userList==null) { 
-      userList = new HashSet<String>(); 
+      userList = new HashSet&lt;String&gt;(); 
       cacheProvider.put("chatroom", "userList", userList); 
     } return userList; 
   } 

Modified: projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Controls.xml
===================================================================
--- projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Controls.xml	2010-06-03 07:18:13 UTC (rev 105624)
+++ projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Controls.xml	2010-06-03 07:32:59 UTC (rev 105625)
@@ -16,7 +16,7 @@
 			To use these tags, define the <literal>s</literal> namespace in your page as follows (Facelets only):
 		</para>
 		 
-<programlisting lanuage="XML" role="XML"><![CDATA[<html xmlns="http://www.w3.org/1999/xhtml" 
+<programlisting language="XML" role="XML"><![CDATA[<html xmlns="http://www.w3.org/1999/xhtml" 
       xmlns:s="http://jboss.com/products/seam/taglib">
 ]]></programlisting>
 		 <para>

Modified: projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Events.xml
===================================================================
--- projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Events.xml	2010-06-03 07:18:13 UTC (rev 105624)
+++ projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Events.xml	2010-06-03 07:32:59 UTC (rev 105625)
@@ -971,7 +971,7 @@
 </pages>]]>
 </programlisting>
 			 <para>
-				The final <tag><![CDATA[<exception>]]></tag> declaration does not specify a class, and acts as catch-all for any exception without specified handling via annotations or in <filename>pages.xml</filename>.
+				The final <literal><![CDATA[<exception>]]></literal> declaration does not specify a class, and acts as catch-all for any exception without specified handling via annotations or in <filename>pages.xml</filename>.
 			</para>
 			 <para>
 				You can also use EL to specify the <literal>view-id</literal> to redirect to.

Modified: projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Gettingstarted.xml
===================================================================
--- projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Gettingstarted.xml	2010-06-03 07:18:13 UTC (rev 105624)
+++ projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Gettingstarted.xml	2010-06-03 07:32:59 UTC (rev 105625)
@@ -38,10 +38,10 @@
 	 <section>
 		<title>Setting up a new project</title>
 		 <para>
-			First, configure seam-gen for your environment. Just type the following in your command line interface:
+		   First, configure seam-gen for your environment. Just type the following in your command line interface: <command>cd <replaceable>seam_distribution_dir</replaceable>; seam setup</command>
 		</para>
 		 
-<command>cd <replaceable>seam_distribution_dir</replaceable>; seam setup</command>
+
 		 <para>
 			You will receive the following prompt for the required information:
 		</para>
@@ -110,11 +110,11 @@
 			If you are working with an existing data model, make sure to tell seam-gen that tables already exist in the database.
 		</para>
 		 <para>
-			Create a new project in our Eclipse workspace directory by typing:
+		   Create a new project in our Eclipse workspace directory by typing: <command>seam new-project</command>
 		</para>
 		 
-<command>seam new-project</command>
 
+
 <screen>
 Buildfile: build.xml 
 ... 
@@ -149,10 +149,10 @@
 	 <section>
 		<title>Creating a new action</title>
 		 <para>
-			You can create a simple web page with a stateless action method by typing:
+		   You can create a simple web page with a stateless action method by typing: <command>seam new-action</command>
 		</para>
 		 
-<command>seam new-action</command>
+
 		 <para>
 			Seam prompts for some information, and generates a new Facelets page and Seam component for your project.
 		</para>
@@ -211,9 +211,10 @@
 		<title>Creating a form with an action</title>
 		 <para>
 			The next step is to create a form. Type:
+			<command>seam new-form</command>
 		</para>
 		 
-<command>seam new-form</command>
+
 <screen>
 Buildfile: C:\Projects\jboss-seam\seam-gen\build.xml
 
@@ -256,10 +257,10 @@
 	 <section>
 		<title>Generating an application from an existing database</title>
 		 <para>
-			Manually create tables in your database. (To switch to a different database, run <literal>seam setup</literal> again.) Now type:
+		   Manually create tables in your database. (To switch to a different database, run <literal>seam setup</literal> again.) Now type:<command>seam generate-entities</command>
 		</para>
 		 
-<command>seam generate-entities</command>
+
 		 <para>
 			Restart the deployment, and go to <literal>http://localhost:8080/helloworld</literal>. You can browse the database, edit existing objects, and create new objects. The code generated here is very simple. Seam was designed so that data access code is easy to write by hand, even without the assistance of seam-gen.
 		</para>
@@ -268,11 +269,11 @@
 	 <section>
 		<title>Generating an application from existing JPA/EJB3 entities</title>
 		 <para>
-			Place your existing, valid entity classes inside the <literal>src/main</literal> directory. Now, type:
+		   Place your existing, valid entity classes inside the <literal>src/main</literal> directory. Now, type: <command>seam generate-ui</command>
 		</para>
 		 
-<command>seam generate-ui</command>
 
+
 		 <para>
 			Restart the deployment, and go to <literal>http://localhost:8080/helloworld</literal>.
 		</para>
@@ -284,11 +285,11 @@
 			Several changes are required before we can deploy the application with standard Java EE 5 packaging. First, remove the exploded directory by running <command>seam unexplode</command>. To deploy the EAR, either type <command>seam deploy</command> at the command prompt, or run the <literal>deploy</literal> target of the generated project build script. To undeploy, use <command>seam undeploy</command> or the <literal>undeploy</literal> target.
 		</para>
 		 <para>
-			By default, the application deploys with the <emphasis>dev profile</emphasis>. The EAR includes the <filename>persistence-dev.xml</filename> and <filename>import-dev.sql</filename> files, and deploys <filename>myproject-dev-ds.xml</filename>. You can change the profile to <emphasis>prod profile</emphasis> by typing:
+		   By default, the application deploys with the <emphasis>dev profile</emphasis>. The EAR includes the <filename>persistence-dev.xml</filename> and <filename>import-dev.sql</filename> files, and deploys <filename>myproject-dev-ds.xml</filename>. You can change the profile to <emphasis>prod profile</emphasis> by typing: <command>seam -Dprofile=prod deploy</command>
 		</para>
 		 
-<command>seam -Dprofile=prod deploy</command>
 
+
 		 <para>
 			You can also define new deployment profiles for your application. Just add appropriately named files to your project — for example, <filename>persistence-staging.xml</filename>, <filename>import-staging.sql</filename> and <filename>myproject-staging-ds.xml</filename> — and select the name of the profile with <literal>-Dprofile=staging</literal>.
 		</para>

Modified: projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/I18n.xml
===================================================================
--- projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/I18n.xml	2010-06-03 07:18:13 UTC (rev 105624)
+++ projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/I18n.xml	2010-06-03 07:32:59 UTC (rev 105625)
@@ -48,10 +48,11 @@
 			 <para>
 				Usage of this tool is described <ulink url="http://java.sun.com/j2se/1.5.0/docs/tooldocs/index.html#intl">here for Java 5</ulink> or <ulink url="http://java.sun.com/javase/6/docs/technotes/tools/#intl">here for Java 6</ulink>. For example, to convert a file from UTF-8:
 			</para>
-			 
+			<screen>
 <command>
 $ native2ascii -encoding UTF-8 messages_cs.properties > messages_cs_escaped.properties
 </command>
+			</screen>
 		</section>
 		
 		 <section>

Modified: projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Itext.xml
===================================================================
--- projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Itext.xml	2010-06-03 07:18:13 UTC (rev 105624)
+++ projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Itext.xml	2010-06-03 07:32:59 UTC (rev 105625)
@@ -132,12 +132,12 @@
 								 <para>
 									<emphasis>Usage</emphasis>
 								</para>
-							</entry>								 
+
 <programlisting language="XML" role="XML"><![CDATA[<p:document xmlns:p="http://jboss.com/products/seam/pdf"> 
   The document goes here. 
 </p:document>]]>
 </programlisting>
-
+</entry>								 
 						</row>
 					</tbody>
 				</tgroup>
@@ -221,13 +221,13 @@
 									<emphasis>Usage</emphasis>
 								</para>
 
-							</entry>
+	
 								 
 <programlisting language="XML" role="XML"><![CDATA[<p:paragraph alignment="justify">
   This is a simple document. It isn't very fancy. 
 </p:paragraph>]]>
 </programlisting>
-						</row>
+						</entry>					</row>
 						 <row>
 							<entry valign="top">
 								<para>
@@ -254,7 +254,7 @@
 								 <para>
 									<emphasis>Usage</emphasis>
 								</para>
-							</entry>
+	
 								 
 <programlisting language="XML" role="XML"><![CDATA[<p:paragraph> 
   The item costs <p:text value="#{product.price}"> 
@@ -263,7 +263,7 @@
   </p:text> 
 </p:paragraph>]]>
 </programlisting>
-						</row>
+						 </entry>					</row>
 						 <row>
 							<entry valign="top">
 								<para>
@@ -290,7 +290,7 @@
 								 <para>
 									<emphasis>Usage</emphasis>
 								</para>
-							</entry>				 
+	
 <programlisting language="XML" role="XML"><![CDATA[<p:html value="This is HTML with <b>some markup</b>" />
 <p:html>
   <h1>This is more complex HTML</h1>
@@ -307,7 +307,7 @@
         It's very^cool^." />
 </p:html>                                    
 ]]></programlisting>
-
+							 </entry>				 
 						</row>
 						 <row>
 							<entry valign="top">
@@ -350,13 +350,14 @@
 								 <para>
 									<emphasis>Usage</emphasis>
 								</para>
-							</entry>
+	
 								 
 <programlisting language="XML" role="XML"><![CDATA[<p:font name="courier" style="bold" size="24"> 
   <p:paragraph>My Title</p:paragraph> 
 </p:font>]]>
 </programlisting>
-						</row>
+						 </entry>
+						 </row>
             <row>
                 <entry valign="top">
                     <para>
@@ -393,13 +394,14 @@
                     <para>
                         <emphasis>Usage</emphasis>
                     </para>
-                </entry>
+
                     <programlisting language="XML" role="XML"><![CDATA[
 <p:textcolumn left="400" right="600" direction="rtl"> 
 <p:font name="/Library/Fonts/Arial Unicode.ttf" 
 encoding="Identity-H" 
 embedded="true">#{phrases.arabic}</p:font> 
 </p:textcolumn>]]></programlisting>
+		</entry>
             </row>
 
 						 <row>
@@ -418,10 +420,11 @@
 								 <para>
 									<emphasis>Usage</emphasis>
 								</para>
-							</entry>
+	
 								 
 <programlisting language="XML" role="XML"><![CDATA[<p:newPage />]]>
 </programlisting>
+							 </entry>
 						</row>
 						 <row>
 							<entry valign="top">
@@ -527,12 +530,13 @@
 								 <para>
 									<emphasis>Usage</emphasis>
 								</para>
-								 </entry>
+	
 <programlisting language="XML" role="XML"><![CDATA[<p:image value="/jboss.jpg" />]]>
 </programlisting>
 								 
 <programlisting language="XML" role="XML"><![CDATA[<p:image value="#{images.chart}" />]]>
 </programlisting>
+							 </entry>
 						</row>
 						 <row>
 							<entry valign="top">
@@ -565,7 +569,7 @@
 								 <para>
 									<emphasis>Usage</emphasis>
 								</para>
-							 </entry>
+	
 <programlisting language="XML" role="XML"><![CDATA[<p:listItem>
   <p:anchor reference="#reason1">Reason 1</p:anchor>
 </p:listItem> 
@@ -577,6 +581,7 @@
   ... 
 </p:paragraph>]]>
 </programlisting>
+							 </entry>
 						</row>
 					</tbody>
 				</tgroup>
@@ -634,7 +639,7 @@
 								 <para>
 									<emphasis>Usage</emphasis>
 								</para>
-							</entry>			 
+	
 <programlisting language="XML" role="XML"><![CDATA[<p:facet name="header"> 
   <p:font size="12"> 
     <p:footer borderWidthTop="1" borderColorTop="blue" 
@@ -644,6 +649,7 @@
   </p:font> 
 </f:facet>]]>
 </programlisting>
+							 </entry>			 
 
 						</row>
 						 <row>
@@ -662,12 +668,13 @@
 								 <para>
 									<emphasis>Usage</emphasis>
 								</para>
-							</entry>
+	
 <programlisting language="XML" role="XML"><![CDATA[<p:footer borderWidthTop="1" borderColorTop="blue" 
    borderWidthBottom="0" alignment="center"> 
   Why Seam? [<p:pageNumber />] 
 </p:footer>]]>
 </programlisting>
+							 </entry>
 
 						</row>
 					</tbody>
@@ -721,7 +728,7 @@
 								 <para>
 									<emphasis>Usage</emphasis>
 								</para>
-							</entry>
+	
 <programlisting language="XML" role="XML"><![CDATA[<p:document xmlns:p="http://jboss.com/products/seam/pdf" title="Hello">
   <p:chapter number="1">
     <p:title><p:paragraph>Hello</p:paragraph></p:title>
@@ -739,6 +746,7 @@
 
 </p:document> ]]>
 </programlisting>
+							 </entry>
 
 						</row>
 						 <row>
@@ -828,13 +836,14 @@
 								 <para>
 									<emphasis>Usage</emphasis>
 								</para>
-							</entry>
+	
 <programlisting language="XML" role="XML"><![CDATA[<p:list style="numbered"> 
   <ui:repeat value="#{documents}" var="doc">
     <p:listItem>#{doc.name}</p:listItem> 
   </ui:repeat> 
 </p:list>]]>
 </programlisting>
+							 </entry>
 
 						</row>
 						 <row>
@@ -883,9 +892,10 @@
 								 <para>
 									<emphasis>Usage</emphasis>
 								</para>
-							</entry>
+	
 <programlisting language="XML" role="XML">...
 </programlisting>
+							 </entry>
 
 						</row>
 					</tbody>
@@ -1004,7 +1014,7 @@
 								 <para>
 									<emphasis>Usage</emphasis>
 								</para>
-							</entry>
+	
 <programlisting language="XML" role="XML"><![CDATA[<p:table columns="3" headerRows="1">
   <p:cell>name</p:cell>
   <p:cell>owner</p:cell>
@@ -1016,6 +1026,7 @@
   </ui:repeat>
 </p:table>]]>
 </programlisting>
+							 </entry>
 
 						</row>
 						 <row>
@@ -1144,9 +1155,10 @@
 								 <para>
 									<emphasis>Usage</emphasis>
 								</para>
-							</entry>
+	
 <programlisting language="XML" role="XML"><![CDATA[<p:cell>...</p:cell>]]>
 </programlisting>
+							 </entry>
 
 						</row>
 					</tbody>
@@ -1403,7 +1415,7 @@
 							 <para>
 								<emphasis>Usage</emphasis>
 							</para>
-						</entry>
+	
 <programlisting language="XML" role="XML"><![CDATA[<p:barchart title="Bar Chart" legend="true" width="500" height="500">
   <p:series key="Last Year">
     <p:data columnKey="Joe" value="100" />
@@ -1415,6 +1427,7 @@
   </p:series>
 </p:barchart>]]>
 </programlisting>
+</entry>
 
 					</row>
 					 <row>
@@ -1598,7 +1611,7 @@
 							 <para>
 								<emphasis>Usage</emphasis>
 							</para>
-						</entry>
+	
 <programlisting language="XML" role="XML"><![CDATA[<p:linechart title="Line Chart" width="500" height="500">
   <p:series key="Prices">
     <p:data columnKey="2003" value="7.36" />
@@ -1609,6 +1622,7 @@
   </p:series>
 </p:linechart>]]>
 </programlisting>
+</entry>
 
 					</row>
 					 <row>
@@ -1747,7 +1761,7 @@
 							 <para>
 								<emphasis>Usage</emphasis>
 							</para>
-						</entry>
+	
 <programlisting language="XML" role="XML"><![CDATA[
 <p:piechart title="Pie Chart" circular="false" 
             direction="anticlockwise" startAngle="30" 
@@ -1761,6 +1775,7 @@
   </p:series> 
 </p:piechart>]]>
 </programlisting>
+</entry>
 
 					</row>
 					 <row>
@@ -1814,7 +1829,7 @@
 							 <para>
 								<emphasis>Usage</emphasis>
 							</para>
-						</entry>
+	
 <programlisting language="XML" role="XML"><![CDATA[<p:series key="data1"> 
   <ui:repeat value="#{data.pieData1}" var="item"> 
     <p:data columnKey="#{item.name}" 
@@ -1822,6 +1837,7 @@
   </ui:repeat> 
 </p:series>]]>
 </programlisting>
+						 </entry>
 
 					</row>
 					 <row>
@@ -1880,12 +1896,13 @@
 							 <para>
 								<emphasis>Usage</emphasis>
 							</para>
-						</entry>
+	
 <programlisting language="XML" role="XML"><![CDATA[<p:data key="foo" value="20" sectionPaint="#111111" explodedPercent=".2" /> 
 <p:data key="bar" value="30" sectionPaint="#333333" /> 
 <p:data key="baz" value="40" sectionPaint="#555555" 
    sectionOutlineStroke="my-dot-style" />]]>
 </programlisting>
+						 </entry>
 
 					</row>
 					 <row>
@@ -1929,11 +1946,12 @@
 							 <para>
 								<emphasis>Usage</emphasis>
 							</para>
-						</entry>
+	
 <programlisting language="XML" role="XML"><![CDATA[<p:color id="foo" color="#0ff00f"/> 
 <p:color id="bar" color="#ff00ff" color2="#00ff00" 
    point="50 50" point2="300 300"/>]]>
 </programlisting>
+						 </entry>
 
 					</row>
 					 <row>
@@ -1987,10 +2005,10 @@
 							 <para>
 								<emphasis>Usage</emphasis>
 							</para>
-						</entry>
+	
 <programlisting language="XML" role="XML"><![CDATA[<p:stroke id="dot2" width="2" cap="round" join="bevel" dash="2 3" />]]>
 </programlisting>
-
+						 </entry>
 					</row>
 				</tbody>
 			</tgroup>
@@ -2088,12 +2106,12 @@
 							 <para>
 								<emphasis>Usage</emphasis>
 							</para>
-						</entry>
+	
 <programlisting language="XML" role="XML"><![CDATA[<p:barCode type="code128" barHeight="80" textSize="20" 
    code="(10)45566(17)040301" codeType="code128_ucc" 
    altText="My BarCode" />]]>
 </programlisting>
-
+						 </entry>
 					</row>
 				</tbody>
 			</tgroup>

Modified: projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Remoting.xml
===================================================================
--- projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Remoting.xml	2010-06-03 07:18:13 UTC (rev 105624)
+++ projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Remoting.xml	2010-06-03 07:32:59 UTC (rev 105625)
@@ -468,7 +468,7 @@
 			To help you track down bugs, you can enable a debug mode, which displays the contents of all packets sent between client and server in a pop-up window. To enable debug mode, either execute the <literal>setDebug()</literal> method in JavaScript, like so:
 		</para>
 		 
-<programlisting languge="Java" role="JAVA">
+<programlisting language="Java" role="JAVA">
 Seam.Remoting.setDebug(true);
 </programlisting>
 		 <para>

Modified: projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Spring.xml
===================================================================
--- projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Spring.xml	2010-06-03 07:18:13 UTC (rev 105624)
+++ projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Spring.xml	2010-06-03 07:32:59 UTC (rev 105625)
@@ -378,7 +378,7 @@
 			Spring provides an abstraction for executing code asynchronously, called a <literal>TaskExecutor</literal>. The Spring-Seam integration lets you use a Spring <literal>TaskExecutor</literal> to execute immediate <literal>@Asynchronous</literal> method calls. To enable this functionality, install the <literal>SpringTaskExecutorDispatchor</literal> and provide a Spring -bean defined <literal>taskExecutor</literal> like so:
 		</para>
 		 
-<programlisting languge="XML" role="XML"><![CDATA[<spring:task-executor-dispatcher  
+<programlisting language="XML" role="XML"><![CDATA[<spring:task-executor-dispatcher  
         task-executor="#{springThreadPoolTaskExecutor}"/>]]>
 </programlisting>
 		 <para>

Modified: projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Tutorial.xml
===================================================================
--- projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Tutorial.xml	2010-06-03 07:18:13 UTC (rev 105624)
+++ projects/docs/enterprise/EAP/trunk/5.x/Seam_Reference_Guide/en-US/Tutorial.xml	2010-06-03 07:32:59 UTC (rev 105625)
@@ -1183,7 +1183,7 @@
 				 <!-- <programlistingco> <areaspec> <area id="todo-description" coords="6"/> <area id="todo-createprocess-annotation" coords="15"/> <area id="todo-task-annotations" coords="18"/> </areaspec> --> 
 			<formalpara><title>TodoList.java Example</title>
                   <para>	 
-<programlisting langauge="Java" role="JAVA">@Name("todoList")
+<programlisting language="Java" role="JAVA">@Name("todoList")
 public class TodoList {
   private String description;
   




More information about the jboss-cvs-commits mailing list