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

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

commit 4e35980fd0752ed679f88656c50fa8c1eb56ee7d
Author: Alex Harui <[email protected]>
AuthorDate: Mon Jun 17 10:58:59 2019 -0700

    ASDoc found these small issues
---
 .../projects/Ace/src/main/royale/{JQueryClasses.as => AceClasses.as}  | 2 +-
 .../main/royale/mx/controls/listClasses/VirtualListVerticalLayout.as  | 2 +-
 frameworks/projects/MXRoyale/src/main/royale/mx/core/Keyboard.as      | 2 +-
 .../projects/MXRoyale/src/main/royale/mx/events/NetStatusEvent.as     | 2 +-
 .../MXRoyale/src/main/royale/mx/events/utils/FocusEventConverter.as   | 2 +-
 .../src/main/royale/mx/events/utils/KeyboardEventConverter.as         | 1 +
 .../src/main/royale/mx/messaging/ConsumerMessageDispatcher.as         | 4 ++--
 .../projects/MXRoyale/src/main/royale/mx/resources/ResourceManager.as | 2 +-
 .../MXRoyale/src/main/royale/mx/resources/ResourceManagerImpl.as      | 4 ++--
 .../projects/MXRoyale/src/main/royale/mx/validators/DateValidator.as  | 4 ++--
 .../src/main/royale/org/apache/royale/mdl/beads/RestrictTextField.as  | 2 +-
 .../src/main/royale/org/apache/royale/reflection/beads/JSONReviver.as | 2 +-
 .../src/main/royale/spark/components/SkinnablePopUpContainer.as       | 2 +-
 .../src/main/royale/org/apache/royale/textLayout/edit/EditManager.as  | 2 +-
 .../Text/src/main/royale/org/apache/royale/text/events/TextEvent.as   | 2 +-
 15 files changed, 18 insertions(+), 17 deletions(-)

diff --git a/frameworks/projects/Ace/src/main/royale/JQueryClasses.as 
b/frameworks/projects/Ace/src/main/royale/AceClasses.as
similarity index 97%
rename from frameworks/projects/Ace/src/main/royale/JQueryClasses.as
rename to frameworks/projects/Ace/src/main/royale/AceClasses.as
index 8df1080..33f5dae 100644
--- a/frameworks/projects/Ace/src/main/royale/JQueryClasses.as
+++ b/frameworks/projects/Ace/src/main/royale/AceClasses.as
@@ -25,7 +25,7 @@ package
  *  beyond those that are found by dependecy analysis starting
  *  from the classes specified in manifest.xml.
  */
-internal class JQueryClasses
+internal class AceClasses
 {      
 }
 
diff --git 
a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/listClasses/VirtualListVerticalLayout.as
 
b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/listClasses/VirtualListVerticalLayout.as
index 923b8b9..496defa 100644
--- 
a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/listClasses/VirtualListVerticalLayout.as
+++ 
b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/listClasses/VirtualListVerticalLayout.as
@@ -16,7 +16,7 @@
 //  limitations under the License.
 //
 
////////////////////////////////////////////////////////////////////////////////
-package org.apache.royale.html.beads.layouts
+package mx.controls.listClasses
 {
        import org.apache.royale.core.IBeadLayout;
        import org.apache.royale.core.IBeadModel;
diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/core/Keyboard.as 
b/frameworks/projects/MXRoyale/src/main/royale/mx/core/Keyboard.as
index f6d49df..8631799 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/core/Keyboard.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/core/Keyboard.as
@@ -89,7 +89,7 @@ COMPILE::SWF
                
                
                /**
-                * [static] Constant associated with the key code value for the 
\ key (220).
+                * [static] Constant associated with the key code value for the 
&#92; key (220).
                 */
                public static const BACKSLASH : uint = 220;
                
diff --git 
a/frameworks/projects/MXRoyale/src/main/royale/mx/events/NetStatusEvent.as 
b/frameworks/projects/MXRoyale/src/main/royale/mx/events/NetStatusEvent.as
index 96f7664..2741b3b 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/events/NetStatusEvent.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/events/NetStatusEvent.as
@@ -43,7 +43,7 @@ public class NetStatusEvent extends 
flash.events.NetStatusEvent
                                                          cancelable:Boolean = 
false, text:String = "", id:int = 0
                                                          )
        {
-               super(type, bubbles, cancelable,text,id);
+               super(type, bubbles, cancelable,text);
        }
 }
 
