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 fb0dafd  jewel: some cleaning and organization of imports
fb0dafd is described below

commit fb0dafd634515e60276b72c3a4a5d4d1b09b0f2b
Author: Carlos Rovira <[email protected]>
AuthorDate: Mon Feb 17 15:13:58 2020 +0100

    jewel: some cleaning and organization of imports
---
 .../royale/jewel/ApplicationResponsiveView.as      |   9 +-
 .../src/main/royale/org/apache/royale/jewel/Bar.as |   2 -
 .../royale/org/apache/royale/jewel/ControlBar.as   |  15 ++-
 .../royale/org/apache/royale/jewel/DateField.as    |   6 --
 .../main/royale/org/apache/royale/jewel/Divider.as |   4 +-
 .../main/royale/org/apache/royale/jewel/Drawer.as  |   6 +-
 .../royale/org/apache/royale/jewel/FooterBar.as    |   5 -
 .../royale/org/apache/royale/jewel/FormHeading.as  | 118 ++++++++++-----------
 .../main/royale/org/apache/royale/jewel/Image.as   |   4 +-
 .../royale/org/apache/royale/jewel/ImageButton.as  |   8 +-
 .../main/royale/org/apache/royale/jewel/Label.as   |   5 +-
 .../main/royale/org/apache/royale/jewel/Module.as  |  11 +-
 .../royale/org/apache/royale/jewel/ModuleLoader.as |  24 ++---
 .../royale/org/apache/royale/jewel/Navigation.as   |   7 +-
 .../org/apache/royale/jewel/NumericStepper.as      |   4 -
 .../royale/org/apache/royale/jewel/SimpleTable.as  |   4 +-
 .../royale/org/apache/royale/jewel/TitleBar.as     |  15 ++-
 .../royale/org/apache/royale/jewel/ToggleButton.as |   3 +-
 .../royale/org/apache/royale/jewel/TopAppBar.as    |  12 +--
 .../main/royale/org/apache/royale/jewel/VSlider.as |   1 -
 .../main/royale/org/apache/royale/jewel/View.as    |   8 +-
 .../royale/org/apache/royale/jewel/WizardPage.as   |   4 -
 22 files changed, 116 insertions(+), 159 deletions(-)

diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/ApplicationResponsiveView.as
 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/ApplicationResponsiveView.as
