View | Details | Raw Unified | Return to bug 62446
Collapse All | Expand All

(-)xdocs/changes.xml (+1 lines)
Lines 257-262 Link Here
257
<ul>
257
<ul>
258
    <li><bug>62211</bug>Fix HTTP Request Server Documentation. Contributed by orimarko at gmail.com</li>
258
    <li><bug>62211</bug>Fix HTTP Request Server Documentation. Contributed by orimarko at gmail.com</li>
259
    <li><pr>388</pr>Fix a typo. Contributed by Giancarlo Romeo (giancarloromeo at gmail.com)</li>
259
    <li><pr>388</pr>Fix a typo. Contributed by Giancarlo Romeo (giancarloromeo at gmail.com)</li>
260
	<li><bug>62446</bug>Counter documentation is wrong in required fieds. Contributed by orimarko at gmail.com</li>
260
</ul>
261
</ul>
261
262
262
<h3>General</h3>
263
<h3>General</h3>
(-)xdocs/usermanual/component_reference.xml (-5 / +5 lines)
Lines 4236-4245 Link Here
4236
</description>
4236
</description>
4237
<properties>
4237
<properties>
4238
        <property name="Name" required="">Descriptive name for this element that is shown in the tree.</property>
4238
        <property name="Name" required="">Descriptive name for this element that is shown in the tree.</property>
4239
        <property name="Starting value" required="Yes">The starting value for the counter.  The counter will equal this
4239
        <property name="Starting value" required="No">The starting value for the counter.  The counter will equal this
4240
        value during the first iteration.</property>
4240
        value during the first iteration (default 0).</property>
4241
        <property name="Increment" required="Yes">How much to increment the counter by after each
4241
        <property name="Increment" required="Yes">How much to increment the counter by after each
4242
        iteration.</property>
4242
        iteration (default 0, meaning no increment).</property>
4243
        <property name="Maximum value" required="No">If the counter exceeds the maximum, then it is reset to the <code>Starting value</code>.
4243
        <property name="Maximum value" required="No">If the counter exceeds the maximum, then it is reset to the <code>Starting value</code>.
4244
        Default is <code>Long.MAX_VALUE</code>
4244
        Default is <code>Long.MAX_VALUE</code>
4245
        </property>
4245
        </property>
Lines 4248-4256 Link Here
4248
        If there is a problem interpreting the format, then it is ignored.
4248
        If there is a problem interpreting the format, then it is ignored.
4249
    [The default format is generated using <code>Long.toString()</code>]
4249
    [The default format is generated using <code>Long.toString()</code>]
4250
        </property>
4250
        </property>
4251
        <property name="Exported Variable Name" required="Yes">This will be the variable name under which the counter value is available.  
4251
        <property name="Exported Variable Name" required="No">This will be the variable name under which the counter value is available.  
4252
        If you name it <code>counterA</code>, you can then access it using <code>${counterA}</code> 
4252
        If you name it <code>counterA</code>, you can then access it using <code>${counterA}</code> 
4253
        as explained in <a href="functions.html">user-defined values</a></property>
4253
        as explained in <a href="functions.html">user-defined values</a> (By default create an empty string variable that can be access using <code>${}</code> )</property>
4254
        <property name="Track Counter Independently for each User" required="No">In other words, is this a global counter, or does each user get their
4254
        <property name="Track Counter Independently for each User" required="No">In other words, is this a global counter, or does each user get their
4255
        own counter?  If unchecked, the counter is global (i.e., user #1 will get value "<code>1</code>", and user #2 will get value "<code>2</code>" on
4255
        own counter?  If unchecked, the counter is global (i.e., user #1 will get value "<code>1</code>", and user #2 will get value "<code>2</code>" on
4256
        the first iteration).  If checked, each user has an independent counter.</property>
4256
        the first iteration).  If checked, each user has an independent counter.</property>

Return to bug 62446