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 32e47ce  jewel-containers: remove duplicated events
32e47ce is described below

commit 32e47cedb45914a5f54c97df0461ba05de1d7c1f
Author: Carlos Rovira <[email protected]>
AuthorDate: Thu Aug 13 16:19:50 2020 +0200

    jewel-containers: remove duplicated events
---
 .../supportClasses/container/ContainerBase.as      | 38 ++--------------------
 .../supportClasses/container/DataContainerBase.as  | 10 ------
 2 files changed, 3 insertions(+), 45 deletions(-)

diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/supportClasses/container/ContainerBase.as
 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/supportClasses/container/ContainerBase.as
index 4f778dd..9832123 100644
--- 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/supportClasses/container/ContainerBase.as
+++ 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/supportClasses/container/ContainerBase.as
@@ -28,41 +28,7 @@ package org.apache.royale.jewel.supportClasses.container
        import org.apache.royale.core.ContainerBaseStrandChildren;
        import org.apache.royale.core.IParent;
        import org.apache.royale.core.IChild;
-
-    /**
-     *  Indicates that the state change has completed.  All properties
-     *  that need to change have been changed, and all transitinos
-     *  that need to run have completed.  However, any deferred work
-     *  may not be completed, and the screen may not be updated until
-     *  code stops executing.
-     *  
-     *  @langversion 3.0
-     *  @playerversion Flash 10.2
-     *  @playerversion AIR 2.6
-     *  @productversion Royale 0.9.7
-     */
-    [Event(name="stateChangeComplete", type="org.apache.royale.events.Event")]
-    
-    /**
-     *  Indicates that the initialization of the container is complete.
-     *  
-     *  @langversion 3.0
-     *  @playerversion Flash 10.2
-     *  @playerversion AIR 2.6
-     *  @productversion Royale 0.9.7
-     */
-    [Event(name="initComplete", type="org.apache.royale.events.Event")]
-    
-    /**
-     *  Indicates that the children of the container is have been added.
-     *  
-     *  @langversion 3.0
-     *  @playerversion Flash 10.2
-     *  @playerversion AIR 2.6
-     *  @productversion Royale 0.9.7
-     */
-    [Event(name="childrenAdded", type="org.apache.royale.events.Event")]
-    
+       
     /**
      *  The ContainerBase class is the base class for most containers
      *  in Royale.  It is usable as the root tag of MXML
@@ -91,6 +57,8 @@ package org.apache.royale.jewel.supportClasses.container
                private var _strandChildren:ContainerBaseStrandChildren;
                
                /**
+                * Returns a object to access the immediate children of the 
strand.
+                * 
                 * @private
                 */
                override public function get strandChildren():IParent
diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/supportClasses/container/DataContainerBase.as
 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/supportClasses/container/DataContainerBase.as
index efa86e4..faa308f 100644
--- 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/supportClasses/container/DataContainerBase.as
+++ 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/supportClasses/container/DataContainerBase.as
@@ -23,16 +23,6 @@ package org.apache.royale.jewel.supportClasses.container
        import org.apache.royale.core.ValuesManager;
        import org.apache.royale.events.Event;
        
-       /**
-        *  Indicates that the initialization of the list is complete.
-        *
-        *  @langversion 3.0
-        *  @playerversion Flash 10.2
-        *  @playerversion AIR 2.6
-        *  @productversion Royale 0.9.7
-        */
-       [Event(name="initComplete", type="org.apache.royale.events.Event")]
-    
     /**
      *  The DataContainerBase class is the base class for components that
         *  that have generated content, like lists.

Reply via email to