fix a few more asdoc issues
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/9c23eb3a Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/9c23eb3a Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/9c23eb3a Branch: refs/heads/develop Commit: 9c23eb3a1b4a42f31a82d8b0397ad174d290a16c Parents: 60bd8d5 Author: Alex Harui <[email protected]> Authored: Thu Feb 6 06:39:07 2014 -0800 Committer: Alex Harui <[email protected]> Committed: Thu Feb 6 06:39:07 2014 -0800 ---------------------------------------------------------------------- .../FlexJSUI/src/org/apache/flex/binding/GenericBinding.as | 2 ++ .../FlexJSUI/src/org/apache/flex/binding/WatcherBase.as | 8 ++++++++ 2 files changed, 10 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/9c23eb3a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/binding/GenericBinding.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/binding/GenericBinding.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/binding/GenericBinding.as index f5f0c63..934d9a5 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/binding/GenericBinding.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/binding/GenericBinding.as @@ -195,6 +195,8 @@ package org.apache.flex.binding * The method that gets called by the watcher when the value * may have changed. * + * @param value The new value. + * * @langversion 3.0 * @playerversion Flash 10.2 * @playerversion AIR 2.6 http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/9c23eb3a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/binding/WatcherBase.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/binding/WatcherBase.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/binding/WatcherBase.as index 8efd6c4..7ec0805 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/binding/WatcherBase.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/binding/WatcherBase.as @@ -100,6 +100,8 @@ package org.apache.flex.binding * handle changes in the parent chain. For example, if watching * {a.b.c} and this watcher is watching "b", then handle "a" changing. * + * @param parent The new parent. + * * @langversion 3.0 * @playerversion Flash 10.2 * @playerversion AIR 2.6 @@ -115,6 +117,8 @@ package org.apache.flex.binding * {a.b.c} and this watcher is watching "b", then this method * is called to add the watcher watching "c". * + * @param child The new child + * * @langversion 3.0 * @playerversion Flash 10.2 * @playerversion AIR 2.6 @@ -136,6 +140,8 @@ package org.apache.flex.binding * that actually perform the change based on changes * detected to this portion of the chain. * + * @param binding The new binding. + * * @langversion 3.0 * @playerversion Flash 10.2 * @playerversion AIR 2.6 @@ -219,6 +225,8 @@ package org.apache.flex.binding * Calls a function inside a try catch block to try to * update the value. * + * @param wrappedFunction The function to call. + * * @langversion 3.0 * @playerversion Flash 10.2 * @playerversion AIR 2.6
