http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/ed625a86/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/supportClasses/DropDownListList.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/supportClasses/DropDownListList.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/supportClasses/DropDownListList.as index 04f9f7c..7ee555f 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/supportClasses/DropDownListList.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/supportClasses/DropDownListList.as @@ -19,19 +19,50 @@ package org.apache.flex.html.staticControls.supportClasses { import org.apache.flex.core.IPopUp; - import org.apache.flex.html.staticControls.List; import org.apache.flex.html.staticControls.SimpleList; import org.apache.flex.html.staticControls.beads.SolidBackgroundBead; + //-------------------------------------- + // Events + //-------------------------------------- + + /** + * @copy org.apache.flex.core.ISelectionModel#change + * + * @langversion 3.0 + * @playerversion Flash 10.2 + * @playerversion AIR 2.6 + * @productversion FlexJS 0.0 + */ [Event(name="change", type="org.apache.flex.events.Event")] + /** + * The DropDownListList class is the List class used internally + * by DropDownList as the dropdown/popup. + * + * @langversion 3.0 + * @playerversion Flash 10.2 + * @playerversion AIR 2.6 + * @productversion FlexJS 0.0 + */ public class DropDownListList extends SimpleList implements IPopUp { + /** + * Constructor. + * + * @langversion 3.0 + * @playerversion Flash 10.2 + * @playerversion AIR 2.6 + * @productversion FlexJS 0.0 + */ public function DropDownListList() { super(); } + /** + * @private + */ override public function addedToParent():void { super.addedToParent();
http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/ed625a86/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/supportClasses/NonVirtualDataGroup.as ---------------------------------------------------------------------- diff --git a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/supportClasses/NonVirtualDataGroup.as b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/supportClasses/NonVirtualDataGroup.as index 133ed18..b154974 100644 --- a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/supportClasses/NonVirtualDataGroup.as +++ b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/supportClasses/NonVirtualDataGroup.as @@ -22,18 +22,51 @@ package org.apache.flex.html.staticControls.supportClasses import org.apache.flex.core.IItemRendererParent; import org.apache.flex.core.UIBase; + /** + * The NonVirtualDataGroup class is the IItemRendererParent used internally + * by org.apache.flex.html.staticControls.List class. + * + * @langversion 3.0 + * @playerversion Flash 10.2 + * @playerversion AIR 2.6 + * @productversion FlexJS 0.0 + */ public class NonVirtualDataGroup extends UIBase implements IItemRendererParent { + /** + * Constructor. + * + * @langversion 3.0 + * @playerversion Flash 10.2 + * @playerversion AIR 2.6 + * @productversion FlexJS 0.0 + */ public function NonVirtualDataGroup() { super(); } + /** + * @copy org.apache.flex.core.IItemRendererParent#getItemRendererForIndex. + * + * @langversion 3.0 + * @playerversion Flash 10.2 + * @playerversion AIR 2.6 + * @productversion FlexJS 0.0 + */ public function getItemRendererForIndex(index:int):IItemRenderer { return getChildAt(index) as IItemRenderer; } + /** + * @copy org.apache.flex.core.IItemRendererParent#removeAllElements + * + * @langversion 3.0 + * @playerversion Flash 10.2 + * @playerversion AIR 2.6 + * @productversion FlexJS 0.0 + */ public function removeAllElements():void { this.removeChildren(0);
