[Laszlo-checkins] r12064 - in openlaszlo/trunk/WEB-INF/lps/lfc: core data views

bargull@openlaszlo.org bargull at openlaszlo.org
Thu Dec 11 15:09:10 PST 2008


Author: bargull
Date: 2008-12-11 15:09:06 -0800 (Thu, 11 Dec 2008)
New Revision: 12064

Modified:
   openlaszlo/trunk/WEB-INF/lps/lfc/core/LzNode.lzs
   openlaszlo/trunk/WEB-INF/lps/lfc/data/LzParam.lzs
   openlaszlo/trunk/WEB-INF/lps/lfc/views/LaszloView.lzs
Log:
Change 20081211-bargull-App by bargull at dell--p4--2-53 on 2008-12-11 21:49:21
    in /home/Admin/src/svn/openlaszlo/trunk
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: use proper deprecated java-doc

New Features:

Bugs Fixed: LPP-7450

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

Documentation:

Release Notes:

Details:
Replace "@keywords deprecated" with "@deprecated", so the doc-tool will recognize deprecated methods properly.
    

Tests:



Modified: openlaszlo/trunk/WEB-INF/lps/lfc/core/LzNode.lzs
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/core/LzNode.lzs	2008-12-11 21:04:43 UTC (rev 12063)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/core/LzNode.lzs	2008-12-11 23:09:06 UTC (rev 12064)
@@ -1125,10 +1125,10 @@
    *
    * @param String prop: a string specifying the key of attribute to return.
    * @return any: value of named property
-   * @keywords deprecated
+   * @deprecated
    */
   function getAttribute(prop) {
-    Debug.info("%w.%s(%#w) is deprecated.  Use %w[%#w] instead.", this, arguments.callee, prop, this, prop);
+    if ($debug) Debug.info("%w.%s(%#w) is deprecated.  Use %w[%#w] instead.", this, arguments.callee, prop, this, prop);
     return this[ prop ];
   }
 
@@ -1491,7 +1491,7 @@
   * Applies a function as a constraint. Deprecated: Constraints should be methods and should be applied
   * using <method>applyConstraintMethod()</method>
    *
-   * @keywords deprecated: Constraints should be methods and should be applied
+   * @deprecated Constraints should be methods and should be applied
    * using applyConstraintMethod
    *
    * @param String attribute: Putatively the attribute being

Modified: openlaszlo/trunk/WEB-INF/lps/lfc/data/LzParam.lzs
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/data/LzParam.lzs	2008-12-11 21:04:43 UTC (rev 12063)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/data/LzParam.lzs	2008-12-11 23:09:06 UTC (rev 12064)
@@ -210,7 +210,7 @@
   * Get a value by name irrespective of case.
   * @param String name: The name to look up - must evaluate to a string
   * @return [String]: An array of values that case-insensitively match name
-  * @keywords deprecated
+  * @deprecated Use getValues(...) instead
   */
 function getValueNoCase (name:String) :* {
     //TODO: [20080917 anba] deprecated since 4.2 remove in 4.3+

Modified: openlaszlo/trunk/WEB-INF/lps/lfc/views/LaszloView.lzs
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/views/LaszloView.lzs	2008-12-11 21:04:43 UTC (rev 12063)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/views/LaszloView.lzs	2008-12-11 23:09:06 UTC (rev 12064)
@@ -1582,7 +1582,7 @@
 
 /**
   * Releases all the layouts applied to this view. <method>releaseLayouts()</method> has been deprecated.
-  * @keywords deprecated
+  * @deprecated
   * @devnote NOTE [2008-06-26 ptw] This is deprecated and tells you to
   * use setAttribute instead, but there is no setter for layouts.
   * What was really meant?



More information about the Laszlo-checkins mailing list