You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by ri...@apache.org on 2005/08/24 19:04:16 UTC

svn commit: r239716 - /beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/pageflow/sharedFlow.xml

Author: rich
Date: Wed Aug 24 10:04:11 2005
New Revision: 239716

URL: http://svn.apache.org/viewcvs?rev=239716&view=rev
Log:
Fixed some more compile errors in the Shared Flow doc.  Will overhaul this doc more thoroughly at some point, but at least the code should compile now.  :)  Thanks to Jeremiah for noticing this.



Modified:
    beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/pageflow/sharedFlow.xml

Modified: beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/pageflow/sharedFlow.xml
URL: http://svn.apache.org/viewcvs/beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/pageflow/sharedFlow.xml?rev=239716&r1=239715&r2=239716&view=diff
==============================================================================
--- beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/pageflow/sharedFlow.xml (original)
+++ beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/pageflow/sharedFlow.xml Wed Aug 24 10:04:11 2005
@@ -106,8 +106,8 @@
 				annotation).</p>
 			<source>@Jpf.Contoller(
     sharedFlowsRefs={
-        @Jpf.SharedFlowRef(name="someNameOne", type="SharedFlowClassOne.class"),
-        @Jpf.SharedFlowRef(name="someNameTwo", type="SharedFlowClassTwo.class")
+        @Jpf.SharedFlowRef(name="someNameOne", type=SharedFlowClassOne.class),
+        @Jpf.SharedFlowRef(name="someNameTwo", type=SharedFlowClassTwo.class)
     }
 )
 public class SomeController extends Controller
@@ -116,8 +116,8 @@
 	 @Jpf.SharedFlowField annotation. </p>
 			<source>@Jpf.Contoller(
     sharedFlowsRefs={
-        @Jpf.SharedFlowRef(name="sharedFlowOne", type="SharedFlowClassOne.class"),
-        @Jpf.SharedFlowRef(name="sharedFlowTwo", type="SharedFlowClassTwo.class")
+        @Jpf.SharedFlowRef(name="sharedFlowOne", type=SharedFlowClassOne.class),
+        @Jpf.SharedFlowRef(name="sharedFlowTwo", type=SharedFlowClassTwo.class)
     }
 )
 public class SomeController extends Controller
@@ -154,7 +154,7 @@
 <p>where <code>specificSharedFlow</code> was the name given to the shared flow in the 
 	<code>@Jpf.SharedFlowRef/@Jpf.SharedFlowField</code> 
 	annotations.</p>
-	<source>@Jpf.SharedFlowRef(name="specficSharedFlow", type="SomeSharedFlow.class")
+	<source>@Jpf.SharedFlowRef(name="specficSharedFlow", type=SomeSharedFlow.class)
 		
 @Jpf.SharedFlowField(name="specificSharedFlow")
 		</source>