ILayoutChild extends IChild
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/05117d5f Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/05117d5f Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/05117d5f Branch: refs/heads/develop Commit: 05117d5f3dea922433fa88641d35e90499c47f06 Parents: 135db98 Author: Alex Harui <aha...@apache.org> Authored: Tue Jan 13 10:09:59 2015 -0800 Committer: Alex Harui <aha...@apache.org> Committed: Tue Jan 13 10:09:59 2015 -0800 ---------------------------------------------------------------------- frameworks/js/FlexJS/src/org/apache/flex/core/ILayoutChild.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/05117d5f/frameworks/js/FlexJS/src/org/apache/flex/core/ILayoutChild.js ---------------------------------------------------------------------- diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/ILayoutChild.js b/frameworks/js/FlexJS/src/org/apache/flex/core/ILayoutChild.js index 4ba8c17..9ab3f1d 100644 --- a/frameworks/js/FlexJS/src/org/apache/flex/core/ILayoutChild.js +++ b/frameworks/js/FlexJS/src/org/apache/flex/core/ILayoutChild.js @@ -19,6 +19,8 @@ goog.provide('org.apache.flex.core.ILayoutChild'); +goog.require('org.apache.flex.core.IChild'); + /** @@ -35,5 +37,6 @@ org.apache.flex.core.ILayoutChild = function() { */ org.apache.flex.core.ILayoutChild.prototype.FLEXJS_CLASS_INFO = { names: [{ name: 'ILayoutChild', - qName: 'org.apache.flex.core.ILayoutChild' }] }; + qName: 'org.apache.flex.core.ILayoutChild' }], + interfaces: [org.apache.flex.core.IChild] };