diff --git 
a/frameworks/projects/MXRoyale/src/main/royale/mx/events/utils/FocusEventConverter.as
 
b/frameworks/projects/MXRoyale/src/main/royale/mx/events/utils/FocusEventConverter.as
index 2dbd2d4..a731ac0 100644
--- 
a/frameworks/projects/MXRoyale/src/main/royale/mx/events/utils/FocusEventConverter.as
+++ 
b/frameworks/projects/MXRoyale/src/main/royale/mx/events/utils/FocusEventConverter.as
@@ -48,7 +48,7 @@ package mx.events.utils
                COMPILE::SWF
                public static function 
convert(oldEvent:flash.events.FocusEvent):mx.events.FocusEvent
                {
-                       var newEvent:mx.events.FocusEvent = new 
mx.events.FocusEvent(type, true);
+                       var newEvent:mx.events.FocusEvent = new 
mx.events.FocusEvent(oldEvent.type, true);
                        return newEvent;
                }
                
diff --git 
a/frameworks/projects/MXRoyale/src/main/royale/mx/events/utils/KeyboardEventConverter.as
 
b/frameworks/projects/MXRoyale/src/main/royale/mx/events/utils/KeyboardEventConverter.as
index c77425f..4e00ba3 100644
--- 
a/frameworks/projects/MXRoyale/src/main/royale/mx/events/utils/KeyboardEventConverter.as
+++ 
b/frameworks/projects/MXRoyale/src/main/royale/mx/events/utils/KeyboardEventConverter.as
@@ -26,6 +26,7 @@ package mx.events.utils
        COMPILE::SWF
        {
                import flash.events.KeyboardEvent;
+        import org.apache.royale.events.KeyboardEvent;
        }
        
        /**
diff --git 
a/frameworks/projects/MXRoyale/src/main/royale/mx/messaging/ConsumerMessageDispatcher.as
 
b/frameworks/projects/MXRoyale/src/main/royale/mx/messaging/ConsumerMessageDispatcher.as
index c06e943..b2a8792 100644
--- 
a/frameworks/projects/MXRoyale/src/main/royale/mx/messaging/ConsumerMessageDispatcher.as
+++ 
b/frameworks/projects/MXRoyale/src/main/royale/mx/messaging/ConsumerMessageDispatcher.as
@@ -43,13 +43,13 @@ use namespace mx_internal;
  *                  |                       |
  *               Channel 1               Channel 2  <- The endpoint URIs for 
these two channels are identical
  *                  |                       |
- *                  \_______________________/
+ *                  &#92;_______________________/
  *  Server:                     |
  *                              |
  *                          Endpoint (that the two channels point to)
  *                              |
  *                  FlexClientOutboundQueue (for this endpoint for this 
FlexClient)
- *                              \-- Outbound messages for the three Consumer 
subscriptions
+ *                              &#92;-- Outbound messages for the three 
Consumer subscriptions
  * 
  *  When the endpoint receives a poll request from Channel 1 it will return 
queued messages for all three subscriptions
  *  but back on the client when Channel 1 dispatches message events for 
Consumer 2 and 3's subscriptions they won't see
diff --git 
a/frameworks/projects/MXRoyale/src/main/royale/mx/resources/ResourceManager.as 
b/frameworks/projects/MXRoyale/src/main/royale/mx/resources/ResourceManager.as
index 4a00afe..5ea4721 100644
--- 
a/frameworks/projects/MXRoyale/src/main/royale/mx/resources/ResourceManager.as
+++ 
b/frameworks/projects/MXRoyale/src/main/royale/mx/resources/ResourceManager.as
@@ -28,7 +28,7 @@ import mx.core.IFlexModuleFactory;
 import mx.core.mx_internal;
 //import mx.core.Singleton;
 //import mx.events.ModuleEvent;
-import mx.events.ResourceEvent;
+//import mx.events.ResourceEvent;
 import mx.modules.IModuleInfo;
 import mx.modules.ModuleManager;
 import mx.utils.StringUtil;
diff --git 
a/frameworks/projects/MXRoyale/src/main/royale/mx/resources/ResourceManagerImpl.as
 
b/frameworks/projects/MXRoyale/src/main/royale/mx/resources/ResourceManagerImpl.as
index a8c6086..6f3bb02 100644
--- 
a/frameworks/projects/MXRoyale/src/main/royale/mx/resources/ResourceManagerImpl.as
+++ 
b/frameworks/projects/MXRoyale/src/main/royale/mx/resources/ResourceManagerImpl.as
@@ -39,7 +39,7 @@ import mx.core.mx_internal;
 //import mx.core.Singleton;
 import mx.events.FlexEvent;
 import mx.events.ModuleEvent;
-import mx.events.ResourceEvent;
+//import mx.events.ResourceEvent;
 import mx.managers.SystemManagerGlobals;
 import mx.modules.IModuleInfo;
 import mx.modules.ModuleManager;
@@ -1202,7 +1202,7 @@ public class ResourceManagerImpl extends EventDispatcher 
implements IResourceMan
 
 import org.apache.royale.events.EventDispatcher;
 //import mx.events.ModuleEvent;
-import mx.events.ResourceEvent;
+//import mx.events.ResourceEvent;
 import mx.modules.IModuleInfo;
 import mx.resources.IResourceBundle;
 //import mx.resources.IResourceModule;
diff --git 
a/frameworks/projects/MXRoyale/src/main/royale/mx/validators/DateValidator.as 
b/frameworks/projects/MXRoyale/src/main/royale/mx/validators/DateValidator.as
index 6aa3681..a6d0754 100644
--- 
a/frameworks/projects/MXRoyale/src/main/royale/mx/validators/DateValidator.as
+++ 
b/frameworks/projects/MXRoyale/src/main/royale/mx/validators/DateValidator.as
@@ -47,7 +47,7 @@ package mx.validators
  *    and <code>property</code> properties to specify the String.
  *    The String can contain digits and the formatting characters
  *    specified by the <code>allowedFormatChars</code> property,
- *    which include the "/\-. " characters. 
+ *    which include the "/&#92;-. " characters. 
  *    By default, the input format of the date in a String field
  *    is "MM/DD/YYYY" where "MM" is the month, "DD" is the day,
  *    and "YYYY" is the year. 
@@ -69,7 +69,7 @@ package mx.validators
  *  
  *  <pre>
  *  &lt;mx:DateValidator 
- *    allowedFormatChars="/\-. " 
+ *    allowedFormatChars="/&#92;-. " 
  *    dayListener="<i>Object specified by daySource</i>"
  *    dayProperty="<i>No default</i>"
  *    daySource="<i>No default</i>"
diff --git 
a/frameworks/projects/MaterialDesignLite/src/main/royale/org/apache/royale/mdl/beads/RestrictTextField.as
 
b/frameworks/projects/MaterialDesignLite/src/main/royale/org/apache/royale/mdl/beads/RestrictTextField.as
index 836a4ca..f3cdcab 100644
--- 
a/frameworks/projects/MaterialDesignLite/src/main/royale/org/apache/royale/mdl/beads/RestrictTextField.as
+++ 
b/frameworks/projects/MaterialDesignLite/src/main/royale/org/apache/royale/mdl/beads/RestrictTextField.as
@@ -30,7 +30,7 @@ package org.apache.royale.mdl.beads
         *  input from user. A text property allows to configure error text.
         *  
         *  use examples:
-        *  Numeric pattern = -?[0-9]*(\.[0-9]+)?
+        *  Numeric pattern = -?[0-9]*(&#92;.[0-9]+)?
         *  error text = "Input is not a number!"
         *
         *  Letters and spaces only pattern = [A-Z,a-z, ]*
diff --git 
a/frameworks/projects/Reflection/src/main/royale/org/apache/royale/reflection/beads/JSONReviver.as
 
b/frameworks/projects/Reflection/src/main/royale/org/apache/royale/reflection/beads/JSONReviver.as
index 77c674d..32d6490 100644
--- 
a/frameworks/projects/Reflection/src/main/royale/org/apache/royale/reflection/beads/JSONReviver.as
+++ 
b/frameworks/projects/Reflection/src/main/royale/org/apache/royale/reflection/beads/JSONReviver.as
@@ -47,7 +47,7 @@ import org.apache.royale.core.IStrand;
  *  @productversion Royale 1.0.0
  *  @productversion Royale 0.0
  */
