This is an automated email from the ASF dual-hosted git repository.
harbs 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 91a5b57 SolidColor and SolidColorStroke Added (#163)
91a5b57 is described below
commit 91a5b57f02c3764678fccbda816554717e157790
Author: Alina <[email protected]>
AuthorDate: Wed Apr 11 14:28:46 2018 +0500
SolidColor and SolidColorStroke Added (#163)
* SolidColor Added
SolidColor Added
* Update MXRoyaleClasses.as
Update MXRoyaleClasses.as
* Update MXRoyaleClasses.as
Update MXRoyaleClasses.as
* SolidColorStroke.as Added
SolidColorStroke.as Added
* Update SolidColorStroke
* Update SolidColorStroke
---
.../MXRoyale/src/main/royale/MXRoyaleClasses.as | 2 ++
.../src/main/royale/mx/graphics/SolidColor.as | 28 ++++++++++++++++++++++
.../main/royale/mx/graphics/SolidColorStroke.as | 27 +++++++++++++++++++++
3 files changed, 57 insertions(+)
diff --git a/frameworks/projects/MXRoyale/src/main/royale/MXRoyaleClasses.as
b/frameworks/projects/MXRoyale/src/main/royale/MXRoyaleClasses.as
index 702623e..37d06cf 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/MXRoyaleClasses.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/MXRoyaleClasses.as
@@ -37,6 +37,8 @@ internal class MXRoyaleClasses
import mx.containers.ControlBar; ControlBar;
import mx.controls.ToolTip; ToolTip;
import mx.controls.beads.ToolTipBead; ToolTipBead;
+ import mx.graphics.SolidColor; SolidColor;
+ import mx.graphics.SolidColorStroke; SolidColorStroke;
import mx.graphics.IStroke; IStroke;
import mx.graphics.IFill; IFill;
import mx.graphics.GradientEntry; GradientEntry;
diff --git
a/frameworks/projects/MXRoyale/src/main/royale/mx/graphics/SolidColor.as
b/frameworks/projects/MXRoyale/src/main/royale/mx/graphics/SolidColor.as
new file mode 100644
index 0000000..d6a1e0e
--- /dev/null
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/graphics/SolidColor.as
@@ -0,0 +1,28 @@
+/*
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package mx.graphics
+{
+ import mx.graphics.IFill;
+ import org.apache.royale.graphics.SolidColor;
+ public class SolidColor extends org.apache.royale.graphics.SolidColor
+ {
+
+
+ }
+}
diff --git
a/frameworks/projects/MXRoyale/src/main/royale/mx/graphics/SolidColorStroke.as
b/frameworks/projects/MXRoyale/src/main/royale/mx/graphics/SolidColorStroke.as
new file mode 100644
index 0000000..a5b3a43
--- /dev/null
+++
b/frameworks/projects/MXRoyale/src/main/royale/mx/graphics/SolidColorStroke.as
@@ -0,0 +1,27 @@
+/*
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package mx.graphics
+{
+
+ import org.apache.royale.graphics.SolidColorStroke;
+ public class SolidColorStroke extends
org.apache.royale.graphics.SolidColorStroke
+ {
+
+ }
+}
--
To stop receiving notification emails like this one, please contact
[email protected].