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 487e068549 fix issue after my commit
https://github.com/apache/royale-asjs/commit/9bf2aac59699b4b29517d12727253b92aa684511
487e068549 is described below
commit 487e06854973f8fcf8083afa2dd52811e5e5c519
Author: pashminakazi <[email protected]>
AuthorDate: Wed Jan 15 17:47:10 2025 +0500
fix issue after my commit
https://github.com/apache/royale-asjs/commit/9bf2aac59699b4b29517d12727253b92aa684511
---
.../royale/org/apache/royale/createjs/CheckBox.as | 33 ++++++++++++++++++++++
.../royale/org/apache/royale/createjs/Container.as | 32 +++++++++++++++++++++
.../royale/org/apache/royale/createjs/Label.as | 33 ++++++++++++++++++++++
.../org/apache/royale/createjs/TextButton.as | 33 ++++++++++++++++++++++
.../apache/royale/createjs/core/CreateJSBase.as | 33 ++++++++++++++++++++++
.../org/apache/royale/createjs/core/UIBase.as | 33 ++++++++++++++++++++++
.../royale/org/apache/royale/createjs/core/View.as | 32 +++++++++++++++++++++
.../org/apache/royale/createjs/graphics/Circle.as | 33 ++++++++++++++++++++++
.../royale/createjs/graphics/GraphicShape.as | 33 ++++++++++++++++++++++
.../org/apache/royale/createjs/graphics/Rect.as | 33 ++++++++++++++++++++++
.../org/apache/royale/utils/MockContentView.as | 33 ++++++++++++++++++++++
.../org/apache/royale/utils/MockLayoutChild.as | 33 ++++++++++++++++++++++
.../org/apache/royale/utils/MockLayoutHost.as | 33 ++++++++++++++++++++++
.../org/apache/royale/utils/MockLayoutParent.as | 33 ++++++++++++++++++++++
.../royale/org/apache/royale/utils/MockParent.as | 33 ++++++++++++++++++++++
15 files changed, 493 insertions(+)
diff --git
a/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/CheckBox.as
b/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/CheckBox.as
index f892fd72c0..6b8499f124 100644
---
a/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/CheckBox.as
+++
b/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/CheckBox.as
@@ -219,6 +219,39 @@ package org.apache.royale.createjs
{
selected = !selected;
}
+
+ //----------------------------------
+ // document
+ //----------------------------------
+
+ /**
+ * @private
+ * Storage for the enabled property.
+ */
+ private var _mxmlDocument:Object;
+
+ /**
+ * A reference to the document object associated with this
UITextField object.
+ * A document object is an Object at the top of the hierarchy
of a Flex application,
+ * MXML component, or AS component.
+ *
+ * @langversion 3.0
+ * @playerversion Flash 9
+ * @playerversion AIR 1.1
+ * @productversion Flex 3
+ */
+ override public function get mxmlDocument():Object
+ {
+ return _mxmlDocument;
+ }
+
+ /**
+ * @private
+ */
+ override public function set mxmlDocument(value:Object):void
+ {
+ _mxmlDocument = value;
+ }
}
diff --git
a/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/Container.as
b/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/Container.as
index 149301a56b..7885743ced 100644
---
a/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/Container.as
+++
b/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/Container.as
@@ -300,5 +300,37 @@ package org.apache.royale.createjs
{
_transitions = value;
}
+
+ //----------------------------------
+ // document
+ //----------------------------------
+
+ /**
+ * @private
+ * Storage for the enabled property.
+ */
+
+ /**
+ * A reference to the document object associated with this
UITextField object.
+ * A document object is an Object at the top of the hierarchy
of a Flex application,
+ * MXML component, or AS component.
+ *
+ * @langversion 3.0
+ * @playerversion Flash 9
+ * @playerversion AIR 1.1
+ * @productversion Flex 3
+ */
+ override public function get mxmlDocument():Object
+ {
+ return _mxmlDocument;
+ }
+
+ /**
+ * @private
+ */
+ override public function set mxmlDocument(value:Object):void
+ {
+ _mxmlDocument = value;
+ }
}
}
diff --git
a/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/Label.as
b/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/Label.as
index 337ab3a79f..8d698d87f0 100644
---
a/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/Label.as
+++
b/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/Label.as
@@ -162,6 +162,39 @@ package org.apache.royale.createjs
label["font"] = fontName;
label["color"] = color;
}
+
+ //----------------------------------
+ // document
+ //----------------------------------
+
+ /**
+ * @private
+ * Storage for the enabled property.
+ */
+ private var _mxmlDocument:Object;
+
+ /**
+ * A reference to the document object associated with this
UITextField object.
+ * A document object is an Object at the top of the hierarchy
of a Flex application,
+ * MXML component, or AS component.
+ *
+ * @langversion 3.0
+ * @playerversion Flash 9
+ * @playerversion AIR 1.1
+ * @productversion Flex 3
+ */
+ override public function get mxmlDocument():Object
+ {
+ return _mxmlDocument;
+ }
+
+ /**
+ * @private
+ */
+ override public function set mxmlDocument(value:Object):void
+ {
+ _mxmlDocument = value;
+ }
}
}
diff --git
a/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/TextButton.as
b/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/TextButton.as
index 5537eafa99..1e6f2262cc 100644
---
a/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/TextButton.as
+++
b/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/TextButton.as
@@ -228,5 +228,38 @@ package org.apache.royale.createjs
buttonLabel["font"] = fontName;
buttonLabel["color"] = color;
}
+
+ //----------------------------------
+ // document
+ //----------------------------------
+
+ /**
+ * @private
+ * Storage for the enabled property.
+ */
+ private var _mxmlDocument:Object;
+
+ /**
+ * A reference to the document object associated with this
UITextField object.
+ * A document object is an Object at the top of the hierarchy
of a Flex application,
+ * MXML component, or AS component.
+ *
+ * @langversion 3.0
+ * @playerversion Flash 9
+ * @playerversion AIR 1.1
+ * @productversion Flex 3
+ */
+ override public function get mxmlDocument():Object
+ {
+ return _mxmlDocument;
+ }
+
+ /**
+ * @private
+ */
+ override public function set mxmlDocument(value:Object):void
+ {
+ _mxmlDocument = value;
+ }
}
}
diff --git
a/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/core/CreateJSBase.as
b/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/core/CreateJSBase.as
index d495dc481c..7cc5fb9831 100644
---
a/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/core/CreateJSBase.as
+++
b/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/core/CreateJSBase.as
@@ -165,5 +165,38 @@ package org.apache.royale.createjs.core
{
// handle in subclass
}
+
+ //----------------------------------
+ // document
+ //----------------------------------
+
+ /**
+ * @private
+ * Storage for the enabled property.
+ */
+ private var _mxmlDocument:Object;
+
+ /**
+ * A reference to the document object associated with this
UITextField object.
+ * A document object is an Object at the top of the hierarchy
of a Flex application,
+ * MXML component, or AS component.
+ *
+ * @langversion 3.0
+ * @playerversion Flash 9
+ * @playerversion AIR 1.1
+ * @productversion Flex 3
+ */
+ override public function get mxmlDocument():Object
+ {
+ return _mxmlDocument;
+ }
+
+ /**
+ * @private
+ */
+ override public function set mxmlDocument(value:Object):void
+ {
+ _mxmlDocument = value;
+ }
}
}
diff --git
a/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/core/UIBase.as
b/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/core/UIBase.as
index 6b7b2c1295..0065d6b993 100644
---
a/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/core/UIBase.as
+++
b/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/core/UIBase.as
@@ -711,6 +711,39 @@ package org.apache.royale.createjs.core
}
return CSSUtils.attributeFromColor(value);
}
+
+ //----------------------------------
+ // document
+ //----------------------------------
+
+ /**
+ * @private
+ * Storage for the enabled property.
+ */
+ private var _mxmlDocument:Object;
+
+ /**
+ * A reference to the document object associated with this
UITextField object.
+ * A document object is an Object at the top of the hierarchy
of a Flex application,
+ * MXML component, or AS component.
+ *
+ * @langversion 3.0
+ * @playerversion Flash 9
+ * @playerversion AIR 1.1
+ * @productversion Flex 3
+ */
+ public function get mxmlDocument():Object
+ {
+ return _mxmlDocument;
+ }
+
+ /**
+ * @private
+ */
+ public function set mxmlDocument(value:Object):void
+ {
+ _mxmlDocument = value;
+ }
}
}
diff --git
a/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/core/View.as
b/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/core/View.as
index 84acfbd686..4d338c4df5 100644
---
a/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/core/View.as
+++
b/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/core/View.as
@@ -349,5 +349,37 @@ package org.apache.royale.createjs.core
{
return this;
}
+
+ //----------------------------------
+ // document
+ //----------------------------------
+
+ /**
+ * @private
+ * Storage for the enabled property.
+ */
+
+ /**
+ * A reference to the document object associated with this
UITextField object.
+ * A document object is an Object at the top of the hierarchy
of a Flex application,
+ * MXML component, or AS component.
+ *
+ * @langversion 3.0
+ * @playerversion Flash 9
+ * @playerversion AIR 1.1
+ * @productversion Flex 3
+ */
+ override public function get mxmlDocument():Object
+ {
+ return _mxmlDocument;
+ }
+
+ /**
+ * @private
+ */
+ override public function set mxmlDocument(value:Object):void
+ {
+ _mxmlDocument = value;
+ }
}
}
diff --git
a/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/graphics/Circle.as
b/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/graphics/Circle.as
index b801fe64fe..dc7e72033d 100644
---
a/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/graphics/Circle.as
+++
b/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/graphics/Circle.as
@@ -158,6 +158,39 @@ package org.apache.royale.createjs.graphics
if (stage)
stage.update();
}
+
+ //----------------------------------
+ // document
+ //----------------------------------
+
+ /**
+ * @private
+ * Storage for the enabled property.
+ */
+ private var _mxmlDocument:Object;
+
+ /**
+ * A reference to the document object associated with this
UITextField object.
+ * A document object is an Object at the top of the hierarchy
of a Flex application,
+ * MXML component, or AS component.
+ *
+ * @langversion 3.0
+ * @playerversion Flash 9
+ * @playerversion AIR 1.1
+ * @productversion Flex 3
+ */
+ override public function get mxmlDocument():Object
+ {
+ return _mxmlDocument;
+ }
+
+ /**
+ * @private
+ */
+ override public function set mxmlDocument(value:Object):void
+ {
+ _mxmlDocument = value;
+ }
}
}
diff --git
a/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/graphics/GraphicShape.as
b/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/graphics/GraphicShape.as
index 04163d4123..4630b3a47e 100644
---
a/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/graphics/GraphicShape.as
+++
b/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/graphics/GraphicShape.as
@@ -67,6 +67,39 @@ package org.apache.royale.createjs.graphics
element = base as WrappedHTMLElement;
return element;
}
+
+ //----------------------------------
+ // document
+ //----------------------------------
+
+ /**
+ * @private
+ * Storage for the enabled property.
+ */
+ private var _mxmlDocument:Object;
+
+ /**
+ * A reference to the document object associated with this
UITextField object.
+ * A document object is an Object at the top of the hierarchy
of a Flex application,
+ * MXML component, or AS component.
+ *
+ * @langversion 3.0
+ * @playerversion Flash 9
+ * @playerversion AIR 1.1
+ * @productversion Flex 3
+ */
+ override public function get mxmlDocument():Object
+ {
+ return _mxmlDocument;
+ }
+
+ /**
+ * @private
+ */
+ override public function set mxmlDocument(value:Object):void
+ {
+ _mxmlDocument = value;
+ }
}
}
diff --git
a/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/graphics/Rect.as
b/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/graphics/Rect.as
index 9cd1edfaa6..677be605af 100644
---
a/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/graphics/Rect.as
+++
b/frameworks/projects/CreateJS/src/main/royale/org/apache/royale/createjs/graphics/Rect.as
@@ -88,6 +88,39 @@ package org.apache.royale.createjs.graphics
if (stage)
stage.update();
}
+
+ //----------------------------------
+ // document
+ //----------------------------------
+
+ /**
+ * @private
+ * Storage for the enabled property.
+ */
+ private var _mxmlDocument:Object;
+
+ /**
+ * A reference to the document object associated with this
UITextField object.
+ * A document object is an Object at the top of the hierarchy
of a Flex application,
+ * MXML component, or AS component.
+ *
+ * @langversion 3.0
+ * @playerversion Flash 9
+ * @playerversion AIR 1.1
+ * @productversion Flex 3
+ */
+ override public function get mxmlDocument():Object
+ {
+ return _mxmlDocument;
+ }
+
+ /**
+ * @private
+ */
+ override public function set mxmlDocument(value:Object):void
+ {
+ _mxmlDocument = value;
+ }
}
}
diff --git
a/frameworks/projects/Effects/src/main/royale/org/apache/royale/utils/MockContentView.as
b/frameworks/projects/Effects/src/main/royale/org/apache/royale/utils/MockContentView.as
index 490c6b2844..27cfaf0607 100644
---
a/frameworks/projects/Effects/src/main/royale/org/apache/royale/utils/MockContentView.as
+++
b/frameworks/projects/Effects/src/main/royale/org/apache/royale/utils/MockContentView.as
@@ -274,6 +274,39 @@ package org.apache.royale.utils
{
// void implementation of IUIBase.positioner
}
+
+ //----------------------------------
+ // document
+ //----------------------------------
+
+ /**
+ * @private
+ * Storage for the enabled property.
+ */
+ private var _mxmlDocument:Object;
+
+ /**
+ * A reference to the document object associated with this
UITextField object.
+ * A document object is an Object at the top of the hierarchy
of a Flex application,
+ * MXML component, or AS component.
+ *
+ * @langversion 3.0
+ * @playerversion Flash 9
+ * @playerversion AIR 1.1
+ * @productversion Flex 3
+ */
+ public function get mxmlDocument():Object
+ {
+ return _mxmlDocument;
+ }
+
+ /**
+ * @private
+ */
+ public function set mxmlDocument(value:Object):void
+ {
+ _mxmlDocument = value;
+ }
}
}
diff --git
a/frameworks/projects/Effects/src/main/royale/org/apache/royale/utils/MockLayoutChild.as
b/frameworks/projects/Effects/src/main/royale/org/apache/royale/utils/MockLayoutChild.as
index 24027636d3..6aee2c99e5 100644
---
a/frameworks/projects/Effects/src/main/royale/org/apache/royale/utils/MockLayoutChild.as
+++
b/frameworks/projects/Effects/src/main/royale/org/apache/royale/utils/MockLayoutChild.as
@@ -341,5 +341,38 @@ package org.apache.royale.utils
{
// void implementation of IUIBase.positioner
}
+
+ //----------------------------------
+ // document
+ //----------------------------------
+
+ /**
+ * @private
+ * Storage for the enabled property.
+ */
+ private var _mxmlDocument:Object;
+
+ /**
+ * A reference to the document object associated with this
UITextField object.
+ * A document object is an Object at the top of the hierarchy
of a Flex application,
+ * MXML component, or AS component.
+ *
+ * @langversion 3.0
+ * @playerversion Flash 9
+ * @playerversion AIR 1.1
+ * @productversion Flex 3
+ */
+ public function get mxmlDocument():Object
+ {
+ return _mxmlDocument;
+ }
+
+ /**
+ * @private
+ */
+ public function set mxmlDocument(value:Object):void
+ {
+ _mxmlDocument = value;
+ }
}
}
diff --git
a/frameworks/projects/Effects/src/main/royale/org/apache/royale/utils/MockLayoutHost.as
b/frameworks/projects/Effects/src/main/royale/org/apache/royale/utils/MockLayoutHost.as
index 2dbf2280ae..172e1a1ea6 100644
---
a/frameworks/projects/Effects/src/main/royale/org/apache/royale/utils/MockLayoutHost.as
+++
b/frameworks/projects/Effects/src/main/royale/org/apache/royale/utils/MockLayoutHost.as
@@ -43,5 +43,38 @@ package org.apache.royale.utils
{
}
+
+ //----------------------------------
+ // document
+ //----------------------------------
+
+ /**
+ * @private
+ * Storage for the enabled property.
+ */
+ private var _mxmlDocument:Object;
+
+ /**
+ * A reference to the document object associated with this
UITextField object.
+ * A document object is an Object at the top of the hierarchy
of a Flex application,
+ * MXML component, or AS component.
+ *
+ * @langversion 3.0
+ * @playerversion Flash 9
+ * @playerversion AIR 1.1
+ * @productversion Flex 3
+ */
+ public function get mxmlDocument():Object
+ {
+ return _mxmlDocument;
+ }
+
+ /**
+ * @private
+ */
+ public function set mxmlDocument(value:Object):void
+ {
+ _mxmlDocument = value;
+ }
}
}
diff --git
a/frameworks/projects/Effects/src/main/royale/org/apache/royale/utils/MockLayoutParent.as
b/frameworks/projects/Effects/src/main/royale/org/apache/royale/utils/MockLayoutParent.as
index 149190f2e6..b4a741efcd 100644
---
a/frameworks/projects/Effects/src/main/royale/org/apache/royale/utils/MockLayoutParent.as
+++
b/frameworks/projects/Effects/src/main/royale/org/apache/royale/utils/MockLayoutParent.as
@@ -361,6 +361,39 @@ package org.apache.royale.utils
{
return null;
}
+
+ //----------------------------------
+ // document
+ //----------------------------------
+
+ /**
+ * @private
+ * Storage for the enabled property.
+ */
+ private var _mxmlDocument:Object;
+
+ /**
+ * A reference to the document object associated with this
UITextField object.
+ * A document object is an Object at the top of the hierarchy
of a Flex application,
+ * MXML component, or AS component.
+ *
+ * @langversion 3.0
+ * @playerversion Flash 9
+ * @playerversion AIR 1.1
+ * @productversion Flex 3
+ */
+ public function get mxmlDocument():Object
+ {
+ return _mxmlDocument;
+ }
+
+ /**
+ * @private
+ */
+ public function set mxmlDocument(value:Object):void
+ {
+ _mxmlDocument = value;
+ }
}
diff --git
a/frameworks/projects/Effects/src/main/royale/org/apache/royale/utils/MockParent.as
b/frameworks/projects/Effects/src/main/royale/org/apache/royale/utils/MockParent.as
index b99fe50065..1d57b95ea5 100644
---
a/frameworks/projects/Effects/src/main/royale/org/apache/royale/utils/MockParent.as
+++
b/frameworks/projects/Effects/src/main/royale/org/apache/royale/utils/MockParent.as
@@ -65,5 +65,38 @@ package org.apache.royale.utils
}
+ //----------------------------------
+ // document
+ //----------------------------------
+
+ /**
+ * @private
+ * Storage for the enabled property.
+ */
+ private var _mxmlDocument:Object;
+
+ /**
+ * A reference to the document object associated with this
UITextField object.
+ * A document object is an Object at the top of the hierarchy
of a Flex application,
+ * MXML component, or AS component.
+ *
+ * @langversion 3.0
+ * @playerversion Flash 9
+ * @playerversion AIR 1.1
+ * @productversion Flex 3
+ */
+ public function get mxmlDocument():Object
+ {
+ return _mxmlDocument;
+ }
+
+ /**
+ * @private
+ */
+ public function set mxmlDocument(value:Object):void
+ {
+ _mxmlDocument = value;
+ }
+
}
}