index 1cd93d3..6c7bfee 100644
--- 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/ApplicationResponsiveView.as
+++ 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/ApplicationResponsiveView.as
@@ -19,16 +19,9 @@
 package org.apache.royale.jewel
 {
        import org.apache.royale.core.IApplicationView;
-       import org.apache.royale.core.IParent;
-       import org.apache.royale.core.IPopUpHostParent;
        import org.apache.royale.core.IPopUpHost;
+       import org.apache.royale.core.IPopUpHostParent;
        import org.apache.royale.events.Event;
-       // import org.apache.royale.jewel.beads.layouts.VerticalLayout;
-
-       COMPILE::JS
-    {
-        import org.apache.royale.core.WrappedHTMLElement;
-    }
 
        /**
         *  The ApplicationResponsiveView class is the main Container component 
capable of parenting other
diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Bar.as 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Bar.as
index 99c7118..ceca32c 100644
--- a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Bar.as
+++ b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Bar.as
@@ -29,8 +29,6 @@ package org.apache.royale.jewel
        import org.apache.royale.core.WrappedHTMLElement;
        import org.apache.royale.html.util.addElementToWrapper;
     }
-       import org.apache.royale.core.IChild;
-       import org.apache.royale.core.IUIBase;
 
        /**
         *  The Bar class is a container component for different items like
diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/ControlBar.as
 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/ControlBar.as
index d46673f..5c012f5 100644
--- 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/ControlBar.as
+++ 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/ControlBar.as
@@ -18,17 +18,16 @@
 
////////////////////////////////////////////////////////////////////////////////
 package org.apache.royale.jewel
 {
-    import org.apache.royale.jewel.Group;
-       import org.apache.royale.core.IBeadLayout;
-       import org.apache.royale.core.IChrome;
-       import org.apache.royale.core.ValuesManager;
-       import org.apache.royale.utils.loadBeadFromValuesManager;
-
     COMPILE::JS
     {
-        import org.apache.royale.core.WrappedHTMLElement;
-               import org.apache.royale.html.util.addElementToWrapper;
+       import org.apache.royale.core.WrappedHTMLElement;
+       import org.apache.royale.html.util.addElementToWrapper;
     }
+    import org.apache.royale.core.IBeadLayout;
+    import org.apache.royale.core.IChrome;
+    import org.apache.royale.jewel.Group;
+    import org.apache.royale.utils.loadBeadFromValuesManager;
+
 
        /**
         *  The ControlBar class is used within a Panel as a place to position
diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/DateField.as
 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/DateField.as
index 744faed..5297208 100644
--- 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/DateField.as
+++ 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/DateField.as
@@ -18,18 +18,12 @@
 
////////////////////////////////////////////////////////////////////////////////
 package org.apache.royale.jewel
 {
-       COMPILE::JS
-    {
-        import org.apache.royale.core.WrappedHTMLElement;
-        import org.apache.royale.html.util.addElementToWrapper;
-    }
        import org.apache.royale.core.IDateChooserModel;
        import org.apache.royale.core.IDateControlConfigBead;
        import org.apache.royale.core.IFormatter;
        import org.apache.royale.core.StyledUIBase;
        import org.apache.royale.events.Event;
        import org.apache.royale.utils.loadBeadFromValuesManager;
-
        
        /**
         * The change event is dispatched when the selectedDate is changed.
diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Divider.as 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Divider.as
index 8af84f6..23171dc 100644
--- 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Divider.as
+++ 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Divider.as
@@ -20,8 +20,8 @@ package org.apache.royale.jewel
 {
     COMPILE::JS
     {
-        import org.apache.royale.core.WrappedHTMLElement;
-               import org.apache.royale.html.util.addElementToWrapper;
+       import org.apache.royale.core.WrappedHTMLElement;
+       import org.apache.royale.html.util.addElementToWrapper;
     }
 
        /**
diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Drawer.as 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Drawer.as
index df40a29..1aa65fa 100644
--- 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Drawer.as
+++ 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Drawer.as
@@ -18,10 +18,10 @@
 
////////////////////////////////////////////////////////////////////////////////
 package org.apache.royale.jewel
 {
-       import org.apache.royale.jewel.supportClasses.drawer.DrawerBase;
-       import org.apache.royale.events.MouseEvent;
-       import org.apache.royale.events.Event;
        import org.apache.royale.core.UIBase;
+       import org.apache.royale.events.Event;
+       import org.apache.royale.events.MouseEvent;
+       import org.apache.royale.jewel.supportClasses.drawer.DrawerBase;
        import org.apache.royale.utils.StringUtil;
 
        /**
diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/FooterBar.as
 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/FooterBar.as
index 13d7e80..c5abba7 100644
--- 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/FooterBar.as
+++ 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/FooterBar.as
@@ -24,11 +24,6 @@ package org.apache.royale.jewel
 
        import org.apache.royale.core.IRenderedObject;
     }
-    COMPILE::JS
-    {
-       import org.apache.royale.core.WrappedHTMLElement;
-       import org.apache.royale.html.util.addElementToWrapper;
-    }
 
        /**
         *  The FooterBar class is a container component for different items 
like
diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/FormHeading.as
 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/FormHeading.as
index 49e61e1..3f7fdd6 100644
--- 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/FormHeading.as
+++ 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/FormHeading.as
@@ -18,69 +18,69 @@
 
////////////////////////////////////////////////////////////////////////////////
 package org.apache.royale.jewel
 {
-    import org.apache.royale.core.ITextModel;
+       import org.apache.royale.core.ITextModel;
 
-      /**
-       * FormHeading is a label, and option required indicator (no validation 
is implied)
-       * and a content with one or more controls
-       */
-      public class FormHeading extends Group
-      {
-            /**
-             *  constructor.
-             *
-             *  @langversion 3.0
-             *  @playerversion Flash 10.2
-             *  @playerversion AIR 2.6
-             *  @productversion Royale 0.9.4
-             */
-            public function FormHeading()
-            {
-                  super();
+       /**
+        * FormHeading is a label, and option required indicator (no validation 
is implied)
+        * and a content with one or more controls
+        */
+       public class FormHeading extends Group
+       {
+               /**
+                *  constructor.
+                *
+                *  @langversion 3.0
+                *  @playerversion Flash 10.2
+                *  @playerversion AIR 2.6
+                *  @productversion Royale 0.9.4
+                */
+               public function FormHeading()
+               {
+                       super();
 
-                  typeNames = "jewel formheading";
-            }
+                       typeNames = "jewel formheading";
+               }
 
-            [Bindable(event="change")]
+               [Bindable(event="change")]
+               /**
+                *  @copy org.apache.royale.html.Label#text
+                *
+                *  @langversion 3.0
+                *  @playerversion Flash 10.2
+                *  @playerversion AIR 2.6
+                *  @productversion Royale 0.9.4
+                */
+               public function get label():String
+               {
+                       return ITextModel(model).text;
+               }
                /**
-             *  @copy org.apache.royale.html.Label#text
-             *
-             *  @langversion 3.0
-             *  @playerversion Flash 10.2
-             *  @playerversion AIR 2.6
-             *  @productversion Royale 0.9.4
-             */
-            public function get label():String
-            {
-                  return ITextModel(model).text;
-            }
-            /**
-             *  @private
-             */
-            public function set label(value:String):void
-            {
-                  ITextModel(model).text = value;
-            }
+                *  @private
+                */
+               public function set label(value:String):void
+               {
+                       ITextModel(model).text = value;
+               }
 
-            [Bindable(event="change")]
+               [Bindable(event="change")]
+               /**
+                *  @copy org.apache.royale.html.Label#html
+                *
+                *  @langversion 3.0
+                *  @playerversion Flash 10.2
+                *  @playerversion AIR 2.6
+                *  @productversion Royale 0.9.4
+                */
+               public function get html():String
+               {
+                       return ITextModel(model).html;
+               }
                /**
-             *  @copy org.apache.royale.html.Label#html
-             *
-             *  @langversion 3.0
-             *  @playerversion Flash 10.2
-             *  @playerversion AIR 2.6
-             *  @productversion Royale 0.9.4
-             */
-            public function get html():String
-            {
-                  return ITextModel(model).html;
-            }
-            /**
-             *  @private
-             */
-            public function set html(value:String):void
-            {
-                  ITextModel(model).html = value;
-            }
-      }
+                *  @private
+                */
+               public function set html(value:String):void
+               {
+                       ITextModel(model).html = value;
+               }
+       }
 }
