You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2015/01/13 19:11:23 UTC

[14/17] git commit: [flex-asjs] [refs/heads/develop] - implements IMXMLDocument

implements IMXMLDocument


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/f9d8ac75
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/f9d8ac75
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/f9d8ac75

Branch: refs/heads/develop
Commit: f9d8ac75519717c8a32db92a01318c8055cfff0f
Parents: 70d6ee2
Author: Alex Harui <ah...@apache.org>
Authored: Tue Jan 13 10:09:12 2015 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Tue Jan 13 10:09:12 2015 -0800

----------------------------------------------------------------------
 frameworks/js/FlexJS/src/org/apache/flex/core/ContainerBase.js | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/f9d8ac75/frameworks/js/FlexJS/src/org/apache/flex/core/ContainerBase.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/ContainerBase.js b/frameworks/js/FlexJS/src/org/apache/flex/core/ContainerBase.js
index 39494dc..ce915da 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/ContainerBase.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/ContainerBase.js
@@ -14,6 +14,7 @@
 
 goog.provide('org.apache.flex.core.ContainerBase');
 
+goog.require('org.apache.flex.core.IMXMLDocument');
 goog.require('org.apache.flex.core.UIBase');
 goog.require('org.apache.flex.core.ValuesManager');
 
@@ -86,7 +87,8 @@ org.apache.flex.core.ContainerBase.prototype.mxmlsd = null;
  */
 org.apache.flex.core.ContainerBase.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ContainerBase',
-                qName: 'org.apache.flex.core.ContainerBase'}] };
+                qName: 'org.apache.flex.core.ContainerBase'}] ,
+      interfaces: [org.apache.flex.core.IMXMLDocument]};
 
 
 /**