You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ha...@apache.org on 2018/09/02 21:31:37 UTC

[royale-asjs] 09/10: Use IList

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

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

commit 038f40b41dadc577f42e5ae9564c06cea032a4a3
Author: Harbs <ha...@in-tools.com>
AuthorDate: Mon Sep 3 00:27:28 2018 +0300

    Use IList
---
 .../apache/royale/html/supportClasses/IDataGridColumnList.as   |  4 ++--
 .../Core/src/main/royale/org/apache/royale/core/IList.as       | 10 ----------
 2 files changed, 2 insertions(+), 12 deletions(-)

diff --git a/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/supportClasses/IDataGridColumnList.as b/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/supportClasses/IDataGridColumnList.as
index 488cb18..ccb12bf 100644
--- a/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/supportClasses/IDataGridColumnList.as
+++ b/frameworks/projects/Basic/src/main/royale/org/apache/royale/html/supportClasses/IDataGridColumnList.as
@@ -18,7 +18,7 @@
 ////////////////////////////////////////////////////////////////////////////////
 package org.apache.royale.html.supportClasses
 {
-    import org.apache.royale.core.IListWithPresentationModel;
+    import org.apache.royale.core.IList;
     import org.apache.royale.core.IStrand;
     import org.apache.royale.events.IEventDispatcher;
 
@@ -30,7 +30,7 @@ package org.apache.royale.html.supportClasses
      *  @playerversion AIR 2.6
      *  @productversion Royale 0.9.3
      */
-    public interface IDataGridColumnList extends IListWithPresentationModel, IStrand, IEventDispatcher
+    public interface IDataGridColumnList extends IList, IStrand, IEventDispatcher
     {
         function set className(value:String):void;
         function set labelField(value:String):void;
diff --git a/frameworks/projects/Core/src/main/royale/org/apache/royale/core/IList.as b/frameworks/projects/Core/src/main/royale/org/apache/royale/core/IList.as
index f25d036..84007a7 100644
--- a/frameworks/projects/Core/src/main/royale/org/apache/royale/core/IList.as
+++ b/frameworks/projects/Core/src/main/royale/org/apache/royale/core/IList.as
@@ -33,16 +33,6 @@ package org.apache.royale.core
      */
 	public interface IList extends IItemRendererProvider
 	{
-        /**
-         *  Returns the component within the list (maybe even the list shell itself)
-		 *  which will be the parent of each itemRenderer.
-         * 
-         *  @langversion 3.0
-         *  @playerversion Flash 10.2
-         *  @playerversion AIR 2.6
-         *  @productversion Royale 0.0
-         */
-		function get dataGroup():IItemRendererParent;
 		
 	}
 }