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 2020/10/25 16:05:47 UTC

[royale-asjs] branch develop updated: core: refactor IDataGrid and IStrandWithPresentationModel to Core since were in Basic by mistake

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 778adf1  core: refactor IDataGrid and IStrandWithPresentationModel to Core since were in Basic by mistake
778adf1 is described below

commit 778adf16ed899da21526b26a4732593fa057bb34
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Sun Oct 25 17:05:34 2020 +0100

    core: refactor IDataGrid and IStrandWithPresentationModel to Core since were in Basic by mistake
---
 frameworks/projects/Core/src/main/royale/CoreClasses.as                 | 2 ++
 .../{Basic => Core}/src/main/royale/org/apache/royale/core/IDataGrid.as | 0
 .../main/royale/org/apache/royale/core/IStrandWithPresentationModel.as  | 0
 3 files changed, 2 insertions(+)

diff --git a/frameworks/projects/Core/src/main/royale/CoreClasses.as b/frameworks/projects/Core/src/main/royale/CoreClasses.as
index 3dba2f9..e9905b1 100644
--- a/frameworks/projects/Core/src/main/royale/CoreClasses.as
+++ b/frameworks/projects/Core/src/main/royale/CoreClasses.as
@@ -162,6 +162,7 @@ internal class CoreClasses
 	import org.apache.royale.core.IContainerBaseStrandChildrenHost; IContainerBaseStrandChildrenHost;
 	import org.apache.royale.core.IStrandWithModel; IStrandWithModel;
 	import org.apache.royale.core.IStrandWithModelView; IStrandWithModelView;
+	import org.apache.royale.core.IStrandWithPresentationModel; IStrandWithPresentationModel;
 	import org.apache.royale.core.ITextModel; ITextModel;
 	import org.apache.royale.core.IMenuModel; IMenuModel;
 	import org.apache.royale.core.ICascadingMenuModel; ICascadingMenuModel;
@@ -283,6 +284,7 @@ internal class CoreClasses
 
 	import org.apache.royale.core.IMenuBarModel; IMenuBarModel;
 	
+	import org.apache.royale.core.IDataGrid; IDataGrid;
 	import org.apache.royale.core.IDataGridModel; IDataGridModel;
 	import org.apache.royale.core.IDataGridHeader; IDataGridHeader;
 	import org.apache.royale.core.IDataGridPresentationModel; IDataGridPresentationModel;
diff --git a/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/IDataGrid.as b/frameworks/projects/Core/src/main/royale/org/apache/royale/core/IDataGrid.as
similarity index 100%
rename from frameworks/projects/Basic/src/main/royale/org/apache/royale/core/IDataGrid.as
rename to frameworks/projects/Core/src/main/royale/org/apache/royale/core/IDataGrid.as
diff --git a/frameworks/projects/Basic/src/main/royale/org/apache/royale/core/IStrandWithPresentationModel.as b/frameworks/projects/Core/src/main/royale/org/apache/royale/core/IStrandWithPresentationModel.as
similarity index 100%
rename from frameworks/projects/Basic/src/main/royale/org/apache/royale/core/IStrandWithPresentationModel.as
rename to frameworks/projects/Core/src/main/royale/org/apache/royale/core/IStrandWithPresentationModel.as