missed a few @this
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/f226437b Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/f226437b Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/f226437b Branch: refs/heads/develop Commit: f226437ba173b55fababe99889961d280369fd9c Parents: 7bb9e9a Author: Alex Harui <[email protected]> Authored: Tue Mar 17 10:14:21 2015 -0700 Committer: Alex Harui <[email protected]> Committed: Tue Mar 17 10:14:21 2015 -0700 ---------------------------------------------------------------------- .../apache/flex/html/beads/ScrollingContainerView.js | 12 ++++++------ .../flex/html/supportClasses/UIItemRendererBase.js | 12 ++++++++++++ 2 files changed, 18 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/f226437b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ScrollingContainerView.js ---------------------------------------------------------------------- diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ScrollingContainerView.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ScrollingContainerView.js index ef3161a..ae6c45c 100644 --- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ScrollingContainerView.js +++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ScrollingContainerView.js @@ -47,29 +47,29 @@ org_apache_flex_html_beads_ScrollingContainerView.prototype.FLEXJS_CLASS_INFO = Object.defineProperties(org_apache_flex_html_beads_ScrollingContainerView.prototype, { 'contentView': { - /** @this {org_apache_flex_html_beads_SliderThumbView} */ + /** @this {org_apache_flex_html_beads_ScrollingContainerView} */ get: function() { return this._strand; } }, 'resizableView': { - /** @this {org_apache_flex_html_beads_SliderThumbView} */ + /** @this {org_apache_flex_html_beads_ScrollingContainerView} */ get: function() { return this._strand; } }, 'verticalScrollPosition': { - /** @this {org_apache_flex_html_beads_SliderThumbView} */ + /** @this {org_apache_flex_html_beads_ScrollingContainerView} */ get: function() { return this._strand.scrollTop; }, - /** @this {org_apache_flex_html_beads_SliderThumbView} */ - set: function(value) { + /** @this {org_apache_flex_html_beads_ScrollingContainerView} */ + set: function(value) { this._strand.scrollTop = value; } }, 'maxVerticalScrollPosition': { - /** @this {org_apache_flex_html_beads_SliderThumbView} */ + /** @this {org_apache_flex_html_beads_ScrollingContainerView} */ get: function() { return this._strand.scrollHeight - this._strand.clientHeight; } http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/f226437b/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/UIItemRendererBase.js ---------------------------------------------------------------------- diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/UIItemRendererBase.js b/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/UIItemRendererBase.js index 83bd86b..dba179c 100644 --- a/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/UIItemRendererBase.js +++ b/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/UIItemRendererBase.js @@ -84,49 +84,61 @@ Object.defineProperties(org_apache_flex_html_supportClasses_UIItemRendererBase.p } }, 'data': { + /** @this {org_apache_flex_html_supportClasses_UIItemRendererBase} */ get: function() { return this.data_; }, + /** @this {org_apache_flex_html_supportClasses_UIItemRendererBase} */ set: function(value) { this.data_ = value; } }, 'labelField': { + /** @this {org_apache_flex_html_supportClasses_UIItemRendererBase} */ get: function() { return this.labelField_; }, + /** @this {org_apache_flex_html_supportClasses_UIItemRendererBase} */ set: function(value) { this.labelField_ = value; } }, 'index': { + /** @this {org_apache_flex_html_supportClasses_UIItemRendererBase} */ get: function() { return this.index_; }, + /** @this {org_apache_flex_html_supportClasses_UIItemRendererBase} */ set: function(value) { this.index_ = value; } }, 'hovered': { + /** @this {org_apache_flex_html_supportClasses_UIItemRendererBase} */ get: function() { return this.hovered_; }, + /** @this {org_apache_flex_html_supportClasses_UIItemRendererBase} */ set: function(value) { this.hovered_ = value; } }, 'selected': { + /** @this {org_apache_flex_html_supportClasses_UIItemRendererBase} */ get: function() { return this.selected_; }, + /** @this {org_apache_flex_html_supportClasses_UIItemRendererBase} */ set: function(value) { this.selected_ = value; } }, 'down': { + /** @this {org_apache_flex_html_supportClasses_UIItemRendererBase} */ get: function() { return this.down_; }, + /** @this {org_apache_flex_html_supportClasses_UIItemRendererBase} */ set: function(value) { this.down_ = value; }
