You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2018/05/03 17:02:58 UTC

[royale-asjs] branch develop updated: Move UIBase from Basic to Core, so we can remove Basic dependency when using other UI sets like MDL or Jewel. Still remains more work to do to be able to do this separation.

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

carlosrovira 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 14b2626  Move UIBase from Basic to Core, so we can remove Basic dependency when using other UI sets like MDL or Jewel. Still remains more work to do to be able to do this separation.
14b2626 is described below

commit 14b26260bdc76ec884ab3862e8c4cc8bbd08f90d
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Thu May 3 19:02:52 2018 +0200

    Move UIBase from Basic to Core, so we can remove Basic dependency when using other UI sets like MDL or Jewel. Still remains more work to do to be able to do this separation.
---
 frameworks/projects/Basic/src/main/royale/BasicClasses.as               | 2 +-
 frameworks/projects/Core/src/main/royale/CoreClasses.as                 | 1 +
 .../src/main/royale/org/apache/royale/core/HTMLElementWrapper.as        | 0
 .../{Basic => Core}/src/main/royale/org/apache/royale/core/UIBase.as    | 0
 .../src/main/royale/org/apache/royale/html/util/addElementToWrapper.as  | 0
 5 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/frameworks/projects/Basic/src/main/royale/BasicClasses.as b/frameworks/projects/Basic/src/main/royale/BasicClasses.as
index ef6ef6e..ff55193 100644
--- a/frameworks/projects/Basic/src/main/royale/BasicClasses.as
+++ b/frameworks/projects/Basic/src/main/royale/BasicClasses.as
@@ -243,7 +243,7 @@ internal class BasicClasses
 	import org.apache.royale.core.ListBase; ListBase;
 	import org.apache.royale.core.Lookalike; Lookalike;
 	import org.apache.royale.core.FilledRectangle; FilledRectangle;
-    import org.apache.royale.core.UIBase; UIBase;
+    
 	COMPILE::JS
 	{
 		import org.apache.royale.core.UIElement; UIElement;
diff --git a/frameworks/projects/Core/src/main/royale/CoreClasses.as b/frameworks/projects/Core/src/main/royale/CoreClasses.as
index a1061dd..d189481 100644
--- a/frameworks/projects/Core/src/main/royale/CoreClasses.as
+++ b/frameworks/projects/Core/src/main/royale/CoreClasses.as
@@ -26,6 +26,7 @@ package {
  */
 internal class CoreClasses
 {
+	import org.apache.royale.core.UIBase; UIBase;
     import org.apache.royale.core.BeadViewBase; BeadViewBase;
     import org.apache.royale.core.ImageViewBase; ImageViewBase;
     import org.apache.royale.core.BrowserWindow; BrowserWindow;
diff --git a/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/HTMLElementWrapper.as b/frameworks/projects/Core/src/main/royale/org/apache/royale/core/HTMLElementWrapper.as
similarity index 100%
rename from frameworks/projects/Basic/src/main/royale/org/apache/royale/core/HTMLElementWrapper.as
rename to frameworks/projects/Core/src/main/royale/org/apache/royale/core/HTMLElementWrapper.as
diff --git a/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/UIBase.as b/frameworks/projects/Core/src/main/royale/org/apache/royale/core/UIBase.as
similarity index 100%
rename from frameworks/projects/Basic/src/main/royale/org/apache/royale/core/UIBase.as
rename to frameworks/projects/Core/src/main/royale/org/apache/royale/core/UIBase.as
diff --git a/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/util/addElementToWrapper.as b/frameworks/projects/Core/src/main/royale/org/apache/royale/html/util/addElementToWrapper.as
similarity index 100%
rename from frameworks/projects/Basic/src/main/royale/org/apache/royale/html/util/addElementToWrapper.as
rename to frameworks/projects/Core/src/main/royale/org/apache/royale/html/util/addElementToWrapper.as

-- 
To stop receiving notification emails like this one, please contact
carlosrovira@apache.org.