Author: jleroux
Date: Wed Apr 15 17:26:55 2015
New Revision: 1673884
URL: http://svn.apache.org/r1673884
Log:
Reverts r1673767 related with https://issues.apache.org/jira/browse/OFBIZ-6253
wrong: "Fixe <result-to-field> doc for <call-simple-method> in
simple-methods-v2.xsd"
Modified:
ofbiz/branches/release12.04/framework/minilang/dtd/simple-methods-v2.xsd
Modified:
ofbiz/branches/release12.04/framework/minilang/dtd/simple-methods-v2.xsd
URL:
http://svn.apache.org/viewvc/ofbiz/branches/release12.04/framework/minilang/dtd/simple-methods-v2.xsd?rev=1673884&r1=1673883&r2=1673884&view=diff
==============================================================================
--- ofbiz/branches/release12.04/framework/minilang/dtd/simple-methods-v2.xsd
(original)
+++ ofbiz/branches/release12.04/framework/minilang/dtd/simple-methods-v2.xsd
Wed Apr 15 17:26:55 2015
@@ -2726,7 +2726,8 @@ under the License.
<xs:element ref="result-to-field" minOccurs="0"
maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>
- Used only when scope="inline". Copies the called
method fields to the calling method fields.
+ Used when scope="function". Copies the called
method fields
+ to the calling method fields.
</xs:documentation>
</xs:annotation>
</xs:element>
@@ -2754,8 +2755,8 @@ under the License.
<xs:attribute name="scope">
<xs:annotation>
<xs:documentation>
- The memory scope to use. In an "inline" memory scope,
fields declared or modified in the called method
- will be reflected back to the calling method - as if
the called method was inline. In a "function" memory
+ The memory scope to use. In an "inline"
memory scope, fields declared or modified in the called method
+ will be reflected back to the calling method - as if
the called method was inline. In a "function" memory
scope, fields declared or modified in the called
method are local to the called method - they are not
reflected back to the calling method.