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 2020/04/17 20:54:13 UTC

[royale-asjs] branch release/0.9.7 updated (94b464e -> fb12e23)

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

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


    from 94b464e  update royale.compiler.version and royale.typedefs.version in pom
     new 1b4ecd5  jewel: add IScrollToIndex interface left from a recent commit
     new fb12e23  scrollToIndex: forgot to remove the class here

The 2 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:
 .../projects/Jewel/src/main/royale/JewelClasses.as     |  3 ---
 .../royale/jewel/beads/views/IScrollToIndexView.as}    | 18 +++++++-----------
 2 files changed, 7 insertions(+), 14 deletions(-)
 copy frameworks/projects/{Core/src/main/royale/org/apache/royale/html/beads/IListView.as => Jewel/src/main/royale/org/apache/royale/jewel/beads/views/IScrollToIndexView.as} (78%)


[royale-asjs] 02/02: scrollToIndex: forgot to remove the class here

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

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

commit fb12e237e23f16ed5f13d203a2b621e657adec29
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Fri Apr 17 14:33:54 2020 +0200

    scrollToIndex: forgot to remove the class here
---
 frameworks/projects/Jewel/src/main/royale/JewelClasses.as | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/frameworks/projects/Jewel/src/main/royale/JewelClasses.as b/frameworks/projects/Jewel/src/main/royale/JewelClasses.as
index 7fd876b..c337bff 100644
--- a/frameworks/projects/Jewel/src/main/royale/JewelClasses.as
+++ b/frameworks/projects/Jewel/src/main/royale/JewelClasses.as
@@ -140,8 +140,5 @@ package
         import org.apache.royale.jewel.beads.itemRenderers.TabBarItemRendererInitializer; TabBarItemRendererInitializer;
         import org.apache.royale.jewel.beads.itemRenderers.NavigationItemRendererInitializer; NavigationItemRendererInitializer;
         import org.apache.royale.jewel.beads.itemRenderers.DropDownListItemRendererInitializer; DropDownListItemRendererInitializer;
-
-        import org.apache.royale.jewel.beads.controls.list.scrollToIndex; scrollToIndex;
-
     }
 }


[royale-asjs] 01/02: jewel: add IScrollToIndex interface left from a recent commit

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

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

commit 1b4ecd55b4fe3d1a58de0b9e2d3851a90ad2388b
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Fri Apr 17 19:09:25 2020 +0200

    jewel: add IScrollToIndex interface left from a recent commit
    
    (cherry picked from commit a0446b4807d49ff0804cbbc9e3c44d99a35ac47e)
---
 .../royale/jewel/beads/views/IScrollToIndexView.as | 43 ++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/views/IScrollToIndexView.as b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/views/IScrollToIndexView.as
new file mode 100644
index 0000000..d56efe4
--- /dev/null
+++ b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/views/IScrollToIndexView.as
@@ -0,0 +1,43 @@
+////////////////////////////////////////////////////////////////////////////////
+//
+//  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 org.apache.royale.jewel.beads.views
+{	
+	/**
+	 *  The IListView interface provides the protocol for any bead that
+	 *  creates the visual parts for a org.apache.royale.jewel.List control.
+	 *  
+	 *  @langversion 3.0
+	 *  @playerversion Flash 10.2
+	 *  @playerversion AIR 2.6
+	 *  @productversion Royale 0.9.7
+	 */
+	public interface IScrollToIndexView
+	{
+		/**
+		 *  The component which parents all of the itemRenderers for each
+		 *  datum being displayed by the List component.
+		 *
+		 *  @langversion 3.0
+		 *  @playerversion Flash 10.2
+		 *  @playerversion AIR 2.6
+		 *  @productversion Royale 0.9.7
+		 */
+		function scrollToIndex(index:int):Boolean;
+	}
+}
\ No newline at end of file