\ No newline at end of file
diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Image.as 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Image.as
index c014ef9..dd12958 100644
--- a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Image.as
+++ b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Image.as
@@ -22,8 +22,8 @@ package org.apache.royale.jewel
 
     COMPILE::JS
     {
-        import org.apache.royale.core.WrappedHTMLElement;
-        import org.apache.royale.html.util.addElementToWrapper;
+       import org.apache.royale.core.WrappedHTMLElement;
+       import org.apache.royale.html.util.addElementToWrapper;
     }
 
          /**
diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/ImageButton.as
 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/ImageButton.as
index 0bfdf17..e833393 100644
--- 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/ImageButton.as
+++ 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/ImageButton.as
@@ -18,15 +18,17 @@
 
////////////////////////////////////////////////////////////////////////////////
 package org.apache.royale.jewel
 {
+    COMPILE::SWF
+    {
     import org.apache.royale.core.SimpleCSSStyles;
-    import org.apache.royale.events.Event;
-    import org.apache.royale.jewel.beads.models.ImageModel;
-
+    }
     COMPILE::JS
     {
     import org.apache.royale.core.WrappedHTMLElement;
     import org.apache.royale.html.util.addElementToWrapper;
     }
+    import org.apache.royale.events.Event;
+    import org.apache.royale.jewel.beads.models.ImageModel;
 
     /**
      *  The ImageButton class presents an image as a button.
diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Label.as 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Label.as
index ad8dcaf..7507ac2 100644
--- a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Label.as
+++ b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Label.as
@@ -18,12 +18,15 @@
 
////////////////////////////////////////////////////////////////////////////////
 package org.apache.royale.jewel
 {
+    COMPILE::SWF
+    {
+       import org.apache.royale.core.ITextModel;
+    }
     COMPILE::JS
     {
     import org.apache.royale.core.WrappedHTMLElement;
     import org.apache.royale.html.util.addElementToWrapper;
     }
-       import org.apache.royale.core.ITextModel;
        import org.apache.royale.core.StyledUIBase;
        import org.apache.royale.events.Event;
        
diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Module.as 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Module.as
index 3560965..6d61d2a 100644
--- 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Module.as
+++ 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Module.as
@@ -18,17 +18,16 @@
 
////////////////////////////////////////////////////////////////////////////////
 package org.apache.royale.jewel
 {
+    COMPILE::SWF
+    {
+    import flash.system.ApplicationDomain;
+    import flash.utils.getQualifiedClassName;        
+    }
     import org.apache.royale.core.IFlexInfo;
     import org.apache.royale.core.IModule;
     import org.apache.royale.core.IValuesImpl;
     import org.apache.royale.core.ValuesManager;
 
-    COMPILE::SWF
-    {
-        import flash.system.ApplicationDomain;
-        import flash.utils.getQualifiedClassName;        
-    }
-
     /**
      *  Indicates that the state change has completed.  All properties
      *  that need to change have been changed, and all transitinos
diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/ModuleLoader.as
 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/ModuleLoader.as
index e5e172b..05d26e4 100644
--- 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/ModuleLoader.as
+++ 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/ModuleLoader.as
@@ -18,25 +18,17 @@
 
////////////////////////////////////////////////////////////////////////////////
 package org.apache.royale.jewel
 {
-       import org.apache.royale.core.StyledUIBase;
-       import org.apache.royale.utils.UIModuleUtils;
-       
        COMPILE::SWF
        {
-               import flash.display.DisplayObjectContainer;
-               import flash.display.Loader;
-               import flash.events.Event;
-               import flash.net.URLRequest;
-               import flash.system.ApplicationDomain;
-               import flash.system.LoaderContext;
+    import flash.display.DisplayObjectContainer;
+    import flash.display.Loader;
+    import flash.events.Event;
+    import flash.net.URLRequest;
+    import flash.system.ApplicationDomain;
+    import flash.system.LoaderContext;
        }
-       
-    COMPILE::JS
-    {
-        import goog.global;
-
-        import org.apache.royale.core.WrappedHTMLElement;   
-    }
+       import org.apache.royale.core.StyledUIBase;
+       import org.apache.royale.utils.UIModuleUtils;
     
     /**
      *  The Jewel ModuleLoader class can load a Jewel Module. 
diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Navigation.as
 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Navigation.as
index c0431cb..8f37782 100644
--- 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Navigation.as
+++ 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Navigation.as
@@ -18,13 +18,12 @@
 
////////////////////////////////////////////////////////////////////////////////
 package org.apache.royale.jewel
 {
-       import org.apache.royale.events.MouseEvent;
-
     COMPILE::JS
     {
-        import org.apache.royale.core.WrappedHTMLElement;
-               import org.apache.royale.html.util.addElementToWrapper;
+       import org.apache.royale.core.WrappedHTMLElement;
+       import org.apache.royale.html.util.addElementToWrapper;
     }
+       import org.apache.royale.events.MouseEvent;
 
        /**
         *  The Navigation class is a List used for navigate other organized 
content
diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/NumericStepper.as
 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/NumericStepper.as
index 3c40963..109a538 100644
--- 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/NumericStepper.as
+++ 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/NumericStepper.as
@@ -20,11 +20,7 @@ package org.apache.royale.jewel
 {
     COMPILE::JS
     {
-       import goog.events;
-
-       import org.apache.royale.core.IBead;
        import org.apache.royale.core.WrappedHTMLElement;
-       import org.apache.royale.events.IEventDispatcher;
        import org.apache.royale.html.util.addElementToWrapper;
     }
        import org.apache.royale.core.IRangeModel;
diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/SimpleTable.as
 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/SimpleTable.as
index 305457d..c454661 100644
--- 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/SimpleTable.as
+++ 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/SimpleTable.as
@@ -21,8 +21,8 @@ package org.apache.royale.jewel
 {
     COMPILE::JS
     {
-        import org.apache.royale.core.WrappedHTMLElement;
-               import org.apache.royale.html.util.addElementToWrapper;
+       import org.apache.royale.core.WrappedHTMLElement;
+       import org.apache.royale.html.util.addElementToWrapper;
     }
 
        /**
diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/TitleBar.as 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/TitleBar.as
index 4afbc35..03ed277 100644
--- 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/TitleBar.as
+++ 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/TitleBar.as
@@ -18,18 +18,15 @@
 
////////////////////////////////////////////////////////////////////////////////
 package org.apache.royale.jewel
 {
-    import org.apache.royale.core.IBead;
-       import org.apache.royale.core.IBeadLayout;
-       import org.apache.royale.core.IChrome;
-       import org.apache.royale.core.ITitleBarModel;
-       import org.apache.royale.core.ValuesManager;
-       import org.apache.royale.utils.loadBeadFromValuesManager;
     COMPILE::JS
     {
-        import org.apache.royale.core.WrappedHTMLElement;
-        import org.apache.royale.html.util.addElementToWrapper;
+       import org.apache.royale.core.WrappedHTMLElement;
+       import org.apache.royale.html.util.addElementToWrapper;
     }
-
+    import org.apache.royale.core.IBeadLayout;
+    import org.apache.royale.core.IChrome;
+    import org.apache.royale.core.ITitleBarModel;
+    import org.apache.royale.utils.loadBeadFromValuesManager;
        
        /**
         *  The TitleBar class is a Container component that displays a title 
and an
diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/ToggleButton.as
 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/ToggleButton.as
index 08ccbe0..929727f 100644
--- 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/ToggleButton.as
+++ 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/ToggleButton.as
@@ -21,7 +21,8 @@ package org.apache.royale.jewel
     COMPILE::SWF
     {
     import flash.events.MouseEvent;
-       import org.apache.royale.core.IToggleButtonModel;
+
+    import org.apache.royale.core.IToggleButtonModel;
     }
     COMPILE::JS
     {
diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/TopAppBar.as
 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/TopAppBar.as
index 905628f..a3a53f0 100644
--- 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/TopAppBar.as
+++ 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/TopAppBar.as
@@ -18,19 +18,13 @@
 
////////////////////////////////////////////////////////////////////////////////
 package org.apache.royale.jewel
 {
-       import org.apache.royale.events.Event;
-
        COMPILE::SWF
     {
-               import flash.display.DisplayObject;
+       import flash.display.DisplayObject;
 
-               import org.apache.royale.core.IRenderedObject;
-    }
-    COMPILE::JS
-    {
-        import org.apache.royale.core.WrappedHTMLElement;
-        import org.apache.royale.html.util.addElementToWrapper;
+       import org.apache.royale.core.IRenderedObject;
     }
+       import org.apache.royale.events.Event;
 
        /**
         *  The TopAppBar class is a container component for different items 
like
diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/VSlider.as 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/VSlider.as
index 344ef3f..c760d26 100644
--- 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/VSlider.as
+++ 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/VSlider.as
@@ -21,7 +21,6 @@ package org.apache.royale.jewel
     COMPILE::JS
     {
        import org.apache.royale.core.WrappedHTMLElement;
-       import org.apache.royale.html.util.addElementToWrapper;
        import org.apache.royale.utils.transparentPixelElement;
     }
        
diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/View.as 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/View.as
index b4e146f..821078b 100644
--- a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/View.as
+++ b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/View.as
@@ -18,11 +18,11 @@
 
////////////////////////////////////////////////////////////////////////////////
 package org.apache.royale.jewel
 {
+    import org.apache.royale.core.IMXMLDocument;
+    import org.apache.royale.core.ValuesManager;
     import org.apache.royale.core.ViewBase;
-       import org.apache.royale.core.IMXMLDocument;
-       import org.apache.royale.core.ValuesManager;
-       import org.apache.royale.events.Event;
-       import org.apache.royale.utils.MXMLDataInterpreter;
+    import org.apache.royale.events.Event;
+    import org.apache.royale.utils.MXMLDataInterpreter;
        
        /**
         * The default property uses when additional MXML content appears 
within an element's
diff --git 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/WizardPage.as
 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/WizardPage.as
index d3c85bf..4770822 100644
--- 
a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/WizardPage.as
+++ 
b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/WizardPage.as
@@ -18,10 +18,6 @@
 
////////////////////////////////////////////////////////////////////////////////
 package org.apache.royale.jewel
 {
-       // COMPILE::JS
-       // {
-       // import org.apache.royale.utils.css.transitionEventAvailable;
-       // }
     import org.apache.royale.events.Event;
     import org.apache.royale.jewel.beads.models.WizardModel;
     import org.apache.royale.jewel.beads.models.WizardStep;

Reply via email to