You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ah...@apache.org on 2018/11/30 03:13:36 UTC

[royale-asjs] branch develop updated (5abdc60 -> 90a9155)

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

aharui pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git.


    from 5abdc60  new icon
     new 3919e0d  All Factories should extend one base factory
     new 1914008  DataRenderer goes back to extending Group
     new 90a9155  these two use Animate which hasn't been emulated yet

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 examples/mxroyale/tourdeflexmodules/build.xml       |  2 --
 .../MXRoyale/src/main/royale/mx/core/IFactory.as    | 21 +++------------------
 .../main/royale/spark/components/DataRenderer.as    |  5 ++---
 3 files changed, 5 insertions(+), 23 deletions(-)


[royale-asjs] 02/03: DataRenderer goes back to extending Group

Posted by ah...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 1914008e9fff0fa6952e617914775e03f8f468d7
Author: Alex Harui <ah...@apache.org>
AuthorDate: Thu Nov 29 18:25:45 2018 -0800

    DataRenderer goes back to extending Group
---
 .../SparkRoyale/src/main/royale/spark/components/DataRenderer.as     | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/frameworks/projects/SparkRoyale/src/main/royale/spark/components/DataRenderer.as b/frameworks/projects/SparkRoyale/src/main/royale/spark/components/DataRenderer.as
index f416383..df28c86 100644
--- a/frameworks/projects/SparkRoyale/src/main/royale/spark/components/DataRenderer.as
+++ b/frameworks/projects/SparkRoyale/src/main/royale/spark/components/DataRenderer.as
@@ -22,7 +22,6 @@ package spark.components {
 import mx.core.IDataRenderer;
 import mx.events.FlexEvent;
 //import org.apache.royale.events.EventDispatcher;
-import mx.core.UIComponent;
 /**
  *  Dispatched when the <code>data</code> property changes.
  *  
@@ -59,9 +58,9 @@ import mx.core.UIComponent;
  *  @playerversion AIR 1.5
  *  @productversion Royale 0.9.4
  */
-public class DataRenderer extends UIComponent implements IDataRenderer //extends EventDispatcher
+public class DataRenderer extends Group implements IDataRenderer
 
-{ // replacing extends Group with extends EventDispatcher for now
+{
 
    // include "../core/Version.as";
     


[royale-asjs] 03/03: these two use Animate which hasn't been emulated yet

Posted by ah...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 90a9155ef895a8f3488f9ef528fecaf835ca5a43
Author: Alex Harui <ah...@apache.org>
AuthorDate: Thu Nov 29 19:13:18 2018 -0800

    these two use Animate which hasn't been emulated yet
---
 examples/mxroyale/tourdeflexmodules/build.xml | 2 --
 1 file changed, 2 deletions(-)

diff --git a/examples/mxroyale/tourdeflexmodules/build.xml b/examples/mxroyale/tourdeflexmodules/build.xml
index e1cf9de..cf6ed23 100644
--- a/examples/mxroyale/tourdeflexmodules/build.xml
+++ b/examples/mxroyale/tourdeflexmodules/build.xml
@@ -359,12 +359,10 @@
 		<compile-mxml folder="/spark/layouts/" example="CustomLayoutFlickrWheelExample"/>
 		<compile-mxml folder="/spark/layouts/" example="CustomLayoutFlowExample"/>
 		<compile-mxml folder="/spark/layouts/" example="CustomLayoutHBaselineExample"/>
-         -->
 		
 		<compile-mxml folder="/spark/itemRenderers/" example="ItemRenderer1Example"/>
 		<compile-mxml folder="/spark/itemRenderers/" example="ItemRenderer2Example"/>
 		
-        <!--
 		<compile-mxml folder="/spark/fxg/" example="BitmapImageExample"/>
 		<compile-mxml folder="/spark/fxg/" example="EclipseExample"/>
 		<compile-mxml folder="/spark/fxg/" example="LineExample"/>


[royale-asjs] 01/03: All Factories should extend one base factory

Posted by ah...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 3919e0d40b751c932c8d6452d3c7ececaee85de9
Author: Alex Harui <ah...@apache.org>
AuthorDate: Thu Nov 29 18:24:51 2018 -0800

    All Factories should extend one base factory
---
 .../MXRoyale/src/main/royale/mx/core/IFactory.as    | 21 +++------------------
 1 file changed, 3 insertions(+), 18 deletions(-)

diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/core/IFactory.as b/frameworks/projects/MXRoyale/src/main/royale/mx/core/IFactory.as
index 98d8fef..2525caa 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/core/IFactory.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/core/IFactory.as
@@ -20,6 +20,8 @@
 package mx.core
 {
 
+import org.apache.royale.core.IFactory;
+
 /**
  *  The IFactory interface defines the interface that factory classes
  *  such as ClassFactory must implement.
@@ -38,26 +40,9 @@ package mx.core
  *  @playerversion AIR 1.1
  *  @productversion Royale 0.9.3
  */
-public interface IFactory
+public interface IFactory extends org.apache.royale.core.IFactory
 {
-	//--------------------------------------------------------------------------
-	//
-	//  Methods
-	//
-	//--------------------------------------------------------------------------
 
-	/**
-	 *  Creates an instance of some class (determined by the class that
-	 *  implements IFactory).
-	 *
-	 *  @return The newly created instance.
-	 *  
-	 *  @langversion 3.0
-	 *  @playerversion Flash 9
-	 *  @playerversion AIR 1.1
-	 *  @productversion Royale 0.9.3
-	 */
-	function newInstance():*;
 }
 
 }