Updated Branches:
  refs/heads/develop 972684c00 -> 9c23eb3a1

move ContainerContentArea to supportClasses


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

Branch: refs/heads/develop
Commit: 1faceddc87289d0e9e0ecf3e478a36d0ebf4e36b
Parents: 972684c
Author: Alex Harui <aha...@apache.org>
Authored: Tue Feb 4 12:26:07 2014 -0800
Committer: Alex Harui <aha...@apache.org>
Committed: Wed Feb 5 21:59:29 2014 -0800

----------------------------------------------------------------------
 .../html/staticControls/beads/ContainerView.as  |  2 +-
 .../supportClasses/ContainerContentArea.as      | 48 ++++++++++++++++++++
 2 files changed, 49 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1faceddc/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/beads/ContainerView.as
----------------------------------------------------------------------
diff --git 
a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/beads/ContainerView.as
 
b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/beads/ContainerView.as
index c0eb0b7..ea37cf2 100644
--- 
a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/beads/ContainerView.as
+++ 
b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/beads/ContainerView.as
@@ -29,8 +29,8 @@ package org.apache.flex.html.staticControls.beads
        import org.apache.flex.core.UIBase;
        import org.apache.flex.core.ValuesManager;
        import org.apache.flex.html.staticControls.Container;
-       import org.apache.flex.html.staticControls.ContainerContentArea;
        import org.apache.flex.html.staticControls.supportClasses.Border;
+    import 
org.apache.flex.html.staticControls.supportClasses.ContainerContentArea;
        import org.apache.flex.html.staticControls.supportClasses.ScrollBar;
        
        public class ContainerView implements IBeadView, ILayoutParent

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1faceddc/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/supportClasses/ContainerContentArea.as
----------------------------------------------------------------------
diff --git 
a/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/supportClasses/ContainerContentArea.as
 
b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/supportClasses/ContainerContentArea.as
new file mode 100644
index 0000000..bbec779
--- /dev/null
+++ 
b/frameworks/as/projects/FlexJSUI/src/org/apache/flex/html/staticControls/supportClasses/ContainerContentArea.as
@@ -0,0 +1,48 @@
+////////////////////////////////////////////////////////////////////////////////
+//
+//  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 org.apache.flex.html.staticControls.supportClasses
+{
+       import org.apache.flex.core.UIBase;
+       
+    /**
+     *  The ContainerContentArea class implements the actualParent for
+     *  a Container.  Container's don't always parent their children directly 
as
+     *  that makes it harder to handle scrolling.
+     *  
+     *  @langversion 3.0
+     *  @playerversion Flash 10.2
+     *  @playerversion AIR 2.6
+     *  @productversion FlexJS 0.0
+     */
+       public class ContainerContentArea extends UIBase
+       {
+        /**
+         *  Constructor.
+         *  
+         *  @langversion 3.0
+         *  @playerversion Flash 10.2
+         *  @playerversion AIR 2.6
+         *  @productversion FlexJS 0.0
+         */
+               public function ContainerContentArea()
+               {
+                       super();
+               }
+       }
+}
\ No newline at end of file

Reply via email to