AS version implements IParent
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/c163ef15 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/c163ef15 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/c163ef15 Branch: refs/heads/develop Commit: c163ef1566d8504e87255349bc071453d6594aea Parents: 8c3d8e9 Author: Alex Harui <[email protected]> Authored: Wed Dec 17 14:41:12 2014 -0800 Committer: Alex Harui <[email protected]> Committed: Wed Dec 17 14:41:12 2014 -0800 ---------------------------------------------------------------------- frameworks/js/FlexJS/src/org/apache/flex/core/Application.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/c163ef15/frameworks/js/FlexJS/src/org/apache/flex/core/Application.js ---------------------------------------------------------------------- diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/Application.js b/frameworks/js/FlexJS/src/org/apache/flex/core/Application.js index b6b2dae..b6c7ee2 100644 --- a/frameworks/js/FlexJS/src/org/apache/flex/core/Application.js +++ b/frameworks/js/FlexJS/src/org/apache/flex/core/Application.js @@ -15,6 +15,7 @@ goog.provide('org.apache.flex.core.Application'); goog.require('org.apache.flex.core.HTMLElementWrapper'); +goog.require('org.apache.flex.core.IParent'); goog.require('org.apache.flex.core.IValuesImpl'); goog.require('org.apache.flex.core.ValuesManager'); goog.require('org.apache.flex.utils.MXMLDataInterpreter'); @@ -39,7 +40,8 @@ goog.inherits(org.apache.flex.core.Application, */ org.apache.flex.core.Application.prototype.FLEXJS_CLASS_INFO = { names: [{ name: 'Application', - qName: 'org.apache.flex.core.Application' }] }; + qName: 'org.apache.flex.core.Application' }], + interfaces: [org.apache.flex.core.IParent] }; /**
