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 2017/05/01 03:48:44 UTC

[45/50] [abbrv] git commit: [flex-asjs] [refs/heads/develop] - these are needed for 8377006

these are needed for 8377006


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

Branch: refs/heads/develop
Commit: eaba961619d93e045bb561da5419afe7792b93b5
Parents: e981c3d
Author: Alex Harui <ah...@apache.org>
Authored: Fri Apr 28 00:01:35 2017 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Fri Apr 28 00:01:35 2017 -0700

----------------------------------------------------------------------
 .../src/main/flex/org/apache/flex/core/ILayoutChild.as   |  2 ++
 .../main/flex/org/apache/flex/utils/MockLayoutChild.as   | 11 ++++++++++-
 .../main/flex/org/apache/flex/utils/MockLayoutParent.as  |  8 ++++++++
 3 files changed, 20 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/eaba9616/frameworks/projects/Core/src/main/flex/org/apache/flex/core/ILayoutChild.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/Core/src/main/flex/org/apache/flex/core/ILayoutChild.as b/frameworks/projects/Core/src/main/flex/org/apache/flex/core/ILayoutChild.as
index da0918f..97e4561 100755
--- a/frameworks/projects/Core/src/main/flex/org/apache/flex/core/ILayoutChild.as
+++ b/frameworks/projects/Core/src/main/flex/org/apache/flex/core/ILayoutChild.as
@@ -68,6 +68,7 @@ package org.apache.flex.core
          *  @productversion FlexJS 0.0
          */
         function get explicitWidth():Number;
+        function set explicitWidth(value:Number):void;
         
         /**
          *  The height of this component 
@@ -79,6 +80,7 @@ package org.apache.flex.core
          *  @productversion FlexJS 0.0
          */
         function get explicitHeight():Number;
+        function set explicitHeight(value:Number):void;
         
         /**
          * Sets the height of the component without

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/eaba9616/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockLayoutChild.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockLayoutChild.as b/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockLayoutChild.as
index a8a719d..0dc4f98 100644
--- a/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockLayoutChild.as
+++ b/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockLayoutChild.as
@@ -74,6 +74,11 @@ package org.apache.flex.utils
 			return _explicitHeight;
 		}
 		
+		public function set explicitHeight(value:Number):void
+		{
+			_explicitHeight = value;
+		}
+		
 		public function isHeightSizedToContent():Boolean
 		{
 			return _isHeightSizedToContent;
@@ -129,7 +134,11 @@ package org.apache.flex.utils
 		{
 			return _explicitWidth;
 		}
-		
+		public function set explicitWidth(value:Number):void
+		{
+			_explicitWidth = value;
+		}
+
 		public function isWidthSizedToContent():Boolean
 		{
 			return _isWidthSizedToContent;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/eaba9616/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockLayoutParent.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockLayoutParent.as b/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockLayoutParent.as
index 1da2b5a..a07a1d4 100644
--- a/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockLayoutParent.as
+++ b/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockLayoutParent.as
@@ -182,12 +182,20 @@ package org.apache.flex.utils
 			// TODO Auto Generated method stub
 			return 0;
 		}
+		public function set explicitHeight(value:Number):void
+		{
+			// TODO Auto Generated method stub
+		}
 
 		public function get explicitWidth():Number
 		{
 			// TODO Auto Generated method stub
 			return 0;
 		}
+		public function set explicitWidth(value:Number):void
+		{
+			// TODO Auto Generated method stub
+		}
 
 		public function isHeightSizedToContent():Boolean
 		{