You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by al...@apache.org on 2018/08/02 08:56:39 UTC

[royale-asjs] branch feature/MXRoyale updated: Update UIComponent.as

This is an automated email from the ASF dual-hosted git repository.

alinakazi pushed a commit to branch feature/MXRoyale
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/feature/MXRoyale by this push:
     new 11823b7  Update UIComponent.as
11823b7 is described below

commit 11823b7a20c71efddef5d69e3f7a220932a0e6f7
Author: alinakazi <AL...@GMAIL.COM>
AuthorDate: Thu Aug 2 13:56:37 2018 +0500

    Update UIComponent.as
---
 .../src/main/royale/mx/core/UIComponent.as         | 28 ++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as b/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as
index 66e2c06..238e98d 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/core/UIComponent.as
@@ -547,6 +547,34 @@ public class UIComponent extends UIBase
 			return _graphics;
 		} 
 	}
+	
+    	COMPILE::JS{
+	private var _mask:UIComponent;
+		 public function set mask(value:UIComponent):void
+		{
+			
+		}
+		
+		 public function get mask():UIComponent
+		{
+			return _mask
+		}
+	 
+	 }
+
+	COMPILE::JS{
+	 private var _rotation:Number;
+	 
+	 	public function get rotation():Number
+	 	{
+	    		return _rotation;
+	 	}
+     		public function set rotation(value:Number):void
+		{
+	   		_rotation = value;
+		}
+	}
+	
     //----------------------------------
     //  name
     //----------------------------------