This is an automated email from the ASF dual-hosted git repository.
pushminakazi pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
The following commit(s) were added to refs/heads/develop by this push:
new 062ecb6 Update IUIComponent added document
062ecb6 is described below
commit 062ecb648c888ad4c1ea76ab9079696c78267f78
Author: pashminakazi <[email protected]>
AuthorDate: Wed Dec 16 18:30:56 2020 +0500
Update IUIComponent added document
---
.../src/main/royale/mx/core/IUIComponent.as | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git
a/frameworks/projects/MXRoyale/src/main/royale/mx/core/IUIComponent.as
b/frameworks/projects/MXRoyale/src/main/royale/mx/core/IUIComponent.as
index 497dbe2..e236076 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/core/IUIComponent.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/core/IUIComponent.as
@@ -487,6 +487,27 @@ public interface IUIComponent extends IFlexDisplayObject,
IChild, IUIBase, IChil
* @productversion Flex 3
*/
function owns(displayObject:IUIBase):Boolean;
+
+ //----------------------------------
+ // document
+ //----------------------------------
+
+ /**
+ * A reference to the document object associated with this component.
+ * A document object is an Object at the top of the hierarchy
+ * of a Flex application, MXML component, or ActionScript component.
+ *
+ * @langversion 3.0
+ * @playerversion Flash 9
+ * @playerversion AIR 1.1
+ * @productversion Flex 3
+ */
+ function get document():Object
+
+ /**
+ * @private
+ */
+ function set document(value:Object):void
}
}