-public class JSONReviver
+public class JSONReviver implements IBead
 {
 
     public function JSONReviver()
diff --git 
a/frameworks/projects/SparkRoyale/src/main/royale/spark/components/SkinnablePopUpContainer.as
 
b/frameworks/projects/SparkRoyale/src/main/royale/spark/components/SkinnablePopUpContainer.as
index fe4b9b1..5249221 100644
--- 
a/frameworks/projects/SparkRoyale/src/main/royale/spark/components/SkinnablePopUpContainer.as
+++ 
b/frameworks/projects/SparkRoyale/src/main/royale/spark/components/SkinnablePopUpContainer.as
@@ -37,7 +37,7 @@ package spark.components
        import mx.core.FlexVersion;
        import mx.core.mx_internal;
                
-       import mx.effects.Parallel;
+       //import mx.effects.Parallel;
        import mx.events.EffectEvent;
        import mx.events.FlexEvent;
        import mx.events.SandboxMouseEvent;
diff --git 
a/frameworks/projects/TLF/src/main/royale/org/apache/royale/textLayout/edit/EditManager.as
 
b/frameworks/projects/TLF/src/main/royale/org/apache/royale/textLayout/edit/EditManager.as
index e4e4bc5..4b2b6cc 100644
--- 
a/frameworks/projects/TLF/src/main/royale/org/apache/royale/textLayout/edit/EditManager.as
+++ 
b/frameworks/projects/TLF/src/main/royale/org/apache/royale/textLayout/edit/EditManager.as
@@ -120,7 +120,7 @@ package org.apache.royale.textLayout.edit
         * @see org.apache.royale.textLayout.elements.TextFlow
         * @see flashx.undo.UndoManager
         *
-        *  examples\EditManager_example.as -noswf
+        *  examples/EditManager_example.as -noswf
         * 
         * @playerversion Flash 10
         * @playerversion AIR 1.5
diff --git 
a/frameworks/projects/Text/src/main/royale/org/apache/royale/text/events/TextEvent.as
 
b/frameworks/projects/Text/src/main/royale/org/apache/royale/text/events/TextEvent.as
index 751622b..e7bd198 100644
--- 
a/frameworks/projects/Text/src/main/royale/org/apache/royale/text/events/TextEvent.as
+++ 
b/frameworks/projects/Text/src/main/royale/org/apache/royale/text/events/TextEvent.as
@@ -36,7 +36,7 @@ package org.apache.royale.text.events
         * set to a new static constant.
         * </p>
         *
-        * @includeExample examples\TextLayoutEvent_example.as -noswf
+        * @includeExample examples/TextLayoutEvent_example.as -noswf
         * @playerversion Flash 10
         * @playerversion AIR 1.5
         * @langversion 3.0

Reply via email to