fix format of @param and @return
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/60bd8d5f Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/60bd8d5f Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/60bd8d5f Branch: refs/heads/develop Commit: 60bd8d5fe549180238eb1eda5d692e71a32ae334 Parents: 548249d Author: Alex Harui <[email protected]> Authored: Wed Feb 5 23:39:42 2014 -0800 Committer: Alex Harui <[email protected]> Committed: Wed Feb 5 23:39:42 2014 -0800 ---------------------------------------------------------------------- .../src/org/apache/flex/core/FilledRectangle.as | 8 +++--- .../src/org/apache/flex/core/IDocument.as | 4 +-- .../flex/core/IItemRendererClassFactory.as | 4 +-- .../org/apache/flex/core/IItemRendererParent.as | 4 +-- .../src/org/apache/flex/core/IParent.as | 11 ++++---- .../src/org/apache/flex/core/IStrand.as | 5 ++-- .../src/org/apache/flex/core/IValuesImpl.as | 14 +++++----- .../org/apache/flex/core/SimpleCSSValuesImpl.as | 6 ++--- .../org/apache/flex/core/SimpleValuesImpl.as | 6 ++--- .../src/org/apache/flex/core/ViewBase.as | 4 +-- .../src/org/apache/flex/events/CustomEvent.as | 6 ++--- .../src/org/apache/flex/events/Event.as | 6 ++--- .../org/apache/flex/events/ValueChangeEvent.as | 8 +++--- .../src/org/apache/flex/net/HTTPHeader.as | 4 +-- .../src/org/apache/flex/net/IInputParser.as | 4 +-- .../src/org/apache/flex/net/IItemConverter.as | 4 +-- .../src/org/apache/flex/utils/BeadMetrics.as | 4 +-- .../src/org/apache/flex/utils/BinaryData.as | 2 +- .../apache/flex/utils/MXMLDataInterpreter.as | 28 ++++++++++---------- .../org/apache/flex/utils/SolidBorderUtil.as | 18 ++++++------- .../FlexJSUI/src/org/apache/flex/utils/Timer.as | 4 +-- 21 files changed, 78 insertions(+), 76 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60bd8d5f/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/FilledRectangle.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/FilledRectangle.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/FilledRectangle.as index 4318527..dcc6965 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/FilledRectangle.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/FilledRectangle.as @@ -85,10 +85,10 @@ package org.apache.flex.core /** * Draw the rectangle. - * @param Number x The x position of the top-left corner of the rectangle. - * @param Number y The y position of the top-left corner. - * @param Number width The width of the rectangle. - * @param Number height The height of the rectangle. + * @param x The x position of the top-left corner of the rectangle. + * @param y The y position of the top-left corner. + * @param width The width of the rectangle. + * @param height The height of the rectangle. * * @langversion 3.0 * @playerversion Flash 10.2 http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60bd8d5f/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IDocument.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IDocument.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IDocument.as index 8825672..29ea190 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IDocument.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IDocument.as @@ -35,8 +35,8 @@ package org.apache.flex.core * it belongs to, if any, and what its assigned id is in that * document, if any. * - * @param Object document The MXML document that hosts this component. - * @param String id The optional id of the component in the document. + * @param document The MXML document that hosts this component. + * @param id The optional id of the component in the document. * * @langversion 3.0 * @playerversion Flash 10.2 http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60bd8d5f/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IItemRendererClassFactory.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IItemRendererClassFactory.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IItemRendererClassFactory.as index 21b6e7a..c1fccc4 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IItemRendererClassFactory.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IItemRendererClassFactory.as @@ -44,8 +44,8 @@ package org.apache.flex.core * This method is called to generate another instance of an item renderer * and attach it to the given parent. * - * @param org.apache.flex.core.IItemRendererParent parent The parent of the item renderer. - * @return org.apache.flex.core.IItemRenderer The item renderer. + * @param parent The parent of the item renderer. + * @return The item renderer. * * @see org.apache.flex.core.IItemRendererParent * @see org.apache.flex.core.IItemRenderer http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60bd8d5f/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IItemRendererParent.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IItemRendererParent.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IItemRendererParent.as index 3466f0c..cb0531d 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IItemRendererParent.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IItemRendererParent.as @@ -35,8 +35,8 @@ package org.apache.flex.core * The IItemRendererParent interface is the basic interface for the * container that parents item renderers. * - * @param int index The index of the data item. - * @return org.apache.flex.core.IItemRenderer The item renderer for the data item. + * @param index The index of the data item. + * @return The item renderer for the data item. * * @see org.apache.flex.core.IItemRenderer * http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60bd8d5f/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IParent.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IParent.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IParent.as index 3a214c9..85f4663 100755 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IParent.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IParent.as @@ -33,7 +33,7 @@ package org.apache.flex.core /** * Add a component to the parent. * - * @param Object c The subcomponent to add. + * @param c The subcomponent to add. * * @langversion 3.0 * @playerversion Flash 10.2 @@ -45,8 +45,8 @@ package org.apache.flex.core /** * Add a component to the parent. * - * @param Object c The subcomponent to add. - * @param int c The index where the subcomponent should be added. + * @param c The subcomponent to add. + * @param c The index where the subcomponent should be added. * * @langversion 3.0 * @playerversion Flash 10.2 @@ -58,7 +58,8 @@ package org.apache.flex.core /** * Gets the index of this subcomponent. * - * @param Object c The subcomponent to add. + * @param c The subcomponent to add. + * @return The index (zero-based). * * @langversion 3.0 * @playerversion Flash 10.2 @@ -70,7 +71,7 @@ package org.apache.flex.core /** * Remove a component from the parent. * - * @param Object c The subcomponent to remove. + * @param c The subcomponent to remove. * * @langversion 3.0 * @playerversion Flash 10.2 http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60bd8d5f/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IStrand.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IStrand.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IStrand.as index a048376..ea91bf4 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IStrand.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IStrand.as @@ -39,7 +39,7 @@ package org.apache.flex.core /** * Add a bead to the strand. * - * @param IBead bead The bead to be added. + * @param bead The bead to be added. * * @langversion 3.0 * @playerversion Flash 10.2 @@ -51,8 +51,9 @@ package org.apache.flex.core /** * Find a bead on the strand. * - * @param Class classOrInterface The class or interface to use + * @param classOrInterface The class or interface to use * to search for the bead + * @return The bead. * * @langversion 3.0 * @playerversion Flash 10.2 http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60bd8d5f/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IValuesImpl.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IValuesImpl.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IValuesImpl.as index 5fa0d9d..ce7e43f 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IValuesImpl.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/IValuesImpl.as @@ -36,11 +36,11 @@ package org.apache.flex.core * Returns a value for a given object based on a property name, * and optionally, the current state, and a set of property value pairs. * - * @param Object thisObject The object to get the value for. - * @param String valueName The name of a property. e.g. fontFamily, color, etc. - * @param String state The name of a state. e.g. hovered, visited - * @param Object attrs A map of property value pairs that may affect the returned value. - * @return * A value or undefined + * @param thisObject The object to get the value for. + * @param valueName The name of a property. e.g. fontFamily, color, etc. + * @param state The name of a state. e.g. hovered, visited + * @param attrs A map of property value pairs that may affect the returned value. + * @return A value or undefined * * @langversion 3.0 * @playerversion Flash 10.2 @@ -53,7 +53,7 @@ package org.apache.flex.core * Returns a shared instance, instantiating the shared instance if * it doesn't exist. Often used to share "managers" * - * @param String valueName The name of a shared instance. Often, the fully + * @param valueName The name of a shared instance. Often, the fully * qualified class name is used. * * @langversion 3.0 @@ -67,7 +67,7 @@ package org.apache.flex.core * MXML Documents that support <fx:Style> blocks should call * init to install the styles for each instance. * - * @param Object mainClass An instance that may have styles from an <fx:Style> block. + * @param mainClass An instance that may have styles from an <fx:Style> block. * * @langversion 3.0 * @playerversion Flash 10.2 http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60bd8d5f/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/SimpleCSSValuesImpl.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/SimpleCSSValuesImpl.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/SimpleCSSValuesImpl.as index df5ac29..d4a4ba1 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/SimpleCSSValuesImpl.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/SimpleCSSValuesImpl.as @@ -337,10 +337,10 @@ package org.apache.flex.core * It is global, not per instance. Fancier implementations * may store shared values per-instance. * - * @param Object thisObject An object associated with this value. Thiis + * @param thisObject An object associated with this value. Thiis * parameter is ignored. - * @param String valueName The name or key of the value being stored. - * @param * The value to be stored. + * @param valueName The name or key of the value being stored. + * @param The value to be stored. * * @langversion 3.0 * @playerversion Flash 10.2 http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60bd8d5f/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/SimpleValuesImpl.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/SimpleValuesImpl.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/SimpleValuesImpl.as index 9ff5671..225a50f 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/SimpleValuesImpl.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/SimpleValuesImpl.as @@ -68,10 +68,10 @@ package org.apache.flex.core * It is global, not per instance. Fancier implementations * may store shared values per-instance. * - * @param Object thisObject An object associated with this value. Thiis + * @param thisObject An object associated with this value. Thiis * parameter is ignored. - * @param String valueName The name or key of the value being stored. - * @param * The value to be stored. + * @param valueName The name or key of the value being stored. + * @param value The value to be stored. * * @langversion 3.0 * @playerversion Flash 10.2 http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60bd8d5f/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/ViewBase.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/ViewBase.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/ViewBase.as index 6f46a62..08b8687 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/ViewBase.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/core/ViewBase.as @@ -193,8 +193,8 @@ package org.apache.flex.core * <code>true</code> if the array of states * contains a state with this name. * - * @param String state The state namem. - * @return Boolean True if state in state array + * @param state The state namem. + * @return True if state in state array * * @langversion 3.0 * @playerversion Flash 10.2 http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60bd8d5f/frameworks/as/projects/FlexJSUI/src/org/apache/flex/events/CustomEvent.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/events/CustomEvent.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/events/CustomEvent.as index 3165ea2..3a291dc 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/events/CustomEvent.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/events/CustomEvent.as @@ -33,9 +33,9 @@ package org.apache.flex.events /** * Constructor. * - * @param String type The name of the event. - * @param Boolean bubbles Whether the event bubbles. - * @param Boolean cancelable Whether the event can be canceled. + * @param type The name of the event. + * @param bubbles Whether the event bubbles. + * @param cancelable Whether the event can be canceled. * * @langversion 3.0 * @playerversion Flash 10.2 http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60bd8d5f/frameworks/as/projects/FlexJSUI/src/org/apache/flex/events/Event.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/events/Event.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/events/Event.as index f8c8157..4c23e7f 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/events/Event.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/events/Event.as @@ -38,9 +38,9 @@ package org.apache.flex.events /** * Constructor. * - * @param String type The name of the event. - * @param Boolean bubbles Whether the event bubbles. - * @param Boolean cancelable Whether the event can be canceled. + * @param type The name of the event. + * @param bubbles Whether the event bubbles. + * @param cancelable Whether the event can be canceled. * * @langversion 3.0 * @playerversion Flash 10.2 http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60bd8d5f/frameworks/as/projects/FlexJSUI/src/org/apache/flex/events/ValueChangeEvent.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/events/ValueChangeEvent.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/events/ValueChangeEvent.as index 7bd2caf..7790767 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/events/ValueChangeEvent.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/events/ValueChangeEvent.as @@ -100,10 +100,10 @@ package org.apache.flex.events /** * A convenience method to create an instance of the ValueChangeEvent. * - * @param Object source The source of the object. - * @param String name The name of the event. - * @param Object oldValue The value before it was changed. - * @param Object newValue The value after it was changed. + * @param source The source of the object. + * @param name The name of the event. + * @param oldValue The value before it was changed. + * @param newValue The value after it was changed. * @return An instance of the ValueChangeEvent. * * @langversion 3.0 http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60bd8d5f/frameworks/as/projects/FlexJSUI/src/org/apache/flex/net/HTTPHeader.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/net/HTTPHeader.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/net/HTTPHeader.as index cd43e68..45f08b3 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/net/HTTPHeader.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/net/HTTPHeader.as @@ -41,8 +41,8 @@ package org.apache.flex.net /** * Constructor. * - * @param String name The name of the header. - * @param String value The value for that header. + * @param name The name of the header. + * @param value The value for that header. * * @langversion 3.0 * @playerversion Flash 10.2 http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60bd8d5f/frameworks/as/projects/FlexJSUI/src/org/apache/flex/net/IInputParser.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/net/IInputParser.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/net/IInputParser.as index 1be9343..229404c 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/net/IInputParser.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/net/IInputParser.as @@ -37,8 +37,8 @@ package org.apache.flex.net * XML, or JSON) and return an array of serialized data * items. * - * @param String s Serialized data set, XML or JSON. - * @return Array An Array of serialized data items. + * @param s Serialized data set, XML or JSON. + * @return An Array of serialized data items. * * @langversion 3.0 * @playerversion Flash 10.2 http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60bd8d5f/frameworks/as/projects/FlexJSUI/src/org/apache/flex/net/IItemConverter.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/net/IItemConverter.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/net/IItemConverter.as index 733e071..7b0eeac 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/net/IItemConverter.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/net/IItemConverter.as @@ -36,8 +36,8 @@ package org.apache.flex.net * Take the input string (could be serialized data set, * XML, or JSON) and return a data class instance. * - * @param String s Serialized data item, XML or JSON. - * @return Object An instance of a data class. + * @param s Serialized data item, XML or JSON. + * @return An instance of a data class. * * @langversion 3.0 * @playerversion Flash 10.2 http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60bd8d5f/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/BeadMetrics.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/BeadMetrics.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/BeadMetrics.as index 75f2a86..cdf267b 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/BeadMetrics.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/BeadMetrics.as @@ -38,8 +38,8 @@ public class BeadMetrics * Compute the offset of the content * in a container based on border-thickness and padding styles. * - * @param IStrand strand The host strand. - * @return UIMetrics The offsets of the content. + * @param strand The host strand. + * @return The offsets of the content. * * @langversion 3.0 * @playerversion Flash 10.2 http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60bd8d5f/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/BinaryData.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/BinaryData.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/BinaryData.as index edf29ea..b41647c 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/BinaryData.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/BinaryData.as @@ -221,7 +221,7 @@ public class BinaryData * and resizing in large chunks in generally more * efficient anyway. * - * @param int extra The number of additional bytes. + * @param extra The number of additional bytes. * * @langversion 3.0 * @playerversion Flash 10.2 http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60bd8d5f/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/MXMLDataInterpreter.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/MXMLDataInterpreter.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/MXMLDataInterpreter.as index ef44460..eecfa53 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/MXMLDataInterpreter.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/MXMLDataInterpreter.as @@ -54,10 +54,10 @@ public class MXMLDataInterpreter /** * Generates an object based on the encoded data. * - * @param Object document The MXML document. If the object has an id + * @param document The MXML document. If the object has an id * it will be assigned in this document in this method. - * @param Array data The encoded data. - * @return Object The object. + * @param data The encoded data. + * @return The object. * * @langversion 3.0 * @playerversion Flash 10.2 @@ -108,12 +108,12 @@ public class MXMLDataInterpreter /** * Generates an Array of objects based on the encoded data. * - * @param Object document The MXML document. If the object has an id + * @param document The MXML document. If the object has an id * it will be assigned in this document in this method. - * @param Array parent The parent for any display objects encoded in the array. - * @param Array data The encoded data. - * @param Boolean recursive Whether to interpret a child's array of encoded data. - * @return Array The Array. + * @param parent The parent for any display objects encoded in the array. + * @param data The encoded data. + * @param recursive Whether to interpret a child's array of encoded data. + * @return The Array. * * @langversion 3.0 * @playerversion Flash 10.2 @@ -266,11 +266,11 @@ public class MXMLDataInterpreter /** * Generates the instances of objects in an MXML document based on the encoded data. * - * @param Object document The MXML document. If the object has an id + * @param document The MXML document. If the object has an id * it will be assigned in this document in this method. - * @param Array parent The parent for any display objects encoded in the array. - * @param Array data The encoded data. - * @param Boolean recursive Whether to interpret a child's array of encoded data. + * @param parent The parent for any display objects encoded in the array. + * @param data The encoded data. + * @param recursive Whether to interpret a child's array of encoded data. * * @langversion 3.0 * @playerversion Flash 10.2 @@ -289,9 +289,9 @@ public class MXMLDataInterpreter * based on the encoded data. This basically means setting the attributes * found on the tag and child tags that aren't in the default property. * - * @param Object host The MXML document. If the object has an id + * @param host The MXML document. If the object has an id * it will be assigned in this document in this method. - * @param Array data The encoded data. + * @param data The encoded data. * * @langversion 3.0 * @playerversion Flash 10.2 http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60bd8d5f/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/SolidBorderUtil.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/SolidBorderUtil.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/SolidBorderUtil.as index 469104f..d261be1 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/SolidBorderUtil.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/SolidBorderUtil.as @@ -38,15 +38,15 @@ public class SolidBorderUtil * Draw a solid color border as specified. Will fill with * the backgroundColor if specified. * - * @param Graphics g The flash.display.DisplayObject#graphics - * @param Number x The x position - * @param Number y The y position - * @param Number width The width - * @param Number height The height - * @param uint color The color - * @param uint backgroundColor The optional fill color - * @param int thickness The thickness of the border - * @param Number alpha The alpha + * @param g The flash.display.DisplayObject#graphics + * @param x The x position + * @param y The y position + * @param width The width + * @param height The height + * @param color The color + * @param backgroundColor The optional fill color + * @param thickness The thickness of the border + * @param alpha The alpha * * @langversion 3.0 * @playerversion Flash 10.2 http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/60bd8d5f/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/Timer.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/Timer.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/Timer.as index bb2e2f6..2d8b075 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/Timer.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/utils/Timer.as @@ -52,9 +52,9 @@ public class Timer extends flash.utils.Timer /** * Constructor. * - * @param Number delay The number of milliseconds + * @param delay The number of milliseconds * to wait before dispatching the event. - * @param int repeatCount The number of times to dispatch + * @param repeatCount The number of times to dispatch * the event. If 0, keep dispatching forever. * * @langversion 3.0
