[Laszlo-checkins] r11774 - openlaszlo/trunk/lps/components/rpc

lou@openlaszlo.org lou at openlaszlo.org
Fri Nov 14 08:11:48 PST 2008


Author: lou
Date: 2008-11-14 08:11:23 -0800 (Fri, 14 Nov 2008)
New Revision: 11774

Modified:
   openlaszlo/trunk/lps/components/rpc/rpc.lzx
Log:
Change 20081114-lou-D by lou at loumac.local on 2008-11-14 12:08:26 AST
    in /Users/lou/src/svn/openlaszlo/trunk
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: reference lz.param: change return type from String to *, fix typos

Bugs Fixed: LPP-7327

Technical Reviewer: (pending)
QA Reviewer: (pending)
Doc Reviewer: andre 

Tests: visual verify



Modified: openlaszlo/trunk/lps/components/rpc/rpc.lzx
===================================================================
--- openlaszlo/trunk/lps/components/rpc/rpc.lzx	2008-11-14 16:10:33 UTC (rev 11773)
+++ openlaszlo/trunk/lps/components/rpc/rpc.lzx	2008-11-14 16:11:23 UTC (rev 11774)
@@ -716,13 +716,13 @@
 
     <!-- 'Element to use inside remotecall. -->
     <class name="param" extends="node">
-        <!--- Value to use for paramter. A <code>getValue()</code> method can be declared
+        <!--- Value to use for parameter. A <code>getValue()</code> method can be declared
               inside param to use its return as the parameter value. If both
               <code>value</code> attribute and <code>getValue()</code> method are declared, param will use
               <code>getValue()</code>. -->
         <attribute name="value" value="null" type="expression" />
         <!--- Returns value.
-            @return String: the string representing the value. -->
+            @return *: the value to use for this parameter -->
         <method name="getValue">
           return this.value;
         </method>
@@ -731,7 +731,7 @@
             <text>
                 <p>Tag to declaratively set parameter values for <sgmltag class="element" role="lz.remotecall">&lt;remotecall&gt;</sgmltag>. If a 
                     <code>getValue()</code> method is declared in the body of <code>remotecall</code>, use its return as 
-                    value for paramter. If both <code>getValue()</code> method and <code>value</code> attribute are set in 
+                    value for parameter. If both <code>getValue()</code> method and <code>value</code> attribute are set in 
                     param, <code>getValue()</code> wins.</p>
                 <programlisting title="Usage example">
     &lt;remotecall name="func1" funcname="someFunc"&gt;



More information about the Laszlo-checkins mailing list