This is an automated email from the ASF dual-hosted git repository. yishayw pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
commit 47b15c5a68079d5cb502e3fe45f19e70c5b384d3 Author: Yishay Weiss <[email protected]> AuthorDate: Wed Sep 30 19:18:52 2020 +0100 More stubs --- .../SparkRoyale/src/main/royale/spark/primitives/Ellipse.as | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frameworks/projects/SparkRoyale/src/main/royale/spark/primitives/Ellipse.as b/frameworks/projects/SparkRoyale/src/main/royale/spark/primitives/Ellipse.as index 64b8f38..e84dc1b 100644 --- a/frameworks/projects/SparkRoyale/src/main/royale/spark/primitives/Ellipse.as +++ b/frameworks/projects/SparkRoyale/src/main/royale/spark/primitives/Ellipse.as @@ -21,6 +21,8 @@ package spark.primitives { import mx.core.UIComponent; + import mx.graphics.IFill; + import mx.graphics.IStroke; /** * The Ellipse class is a filled graphic element that draws an ellipse. @@ -58,5 +60,9 @@ package spark.primitives { super(); } + + public function set stroke(value:IStroke):void {} + public function set fill(value:IFill):void {} } + }
