Return-Path: X-Original-To: apmail-flex-commits-archive@www.apache.org Delivered-To: apmail-flex-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 35A0017457 for ; Tue, 13 Jan 2015 18:11:11 +0000 (UTC) Received: (qmail 57510 invoked by uid 500); 13 Jan 2015 18:11:10 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 57449 invoked by uid 500); 13 Jan 2015 18:11:10 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 57102 invoked by uid 99); 13 Jan 2015 18:11:10 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jan 2015 18:11:10 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 52FCF9AFAAC; Tue, 13 Jan 2015 18:11:10 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: aharui@apache.org To: commits@flex.apache.org Date: Tue, 13 Jan 2015 18:11:23 -0000 Message-Id: <381bf4108ba745f1a1a966df225d969e@git.apache.org> In-Reply-To: <6b0b8f091b4e4e2e8134a5b4831b8489@git.apache.org> References: <6b0b8f091b4e4e2e8134a5b4831b8489@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [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 Authored: Tue Jan 13 10:09:12 2015 -0800 Committer: Alex Harui 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]}; /**