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 2013/11/25 07:59:26 UTC

[16/18] git commit: [flex-asjs] [refs/heads/develop] - also need mx_internal to satisfy FB assumptions

also need mx_internal to satisfy FB assumptions


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

Branch: refs/heads/develop
Commit: fc9e6f9614735f51f5633b07cc691a681f577a0f
Parents: f2c456c
Author: Alex Harui <ah...@apache.org>
Authored: Sat Nov 23 23:00:41 2013 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Sat Nov 23 23:00:41 2013 -0800

----------------------------------------------------------------------
 .../projects/MXMLCClasses/src/MXMLCClasses.as   |  1 +
 .../MXMLCClasses/src/mx/core/mx_internal.as     | 37 ++++++++++++++++++++
 2 files changed, 38 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/fc9e6f96/frameworks/as/projects/MXMLCClasses/src/MXMLCClasses.as
----------------------------------------------------------------------
diff --git a/frameworks/as/projects/MXMLCClasses/src/MXMLCClasses.as b/frameworks/as/projects/MXMLCClasses/src/MXMLCClasses.as
index bbbb6fb..7ac2c71 100644
--- a/frameworks/as/projects/MXMLCClasses/src/MXMLCClasses.as
+++ b/frameworks/as/projects/MXMLCClasses/src/MXMLCClasses.as
@@ -48,6 +48,7 @@ internal class MXMLCClasses
     import mx.core.IFlexModuleFactory; IFlexModuleFactory;
     import mx.core.IPropertyChangeNotifier; IPropertyChangeNotifier;
     import mx.core.IStateClient2; IStateClient2;
+    import mx.core.mx_internal; use namespace mx_internal;
     import mx.events.PropertyChangeEvent; PropertyChangeEvent;
     import mx.filters.IBitmapFilter; IBitmapFilter;
     import mx.styles.CSSCondition; CSSCondition;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/fc9e6f96/frameworks/as/projects/MXMLCClasses/src/mx/core/mx_internal.as
----------------------------------------------------------------------
diff --git a/frameworks/as/projects/MXMLCClasses/src/mx/core/mx_internal.as b/frameworks/as/projects/MXMLCClasses/src/mx/core/mx_internal.as
new file mode 100644
index 0000000..e70b0a5
--- /dev/null
+++ b/frameworks/as/projects/MXMLCClasses/src/mx/core/mx_internal.as
@@ -0,0 +1,37 @@
+////////////////////////////////////////////////////////////////////////////////
+//
+//  Licensed to the Apache Software Foundation (ASF) under one or more
+//  contributor license agreements.  See the NOTICE file distributed with
+//  this work for additional information regarding copyright ownership.
+//  The ASF licenses this file to You under the Apache License, Version 2.0
+//  (the "License"); you may not use this file except in compliance with
+//  the License.  You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+//  Unless required by applicable law or agreed to in writing, software
+//  distributed under the License is distributed on an "AS IS" BASIS,
+//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+//  See the License for the specific language governing permissions and
+//  limitations under the License.
+//
+////////////////////////////////////////////////////////////////////////////////
+
+package mx.core
+{
+
+/**
+ *  This namespace is used for undocumented APIs -- usually implementation
+ *  details -- which can't be private because they need to visible
+ *  to other classes.
+ *  APIs in this namespace are completely unsupported and are likely to
+ *  change in future versions of Flex.
+ *  
+ *  @langversion 3.0
+ *  @playerversion Flash 9
+ *  @playerversion AIR 1.1
+ *  @productversion Flex 3
+ */
+public namespace mx_internal =
+	"http://www.adobe.com/2006/flex/mx/internal";
+}