You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2015/07/15 23:00:05 UTC

[06/17] git commit: [flex-asjs] [refs/heads/develop] - back to using . instead of _

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/88cb1f5b/frameworks/projects/HTML/js/src/org/apache/flex/html/List.js
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/List.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/List.js
index 980a889..436c78f 100644
--- a/frameworks/projects/HTML/js/src/org/apache/flex/html/List.js
+++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/List.js
@@ -12,33 +12,33 @@
  * limitations under the License.
  */
 
-goog.provide('org_apache_flex_html_List');
+goog.provide('org.apache.flex.html.List');
 
-goog.require('org_apache_flex_core_IDataProviderItemRendererMapper');
-goog.require('org_apache_flex_core_IFactory');
-goog.require('org_apache_flex_core_IItemRendererClassFactory');
-goog.require('org_apache_flex_core_IListPresentationModel');
-goog.require('org_apache_flex_core_ItemRendererClassFactory');
-goog.require('org_apache_flex_core_ListBase');
-goog.require('org_apache_flex_core_ValuesManager');
-goog.require('org_apache_flex_html_beads_ListView');
-goog.require('org_apache_flex_html_beads_TextItemRendererFactoryForArrayData');
-goog.require('org_apache_flex_html_beads_controllers_ListSingleSelectionMouseController');
-goog.require('org_apache_flex_html_beads_models_ArraySelectionModel');
-goog.require('org_apache_flex_html_beads_models_ListPresentationModel');
-goog.require('org_apache_flex_html_supportClasses_DataItemRenderer');
+goog.require('org.apache.flex.core.IDataProviderItemRendererMapper');
+goog.require('org.apache.flex.core.IFactory');
+goog.require('org.apache.flex.core.IItemRendererClassFactory');
+goog.require('org.apache.flex.core.IListPresentationModel');
+goog.require('org.apache.flex.core.ItemRendererClassFactory');
+goog.require('org.apache.flex.core.ListBase');
+goog.require('org.apache.flex.core.ValuesManager');
+goog.require('org.apache.flex.html.beads.ListView');
+goog.require('org.apache.flex.html.beads.TextItemRendererFactoryForArrayData');
+goog.require('org.apache.flex.html.beads.controllers.ListSingleSelectionMouseController');
+goog.require('org.apache.flex.html.beads.models.ArraySelectionModel');
+goog.require('org.apache.flex.html.beads.models.ListPresentationModel');
+goog.require('org.apache.flex.html.supportClasses.DataItemRenderer');
 
 
 
 /**
  * @constructor
- * @extends {org_apache_flex_core_ListBase}
+ * @extends {org.apache.flex.core.ListBase}
  */
-org_apache_flex_html_List = function() {
-  org_apache_flex_html_List.base(this, 'constructor');
+org.apache.flex.html.List = function() {
+  org.apache.flex.html.List.base(this, 'constructor');
 };
-goog.inherits(org_apache_flex_html_List,
-    org_apache_flex_core_ListBase);
+goog.inherits(org.apache.flex.html.List,
+    org.apache.flex.core.ListBase);
 
 
 /**
@@ -46,52 +46,52 @@ goog.inherits(org_apache_flex_html_List,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org_apache_flex_html_List.prototype.FLEXJS_CLASS_INFO =
+org.apache.flex.html.List.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'List',
-                qName: 'org_apache_flex_html_List' }] };
+                qName: 'org.apache.flex.html.List' }] };
 
 
-Object.defineProperties(org_apache_flex_html_List.prototype, {
+Object.defineProperties(org.apache.flex.html.List.prototype, {
     /** @export */
     itemRenderer: {
-        /** @this {org_apache_flex_html_List} */
+        /** @this {org.apache.flex.html.List} */
         get: function() {
             return this.itemRenderer_;
         },
-        /** @this {org_apache_flex_html_List} */
+        /** @this {org.apache.flex.html.List} */
         set: function(value) {
             this.itemRenderer_ = value;
         }
     },
     /** @export */
     labelField: {
-        /** @this {org_apache_flex_html_List} */
+        /** @this {org.apache.flex.html.List} */
         get: function() {
             return this.model.labelField;
         },
-        /** @this {org_apache_flex_html_List} */
+        /** @this {org.apache.flex.html.List} */
         set: function(value) {
             this.model.labelField = value;
         }
     },
     /** @export */
     rowHeight: {
-        /** @this {org_apache_flex_html_List} */
+        /** @this {org.apache.flex.html.List} */
         get: function() {
             return this.presentationModel.rowHeight;
         },
-        /** @this {org_apache_flex_html_List} */
+        /** @this {org.apache.flex.html.List} */
         set: function(value) {
             this.presentationModel.rowHeight = value;
         }
     },
     /** @export */
     presentationModel: {
-        /** @this {org_apache_flex_html_List} */
+        /** @this {org.apache.flex.html.List} */
         get: function() {
-            var presModel = this.getBeadByType(org_apache_flex_core_IListPresentationModel);
+            var presModel = this.getBeadByType(org.apache.flex.core.IListPresentationModel);
             if (presModel == null) {
-              presModel = new org_apache_flex_html_beads_models_ListPresentationModel();
+              presModel = new org.apache.flex.html.beads.models.ListPresentationModel();
               this.addBead(presModel);
             }
             return presModel;
@@ -103,9 +103,9 @@ Object.defineProperties(org_apache_flex_html_List.prototype, {
 /**
  * @override
  */
-org_apache_flex_html_List.prototype.createElement =
+org.apache.flex.html.List.prototype.createElement =
     function() {
-  org_apache_flex_html_List.base(this, 'createElement');
+  org.apache.flex.html.List.base(this, 'createElement');
   this.className = 'List';
 
   return this.element;
@@ -115,20 +115,20 @@ org_apache_flex_html_List.prototype.createElement =
 /**
  * @override
  */
-org_apache_flex_html_List.prototype.addedToParent =
+org.apache.flex.html.List.prototype.addedToParent =
     function() {
-  org_apache_flex_html_List.base(this, 'addedToParent');
+  org.apache.flex.html.List.base(this, 'addedToParent');
 
-  var dataFactory = this.getBeadByType(org_apache_flex_html_beads_DataItemRendererFactoryForArrayData);
+  var dataFactory = this.getBeadByType(org.apache.flex.html.beads.DataItemRendererFactoryForArrayData);
   if (dataFactory == null) {
-    var m1 = org_apache_flex_core_ValuesManager.valuesImpl.getValue(this, 'iDataProviderItemRendererMapper');
+    var m1 = org.apache.flex.core.ValuesManager.valuesImpl.getValue(this, 'iDataProviderItemRendererMapper');
     dataFactory = new m1();
     this.addBead(dataFactory);
   }
 
-  var itemRendererFactory = this.getBeadByType(org_apache_flex_core_IItemRendererClassFactory);
+  var itemRendererFactory = this.getBeadByType(org.apache.flex.core.IItemRendererClassFactory);
   if (itemRendererFactory == null) {
-    var m2 = org_apache_flex_core_ValuesManager.valuesImpl.getValue(this, 'iItemRendererClassFactory');
+    var m2 = org.apache.flex.core.ValuesManager.valuesImpl.getValue(this, 'iItemRendererClassFactory');
     itemRendererFactory = new m2();
     this.addBead(itemRendererFactory);
   }
@@ -140,10 +140,10 @@ org_apache_flex_html_List.prototype.addedToParent =
  * @return {Array.<Object>} An array of objects that make up the actual
  *                          list (most likely itemRenderers).
  */
-org_apache_flex_html_List.prototype.internalChildren =
+org.apache.flex.html.List.prototype.internalChildren =
     function() {
   var listView =
-      this.getBeadByType(org_apache_flex_html_beads_ListView);
+      this.getBeadByType(org.apache.flex.html.beads.ListView);
   var dg = listView.dataGroup;
   var items = null;
   if (dg.renderers) {
@@ -157,7 +157,7 @@ org_apache_flex_html_List.prototype.internalChildren =
  * @export
  * @param {Object} event The event that triggered the selection.
  */
-org_apache_flex_html_List.prototype.selectedHandler =
+org.apache.flex.html.List.prototype.selectedHandler =
     function(event) {
   var itemRenderer = event.currentTarget;
   if (this.renderers) {

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/88cb1f5b/frameworks/projects/HTML/js/src/org/apache/flex/html/MultilineLabel.js
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/MultilineLabel.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/MultilineLabel.js
index 9ddda2a..5e177ad 100644
--- a/frameworks/projects/HTML/js/src/org/apache/flex/html/MultilineLabel.js
+++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/MultilineLabel.js
@@ -12,25 +12,25 @@
  * limitations under the License.
  */
 
-goog.provide('org_apache_flex_html_MultilineLabel');
+goog.provide('org.apache.flex.html.MultilineLabel');
 
-goog.require('org_apache_flex_core_UIBase');
+goog.require('org.apache.flex.core.UIBase');
 
 
 
 /**
  * @constructor
- * @extends {org_apache_flex_core_UIBase}
+ * @extends {org.apache.flex.core.UIBase}
  */
-org_apache_flex_html_MultilineLabel = function() {
-  org_apache_flex_html_MultilineLabel.base(this, 'constructor');
+org.apache.flex.html.MultilineLabel = function() {
+  org.apache.flex.html.MultilineLabel.base(this, 'constructor');
 
   this.element = document.createElement('div');
   this.positioner = this.element;
   this.element.flexjs_wrapper = this;
 };
-goog.inherits(org_apache_flex_html_MultilineLabel,
-    org_apache_flex_core_UIBase);
+goog.inherits(org.apache.flex.html.MultilineLabel,
+    org.apache.flex.core.UIBase);
 
 
 /**
@@ -38,30 +38,30 @@ goog.inherits(org_apache_flex_html_MultilineLabel,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org_apache_flex_html_MultilineLabel.prototype.FLEXJS_CLASS_INFO =
+org.apache.flex.html.MultilineLabel.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'MultilineLabel',
-                qName: 'org_apache_flex_html_MultilineLabel' }] };
+                qName: 'org.apache.flex.html.MultilineLabel' }] };
 
 
-Object.defineProperties(org_apache_flex_html_MultilineLabel.prototype, {
+Object.defineProperties(org.apache.flex.html.MultilineLabel.prototype, {
     /** @export */
     text: {
-        /** @this {org_apache_flex_html_MultilineLabel} */
+        /** @this {org.apache.flex.html.MultilineLabel} */
         get: function() {
             return this.element.innerHTML;
         },
-        /** @this {org_apache_flex_html_MultilineLabel} */
+        /** @this {org.apache.flex.html.MultilineLabel} */
         set: function(value) {
             this.element.innerHTML = value;
         }
     },
     /** @export */
     html: {
-        /** @this {org_apache_flex_html_MultilineLabel} */
+        /** @this {org.apache.flex.html.MultilineLabel} */
         get: function() {
             return this.element.innerHTML;
         },
-        /** @this {org_apache_flex_html_MultilineLabel} */
+        /** @this {org.apache.flex.html.MultilineLabel} */
         set: function(value) {
             this.element.innerHTML = value;
         }

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/88cb1f5b/frameworks/projects/HTML/js/src/org/apache/flex/html/NumericStepper.js
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/NumericStepper.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/NumericStepper.js
index 604523c..1096bb8 100644
--- a/frameworks/projects/HTML/js/src/org/apache/flex/html/NumericStepper.js
+++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/NumericStepper.js
@@ -12,26 +12,26 @@
  * limitations under the License.
  */
 
-goog.provide('org_apache_flex_html_NumericStepper');
+goog.provide('org.apache.flex.html.NumericStepper');
 
-goog.require('org_apache_flex_core_UIBase');
-goog.require('org_apache_flex_html_Spinner');
-goog.require('org_apache_flex_html_TextInput');
-goog.require('org_apache_flex_html_beads_models_RangeModel');
+goog.require('org.apache.flex.core.UIBase');
+goog.require('org.apache.flex.html.Spinner');
+goog.require('org.apache.flex.html.TextInput');
+goog.require('org.apache.flex.html.beads.models.RangeModel');
 
 
 
 /**
  * @constructor
- * @extends {org_apache_flex_core_UIBase}
+ * @extends {org.apache.flex.core.UIBase}
  */
-org_apache_flex_html_NumericStepper = function() {
-  org_apache_flex_html_NumericStepper.base(this, 'constructor');
+org.apache.flex.html.NumericStepper = function() {
+  org.apache.flex.html.NumericStepper.base(this, 'constructor');
   this.model =
-      new org_apache_flex_html_beads_models_RangeModel();
+      new org.apache.flex.html.beads.models.RangeModel();
 };
-goog.inherits(org_apache_flex_html_NumericStepper,
-    org_apache_flex_core_UIBase);
+goog.inherits(org.apache.flex.html.NumericStepper,
+    org.apache.flex.core.UIBase);
 
 
 /**
@@ -39,25 +39,25 @@ goog.inherits(org_apache_flex_html_NumericStepper,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org_apache_flex_html_NumericStepper.prototype.FLEXJS_CLASS_INFO =
+org.apache.flex.html.NumericStepper.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'NumericStepper',
-                qName: 'org_apache_flex_html_NumericStepper' }] };
+                qName: 'org.apache.flex.html.NumericStepper' }] };
 
 
 /**
  * @override
  */
-org_apache_flex_html_NumericStepper.prototype.createElement =
+org.apache.flex.html.NumericStepper.prototype.createElement =
     function() {
   this.element = document.createElement('div');
   this.positioner = this.element;
 
-  this.input = new org_apache_flex_html_TextInput();
+  this.input = new org.apache.flex.html.TextInput();
   this.addElement(this.input);
   this.input.positioner.style.display = 'inline-block';
   this.input.positioner.style.width = '100px';
 
-  this.spinner = new org_apache_flex_html_Spinner();
+  this.spinner = new org.apache.flex.html.Spinner();
   this.spinner.positioner.style.display = 'inline-block';
   this.spinner.positioner.style.height = '24px';
   this.spinner.positioner.style.marginLeft = '-2px';
@@ -90,46 +90,46 @@ org_apache_flex_html_NumericStepper.prototype.createElement =
 /**
  * @param {Object} event The input event.
  */
-org_apache_flex_html_NumericStepper.prototype.spinnerChange =
+org.apache.flex.html.NumericStepper.prototype.spinnerChange =
     function(event)
     {
   var newValue = this.spinner.value;
   this.value = newValue;
   this.input.text = String(this.spinner.value);
-  this.dispatchEvent(new org_apache_flex_events_Event('valueChange'));
+  this.dispatchEvent(new org.apache.flex.events.Event('valueChange'));
 };
 
 
-Object.defineProperties(org_apache_flex_html_NumericStepper.prototype, {
+Object.defineProperties(org.apache.flex.html.NumericStepper.prototype, {
     /** @export */
     minimum: {
-        /** @this {org_apache_flex_html_NumericStepper} */
+        /** @this {org.apache.flex.html.NumericStepper} */
         get: function() {
             return this.model.minimum;
         },
-        /** @this {org_apache_flex_html_NumericStepper} */
+        /** @this {org.apache.flex.html.NumericStepper} */
         set: function(value) {
             this.model.minimum = value;
         }
     },
     /** @export */
     maximum: {
-        /** @this {org_apache_flex_html_NumericStepper} */
+        /** @this {org.apache.flex.html.NumericStepper} */
         get: function() {
             return this.model.maximum;
         },
-        /** @this {org_apache_flex_html_NumericStepper} */
+        /** @this {org.apache.flex.html.NumericStepper} */
         set: function(value) {
             this.model.maximum = value;
         }
     },
     /** @export */
     value: {
-        /** @this {org_apache_flex_html_NumericStepper} */
+        /** @this {org.apache.flex.html.NumericStepper} */
         get: function() {
             return this.model.value;
         },
-        /** @this {org_apache_flex_html_NumericStepper} */
+        /** @this {org.apache.flex.html.NumericStepper} */
         set: function(newValue) {
             this.model.value = newValue;
             this.spinner.value = newValue;
@@ -137,22 +137,22 @@ Object.defineProperties(org_apache_flex_html_NumericStepper.prototype, {
     },
     /** @export */
     snapInterval: {
-        /** @this {org_apache_flex_html_NumericStepper} */
+        /** @this {org.apache.flex.html.NumericStepper} */
         get: function() {
             return this.model.snapInterval;
         },
-        /** @this {org_apache_flex_html_NumericStepper} */
+        /** @this {org.apache.flex.html.NumericStepper} */
         set: function(value) {
             this.model.snapInterval = value;
         }
     },
     /** @export */
     stepSize: {
-        /** @this {org_apache_flex_html_NumericStepper} */
+        /** @this {org.apache.flex.html.NumericStepper} */
         get: function() {
             return this.model.stepSize;
         },
-        /** @this {org_apache_flex_html_NumericStepper} */
+        /** @this {org.apache.flex.html.NumericStepper} */
         set: function(value) {
             this.model.stepSize = value;
         }

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/88cb1f5b/frameworks/projects/HTML/js/src/org/apache/flex/html/Panel.js
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/Panel.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/Panel.js
index 5d3f72e..cb159c6 100644
--- a/frameworks/projects/HTML/js/src/org/apache/flex/html/Panel.js
+++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/Panel.js
@@ -12,25 +12,25 @@
  * limitations under the License.
  */
 
-goog.provide('org_apache_flex_html_Panel');
+goog.provide('org.apache.flex.html.Panel');
 
-goog.require('org_apache_flex_html_Container');
-goog.require('org_apache_flex_html_ControlBar');
-goog.require('org_apache_flex_html_TitleBar');
-goog.require('org_apache_flex_html_beads_PanelView');
-goog.require('org_apache_flex_html_beads_models_PanelModel');
+goog.require('org.apache.flex.html.Container');
+goog.require('org.apache.flex.html.ControlBar');
+goog.require('org.apache.flex.html.TitleBar');
+goog.require('org.apache.flex.html.beads.PanelView');
+goog.require('org.apache.flex.html.beads.models.PanelModel');
 
 
 
 /**
  * @constructor
- * @extends {org_apache_flex_html_Container}
+ * @extends {org.apache.flex.html.Container}
  */
-org_apache_flex_html_Panel = function() {
-  org_apache_flex_html_Panel.base(this, 'constructor');
+org.apache.flex.html.Panel = function() {
+  org.apache.flex.html.Panel.base(this, 'constructor');
 };
-goog.inherits(org_apache_flex_html_Panel,
-    org_apache_flex_html_Container);
+goog.inherits(org.apache.flex.html.Panel,
+    org.apache.flex.html.Container);
 
 
 /**
@@ -38,16 +38,16 @@ goog.inherits(org_apache_flex_html_Panel,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org_apache_flex_html_Panel.prototype.FLEXJS_CLASS_INFO =
+org.apache.flex.html.Panel.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'Panel',
-                qName: 'org_apache_flex_html_Panel' }] };
+                qName: 'org.apache.flex.html.Panel' }] };
 
 
 /**
  * @override
  * @param {Object} c Element being added.
  */
-org_apache_flex_html_Panel.prototype.addElement = function(c) {
+org.apache.flex.html.Panel.prototype.addElement = function(c) {
   if (c == this.titleBar) {
     this.element.insertBefore(this.titleBar.element, this.contentArea);
   }
@@ -66,7 +66,7 @@ org_apache_flex_html_Panel.prototype.addElement = function(c) {
  * @param {Object} c The child element.
  * @param {number} index The index.
  */
-org_apache_flex_html_Panel.prototype.addElementAt =
+org.apache.flex.html.Panel.prototype.addElementAt =
     function(c, index) {
   var children = this.internalChildren();
   if (index >= children.length)
@@ -85,7 +85,7 @@ org_apache_flex_html_Panel.prototype.addElementAt =
  * @param {Object} c The child element.
  * @return {number} The index in parent.
  */
-org_apache_flex_html_Panel.prototype.getElementIndex =
+org.apache.flex.html.Panel.prototype.getElementIndex =
     function(c) {
   var children = this.internalChildren();
   var n = children.length;
@@ -102,7 +102,7 @@ org_apache_flex_html_Panel.prototype.getElementIndex =
  * @override
  * @param {Object} c The child element.
  */
-org_apache_flex_html_Panel.prototype.removeElement =
+org.apache.flex.html.Panel.prototype.removeElement =
     function(c) {
   this.contentArea.removeChild(c.element);
 };
@@ -111,7 +111,7 @@ org_apache_flex_html_Panel.prototype.removeElement =
 /**
  * @override
  */
-org_apache_flex_html_Panel.prototype.createElement =
+org.apache.flex.html.Panel.prototype.createElement =
     function() {
 
   this.element = document.createElement('div');
@@ -132,9 +132,9 @@ org_apache_flex_html_Panel.prototype.createElement =
 /**
  * @override
  */
-org_apache_flex_html_Panel.prototype.addedToParent =
+org.apache.flex.html.Panel.prototype.addedToParent =
     function() {
-  org_apache_flex_html_Panel.base(this, 'addedToParent');
+  org.apache.flex.html.Panel.base(this, 'addedToParent');
 };
 
 
@@ -142,42 +142,42 @@ org_apache_flex_html_Panel.prototype.addedToParent =
  * @override
  * @return {Array} the HTML DOM element children.
  */
-org_apache_flex_html_Panel.prototype.internalChildren =
+org.apache.flex.html.Panel.prototype.internalChildren =
     function(c, index) {
   return this.contentArea.children;
 };
 
 
-Object.defineProperties(org_apache_flex_html_Panel.prototype, {
+Object.defineProperties(org.apache.flex.html.Panel.prototype, {
     /** @export */
     showCloseButton: {
-        /** @this {org_apache_flex_html_Panel} */
+        /** @this {org.apache.flex.html.Panel} */
         get: function() {
             return this.model.showCloseButton;
         },
-        /** @this {org_apache_flex_html_Panel} */
+        /** @this {org.apache.flex.html.Panel} */
         set: function(value) {
             this.model.showCloseButton = value;
         }
     },
     /** @export */
     title: {
-        /** @this {org_apache_flex_html_Panel} */
+        /** @this {org.apache.flex.html.Panel} */
         get: function() {
             return this.model.title;
         },
-        /** @this {org_apache_flex_html_Panel} */
+        /** @this {org.apache.flex.html.Panel} */
         set: function(value) {
             this.model.title = value;
         }
     },
     /** @export */
     controlBar: {
-        /** @this {org_apache_flex_html_Panel} */
+        /** @this {org.apache.flex.html.Panel} */
         get: function() {
             return this.controlBarChildren;
         },
-        /** @this {org_apache_flex_html_Panel} */
+        /** @this {org.apache.flex.html.Panel} */
         set: function(value) {
             this.controlBarChildren = value;
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/88cb1f5b/frameworks/projects/HTML/js/src/org/apache/flex/html/RadioButton.js
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/RadioButton.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/RadioButton.js
index eb2f66b..5a108fb 100644
--- a/frameworks/projects/HTML/js/src/org/apache/flex/html/RadioButton.js
+++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/RadioButton.js
@@ -12,21 +12,21 @@
  * limitations under the License.
  */
 
-goog.provide('org_apache_flex_html_RadioButton');
+goog.provide('org.apache.flex.html.RadioButton');
 
-goog.require('org_apache_flex_core_UIBase');
+goog.require('org.apache.flex.core.UIBase');
 
 
 
 /**
  * @constructor
- * @extends {org_apache_flex_core_UIBase}
+ * @extends {org.apache.flex.core.UIBase}
  */
-org_apache_flex_html_RadioButton = function() {
-  org_apache_flex_html_RadioButton.base(this, 'constructor');
+org.apache.flex.html.RadioButton = function() {
+  org.apache.flex.html.RadioButton.base(this, 'constructor');
 };
-goog.inherits(org_apache_flex_html_RadioButton,
-    org_apache_flex_core_UIBase);
+goog.inherits(org.apache.flex.html.RadioButton,
+    org.apache.flex.core.UIBase);
 
 
 /**
@@ -34,26 +34,26 @@ goog.inherits(org_apache_flex_html_RadioButton,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org_apache_flex_html_RadioButton.prototype.FLEXJS_CLASS_INFO =
+org.apache.flex.html.RadioButton.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'RadioButton',
-                qName: 'org_apache_flex_html_RadioButton'}] };
+                qName: 'org.apache.flex.html.RadioButton'}] };
 
 
 /**
  * Provides unique name
  */
-org_apache_flex_html_RadioButton.radioCounter = 0;
+org.apache.flex.html.RadioButton.radioCounter = 0;
 
 
 /**
  * @override
  */
-org_apache_flex_html_RadioButton.prototype.createElement =
+org.apache.flex.html.RadioButton.prototype.createElement =
     function() {
 
   this.input = document.createElement('input');
   this.input.type = 'radio';
-  this.input.id = '_radio_' + org_apache_flex_html_RadioButton.radioCounter++;
+  this.input.id = '_radio_' + org.apache.flex.html.RadioButton.radioCounter++;
 
   this.textNode = document.createTextNode('radio button');
 
@@ -74,7 +74,7 @@ org_apache_flex_html_RadioButton.prototype.createElement =
 /**
  * @export
  */
-org_apache_flex_html_RadioButton.prototype.initModel =
+org.apache.flex.html.RadioButton.prototype.initModel =
     function() {
 };
 
@@ -82,68 +82,68 @@ org_apache_flex_html_RadioButton.prototype.initModel =
 /**
  * @export
  */
-org_apache_flex_html_RadioButton.prototype.initSkin =
+org.apache.flex.html.RadioButton.prototype.initSkin =
     function() {
 };
 
 
-Object.defineProperties(org_apache_flex_html_RadioButton.prototype, {
+Object.defineProperties(org.apache.flex.html.RadioButton.prototype, {
     /** @export */
     id: {
-        /** @this {org_apache_flex_html_RadioButton} */
+        /** @this {org.apache.flex.html.RadioButton} */
         set: function(value) {
-            org_apache_flex_utils_Language.superSetter(org_apache_flex_html_RadioButton, this, 'id', value);
+            org.apache.flex.utils.Language.superSetter(org.apache.flex.html.RadioButton, this, 'id', value);
             this.labelFor.id = value;
             this.input.id = value;
         }
     },
     /** @export */
     groupName: {
-        /** @this {org_apache_flex_html_RadioButton} */
+        /** @this {org.apache.flex.html.RadioButton} */
         get: function() {
             return this.input.name;
         },
-        /** @this {org_apache_flex_html_RadioButton} */
+        /** @this {org.apache.flex.html.RadioButton} */
         set: function(value) {
             this.input.name = value;
         }
     },
     /** @export */
     text: {
-        /** @this {org_apache_flex_html_RadioButton} */
+        /** @this {org.apache.flex.html.RadioButton} */
         get: function() {
             return this.textNode.nodeValue;
         },
-        /** @this {org_apache_flex_html_RadioButton} */
+        /** @this {org.apache.flex.html.RadioButton} */
         set: function(value) {
             this.textNode.nodeValue = value;
         }
     },
     /** @export */
     selected: {
-        /** @this {org_apache_flex_html_RadioButton} */
+        /** @this {org.apache.flex.html.RadioButton} */
         get: function() {
             return this.input.checked;
         },
-        /** @this {org_apache_flex_html_RadioButton} */
+        /** @this {org.apache.flex.html.RadioButton} */
         set: function(value) {
             this.input.checked = value;
         }
     },
     /** @export */
     value: {
-        /** @this {org_apache_flex_html_RadioButton} */
+        /** @this {org.apache.flex.html.RadioButton} */
         get: function() {
             return this.input.value;
         },
-        /** @this {org_apache_flex_html_RadioButton} */
+        /** @this {org.apache.flex.html.RadioButton} */
         set: function(value) {
             this.input.value = value;
         }
     },
     /** @export */
     selectedValue: {
-        /** @this {org_apache_flex_html_RadioButton} */
+        /** @this {org.apache.flex.html.RadioButton} */
         get: function() {
             var buttons, groupName, i, n;
 
@@ -158,7 +158,7 @@ Object.defineProperties(org_apache_flex_html_RadioButton.prototype, {
             }
             return null;
         },
-        /** @this {org_apache_flex_html_RadioButton} */
+        /** @this {org.apache.flex.html.RadioButton} */
         set: function(value) {
             var buttons, groupName, i, n;
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/88cb1f5b/frameworks/projects/HTML/js/src/org/apache/flex/html/SimpleAlert.js
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/SimpleAlert.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/SimpleAlert.js
index 0937804..833769b 100644
--- a/frameworks/projects/HTML/js/src/org/apache/flex/html/SimpleAlert.js
+++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/SimpleAlert.js
@@ -12,22 +12,22 @@
  * limitations under the License.
  */
 
-goog.provide('org_apache_flex_html_SimpleAlert');
+goog.provide('org.apache.flex.html.SimpleAlert');
 
-goog.require('org_apache_flex_core_UIBase');
+goog.require('org.apache.flex.core.UIBase');
 
 
 
 /**
  * @constructor
- * @extends {org_apache_flex_core_UIBase}
+ * @extends {org.apache.flex.core.UIBase}
  */
-org_apache_flex_html_SimpleAlert = function() {
-  org_apache_flex_html_SimpleAlert.base(this, 'constructor');
+org.apache.flex.html.SimpleAlert = function() {
+  org.apache.flex.html.SimpleAlert.base(this, 'constructor');
 
 };
-goog.inherits(org_apache_flex_html_SimpleAlert,
-    org_apache_flex_core_UIBase);
+goog.inherits(org.apache.flex.html.SimpleAlert,
+    org.apache.flex.core.UIBase);
 
 
 /**
@@ -35,16 +35,16 @@ goog.inherits(org_apache_flex_html_SimpleAlert,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org_apache_flex_html_SimpleAlert.prototype.FLEXJS_CLASS_INFO =
+org.apache.flex.html.SimpleAlert.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'SimpleAlert',
-                qName: 'org_apache_flex_html_SimpleAlert'}] };
+                qName: 'org.apache.flex.html.SimpleAlert'}] };
 
 
 /**
  * @param {string} message The message to display in the alert.
  * @param {Object} host The host that should display the alert.
  */
-org_apache_flex_html_SimpleAlert.show =
+org.apache.flex.html.SimpleAlert.show =
     function(message, host) {
 
   alert(message);

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/88cb1f5b/frameworks/projects/HTML/js/src/org/apache/flex/html/SimpleList.js
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/SimpleList.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/SimpleList.js
index 4dc1dc2..57247b0 100644
--- a/frameworks/projects/HTML/js/src/org/apache/flex/html/SimpleList.js
+++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/SimpleList.js
@@ -12,23 +12,23 @@
  * limitations under the License.
  */
 
-goog.provide('org_apache_flex_html_SimpleList');
+goog.provide('org.apache.flex.html.SimpleList');
 
-goog.require('org_apache_flex_core_ListBase');
-goog.require('org_apache_flex_html_beads_models_ArraySelectionModel');
+goog.require('org.apache.flex.core.ListBase');
+goog.require('org.apache.flex.html.beads.models.ArraySelectionModel');
 
 
 
 /**
  * @constructor
- * @extends {org_apache_flex_core_ListBase}
+ * @extends {org.apache.flex.core.ListBase}
  */
-org_apache_flex_html_SimpleList = function() {
-  org_apache_flex_html_SimpleList.base(this, 'constructor');
-  this.model = new org_apache_flex_html_beads.models.ArraySelectionModel();
+org.apache.flex.html.SimpleList = function() {
+  org.apache.flex.html.SimpleList.base(this, 'constructor');
+  this.model = new org.apache.flex.html.beads.models.ArraySelectionModel();
 };
-goog.inherits(org_apache_flex_html_SimpleList,
-    org_apache_flex_core_ListBase);
+goog.inherits(org.apache.flex.html.SimpleList,
+    org.apache.flex.core.ListBase);
 
 
 /**
@@ -36,15 +36,15 @@ goog.inherits(org_apache_flex_html_SimpleList,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org_apache_flex_html_SimpleList.prototype.FLEXJS_CLASS_INFO =
+org.apache.flex.html.SimpleList.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'SimpleList',
-                qName: 'org_apache_flex_html_SimpleList'}] };
+                qName: 'org.apache.flex.html.SimpleList'}] };
 
 
 /**
  * @override
  */
-org_apache_flex_html_SimpleList.prototype.
+org.apache.flex.html.SimpleList.prototype.
     createElement = function() {
   this.element = document.createElement('select');
   this.element.size = 5;
@@ -57,14 +57,14 @@ org_apache_flex_html_SimpleList.prototype.
 };
 
 
-Object.defineProperties(org_apache_flex_html_SimpleList.prototype, {
+Object.defineProperties(org.apache.flex.html.SimpleList.prototype, {
     /** @export */
     dataProvider: {
-        /** @this {org_apache_flex_html_SimpleList} */
+        /** @this {org.apache.flex.html.SimpleList} */
         get: function() {
             return this.model.dataProvider;
         },
-        /** @this {org_apache_flex_html_SimpleList} */
+        /** @this {org.apache.flex.html.SimpleList} */
         set: function(value) {
             var dp, i, n, opt;
 
@@ -86,22 +86,22 @@ Object.defineProperties(org_apache_flex_html_SimpleList.prototype, {
     },
     /** @export */
     selectedIndex: {
-        /** @this {org_apache_flex_html_SimpleList} */
+        /** @this {org.apache.flex.html.SimpleList} */
         get: function() {
             return this.model.selectedIndex;
         },
-        /** @this {org_apache_flex_html_SimpleList} */
+        /** @this {org.apache.flex.html.SimpleList} */
         set: function(value) {
             this.model.selectedIndex = value;
         }
     },
     /** @export */
     selectedItem: {
-        /** @this {org_apache_flex_html_SimpleList} */
+        /** @this {org.apache.flex.html.SimpleList} */
         get: function() {
             return this.model.selectedItem;
         },
-        /** @this {org_apache_flex_html_SimpleList} */
+        /** @this {org.apache.flex.html.SimpleList} */
         set: function(value) {
             this.model.selectedItem = value;
         }

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/88cb1f5b/frameworks/projects/HTML/js/src/org/apache/flex/html/Slider.js
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/Slider.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/Slider.js
index 519e656..93da1bd 100644
--- a/frameworks/projects/HTML/js/src/org/apache/flex/html/Slider.js
+++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/Slider.js
@@ -12,27 +12,27 @@
  * limitations under the License.
  */
 
-goog.provide('org_apache_flex_html_Slider');
+goog.provide('org.apache.flex.html.Slider');
 
-goog.require('org_apache_flex_core_UIBase');
-goog.require('org_apache_flex_html_beads_SliderThumbView');
-goog.require('org_apache_flex_html_beads_SliderTrackView');
-goog.require('org_apache_flex_html_beads_controllers_SliderMouseController');
-goog.require('org_apache_flex_html_beads_models_RangeModel');
+goog.require('org.apache.flex.core.UIBase');
+goog.require('org.apache.flex.html.beads.SliderThumbView');
+goog.require('org.apache.flex.html.beads.SliderTrackView');
+goog.require('org.apache.flex.html.beads.controllers.SliderMouseController');
+goog.require('org.apache.flex.html.beads.models.RangeModel');
 
 
 
 /**
  * @constructor
- * @extends {org_apache_flex_core_UIBase}
+ * @extends {org.apache.flex.core.UIBase}
  */
-org_apache_flex_html_Slider = function() {
+org.apache.flex.html.Slider = function() {
   this.model =
-      new org_apache_flex_html_beads_models_RangeModel();
-  org_apache_flex_html_Slider.base(this, 'constructor');
+      new org.apache.flex.html.beads.models.RangeModel();
+  org.apache.flex.html.Slider.base(this, 'constructor');
 };
-goog.inherits(org_apache_flex_html_Slider,
-    org_apache_flex_core_UIBase);
+goog.inherits(org.apache.flex.html.Slider,
+    org.apache.flex.core.UIBase);
 
 
 /**
@@ -40,28 +40,28 @@ goog.inherits(org_apache_flex_html_Slider,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org_apache_flex_html_Slider.prototype.FLEXJS_CLASS_INFO =
+org.apache.flex.html.Slider.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'Slider',
-                qName: 'org_apache_flex_html_Slider'}] };
+                qName: 'org.apache.flex.html.Slider'}] };
 
 
 /**
  * @override
  */
-org_apache_flex_html_Slider.prototype.createElement =
+org.apache.flex.html.Slider.prototype.createElement =
     function() {
 
   this.element = document.createElement('div');
   this.element.style.width = '200px';
   this.element.style.height = '30px';
 
-  this.track = new org_apache_flex_html_beads_SliderTrackView();
+  this.track = new org.apache.flex.html.beads.SliderTrackView();
   this.addBead(this.track);
 
-  this.thumb = new org_apache_flex_html_beads_SliderThumbView();
+  this.thumb = new org.apache.flex.html.beads.SliderThumbView();
   this.addBead(this.thumb);
 
-  this.controller = new org_apache_flex_html_beads_controllers_SliderMouseController();
+  this.controller = new org.apache.flex.html.beads.controllers.SliderMouseController();
   this.addBead(this.controller);
 
   this.positioner = this.element;
@@ -73,14 +73,14 @@ org_apache_flex_html_Slider.prototype.createElement =
 };
 
 
-Object.defineProperties(org_apache_flex_html_Slider.prototype, {
+Object.defineProperties(org.apache.flex.html.Slider.prototype, {
     /** @export */
     value: {
-        /** @this {org_apache_flex_html_Slider} */
+        /** @this {org.apache.flex.html.Slider} */
         get: function() {
             return this.model.value;
         },
-        /** @this {org_apache_flex_html_Slider} */
+        /** @this {org.apache.flex.html.Slider} */
         set: function(newValue) {
             this.model.value = newValue;
             this.setThumbFromValue(this.model.value);
@@ -88,44 +88,44 @@ Object.defineProperties(org_apache_flex_html_Slider.prototype, {
     },
     /** @export */
     minimum: {
-        /** @this {org_apache_flex_html_Slider} */
+        /** @this {org.apache.flex.html.Slider} */
         get: function() {
             return this.model.minimum;
         },
-        /** @this {org_apache_flex_html_Slider} */
+        /** @this {org.apache.flex.html.Slider} */
         set: function(value) {
             this.model.minimum = value;
         }
     },
     /** @export */
     maximum: {
-        /** @this {org_apache_flex_html_Slider} */
+        /** @this {org.apache.flex.html.Slider} */
         get: function() {
             return this.model.maximum;
         },
-        /** @this {org_apache_flex_html_Slider} */
+        /** @this {org.apache.flex.html.Slider} */
         set: function(value) {
             this.model.maximum = value;
         }
     },
     /** @export */
     snapInterval: {
-        /** @this {org_apache_flex_html_Slider} */
+        /** @this {org.apache.flex.html.Slider} */
         get: function() {
             return this.model.snapInterval;
         },
-        /** @this {org_apache_flex_html_Slider} */
+        /** @this {org.apache.flex.html.Slider} */
         set: function(value) {
             this.model.snapInterval = value;
         }
     },
     /** @export */
     stepSize: {
-        /** @this {org_apache_flex_html_Slider} */
+        /** @this {org.apache.flex.html.Slider} */
         get: function() {
             return this.model.stepSize;
         },
-        /** @this {org_apache_flex_html_Slider} */
+        /** @this {org.apache.flex.html.Slider} */
         set: function(value) {
             this.model.stepSize = value;
         }
@@ -137,7 +137,7 @@ Object.defineProperties(org_apache_flex_html_Slider.prototype, {
  * @param {Object} value The current value.
  * @return {number} Calculates the new value based snapInterval and stepSize.
  */
-org_apache_flex_html_Slider.prototype.snap = function(value)
+org.apache.flex.html.Slider.prototype.snap = function(value)
     {
   var si = this.snapInterval;
   var n = Math.round((value - this.minimum) / si) *
@@ -158,7 +158,7 @@ org_apache_flex_html_Slider.prototype.snap = function(value)
  * @param {number} value The value used to calculate new position of the thumb.
  * @return {void} Moves the thumb to the corresponding position.
  */
-org_apache_flex_html_Slider.prototype.setThumbFromValue =
+org.apache.flex.html.Slider.prototype.setThumbFromValue =
     function(value)
     {
   var min = this.model.minimum;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/88cb1f5b/frameworks/projects/HTML/js/src/org/apache/flex/html/Spacer.js
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/Spacer.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/Spacer.js
index c05f1d8..2024bd4 100644
--- a/frameworks/projects/HTML/js/src/org/apache/flex/html/Spacer.js
+++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/Spacer.js
@@ -12,25 +12,25 @@
  * limitations under the License.
  */
 
-goog.provide('org_apache_flex_html_Spacer');
+goog.provide('org.apache.flex.html.Spacer');
 
-goog.require('org_apache_flex_core_UIBase');
+goog.require('org.apache.flex.core.UIBase');
 
 
 
 /**
  * @constructor
- * @extends {org_apache_flex_core_UIBase}
+ * @extends {org.apache.flex.core.UIBase}
  */
-org_apache_flex_html_Spacer = function() {
-  org_apache_flex_html_Spacer.base(this, 'constructor');
+org.apache.flex.html.Spacer = function() {
+  org.apache.flex.html.Spacer.base(this, 'constructor');
 
   this.element = document.createElement('div');
   this.positioner = this.element;
   this.element.flexjs_wrapper = this;
 };
-goog.inherits(org_apache_flex_html_Spacer,
-    org_apache_flex_core_UIBase);
+goog.inherits(org.apache.flex.html.Spacer,
+    org.apache.flex.core.UIBase);
 
 
 /**
@@ -38,7 +38,7 @@ goog.inherits(org_apache_flex_html_Spacer,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org_apache_flex_html_Spacer.prototype.FLEXJS_CLASS_INFO =
+org.apache.flex.html.Spacer.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'Spacer',
-                qName: 'org_apache_flex_html_Spacer' }] };
+                qName: 'org.apache.flex.html.Spacer' }] };
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/88cb1f5b/frameworks/projects/HTML/js/src/org/apache/flex/html/Spinner.js
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/Spinner.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/Spinner.js
index f84cc3c..a8df135 100644
--- a/frameworks/projects/HTML/js/src/org/apache/flex/html/Spinner.js
+++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/Spinner.js
@@ -12,20 +12,20 @@
  * limitations under the License.
  */
 
-goog.provide('org_apache_flex_html_Spinner');
+goog.provide('org.apache.flex.html.Spinner');
 
-goog.require('org_apache_flex_core_UIBase');
-goog.require('org_apache_flex_html_TextButton');
-goog.require('org_apache_flex_html_beads_controllers_SpinnerMouseController');
+goog.require('org.apache.flex.core.UIBase');
+goog.require('org.apache.flex.html.TextButton');
+goog.require('org.apache.flex.html.beads.controllers.SpinnerMouseController');
 
 
 
 /**
  * @constructor
- * @extends {org_apache_flex_core_UIBase}
+ * @extends {org.apache.flex.core.UIBase}
  */
-org_apache_flex_html_Spinner = function() {
-  org_apache_flex_html_Spinner.base(this, 'constructor');
+org.apache.flex.html.Spinner = function() {
+  org.apache.flex.html.Spinner.base(this, 'constructor');
 
   this.minimum_ = 0;
   this.maximum_ = 100;
@@ -33,8 +33,8 @@ org_apache_flex_html_Spinner = function() {
   this.stepSize_ = 1;
   this.snapInterval_ = 1;
 };
-goog.inherits(org_apache_flex_html_Spinner,
-    org_apache_flex_core_UIBase);
+goog.inherits(org.apache.flex.html.Spinner,
+    org.apache.flex.core.UIBase);
 
 
 /**
@@ -42,30 +42,30 @@ goog.inherits(org_apache_flex_html_Spinner,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org_apache_flex_html_Spinner.prototype.FLEXJS_CLASS_INFO =
+org.apache.flex.html.Spinner.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'Spinner',
-                qName: 'org_apache_flex_html_Spinner'}] };
+                qName: 'org.apache.flex.html.Spinner'}] };
 
 
 /**
  * @override
  */
-org_apache_flex_html_Spinner.prototype.createElement =
+org.apache.flex.html.Spinner.prototype.createElement =
     function() {
   this.element = document.createElement('div');
   this.positioner = this.element;
 
   this.element.style.verticalAlign = 'middle';
 
-  this.incrementButton = new org_apache_flex_html_TextButton();
+  this.incrementButton = new org.apache.flex.html.TextButton();
   this.incrementButton.text = '\u25B2';
   this.addElement(this.incrementButton);
 
-  this.decrementButton = new org_apache_flex_html_TextButton();
+  this.decrementButton = new org.apache.flex.html.TextButton();
   this.decrementButton.text = '\u25BC';
   this.addElement(this.decrementButton);
 
-  this.controller = new org_apache_flex_html_beads_controllers_SpinnerMouseController();
+  this.controller = new org.apache.flex.html.beads.controllers.SpinnerMouseController();
   this.addBead(this.controller);
 
   this.element.flexjs_wrapper = this;
@@ -74,14 +74,14 @@ org_apache_flex_html_Spinner.prototype.createElement =
 };
 
 
-Object.defineProperties(org_apache_flex_html_Spinner.prototype, {
+Object.defineProperties(org.apache.flex.html.Spinner.prototype, {
     /** @export */
     minimum: {
-        /** @this {org_apache_flex_html_Spinner} */
+        /** @this {org.apache.flex.html.Spinner} */
         get: function() {
             return this.minimum_;
         },
-        /** @this {org_apache_flex_html_Spinner} */
+        /** @this {org.apache.flex.html.Spinner} */
         set: function(value) {
             if (value != this.minimum_) {
               this.minimum_ = value;
@@ -91,11 +91,11 @@ Object.defineProperties(org_apache_flex_html_Spinner.prototype, {
     },
     /** @export */
     maximum: {
-        /** @this {org_apache_flex_html_Spinner} */
+        /** @this {org.apache.flex.html.Spinner} */
         get: function() {
             return this.maximum_;
         },
-        /** @this {org_apache_flex_html_Spinner} */
+        /** @this {org.apache.flex.html.Spinner} */
         set: function(value) {
             if (value != this.maximum_) {
               this.maximum_ = value;
@@ -105,11 +105,11 @@ Object.defineProperties(org_apache_flex_html_Spinner.prototype, {
     },
     /** @export */
     snapInterval: {
-        /** @this {org_apache_flex_html_Spinner} */
+        /** @this {org.apache.flex.html.Spinner} */
         get: function() {
             return this.snapInterval_;
         },
-        /** @this {org_apache_flex_html_Spinner} */
+        /** @this {org.apache.flex.html.Spinner} */
         set: function(value) {
             if (value != this.snapInterval_) {
               this.snapInterval_ = value;
@@ -119,11 +119,11 @@ Object.defineProperties(org_apache_flex_html_Spinner.prototype, {
     },
     /** @export */
     stepSize: {
-        /** @this {org_apache_flex_html_Spinner} */
+        /** @this {org.apache.flex.html.Spinner} */
         get: function() {
             return this.stepSize_;
         },
-        /** @this {org_apache_flex_html_Spinner} */
+        /** @this {org.apache.flex.html.Spinner} */
         set: function(value) {
             if (value != this.stepSize_) {
               this.stepSize_ = value;
@@ -133,11 +133,11 @@ Object.defineProperties(org_apache_flex_html_Spinner.prototype, {
     },
     /** @export */
     value: {
-        /** @this {org_apache_flex_html_Spinner} */
+        /** @this {org.apache.flex.html.Spinner} */
         get: function() {
             return this.value_;
         },
-        /** @this {org_apache_flex_html_Spinner} */
+        /** @this {org.apache.flex.html.Spinner} */
         set: function(value) {
             if (value != this.value_) {
               this.value_ = value;
@@ -153,7 +153,7 @@ Object.defineProperties(org_apache_flex_html_Spinner.prototype, {
  * @return {number} The new value based on snapInterval
  * and stepSize.
  */
-org_apache_flex_html_Spinner.prototype.snap = function(value)
+org.apache.flex.html.Spinner.prototype.snap = function(value)
     {
   var si = this.snapInterval_;
   var n = Math.round((value - this.minimum_) / si) * si + this.minimum_;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/88cb1f5b/frameworks/projects/HTML/js/src/org/apache/flex/html/TextArea.js
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/TextArea.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/TextArea.js
index a1a53d7..128c9b8 100644
--- a/frameworks/projects/HTML/js/src/org/apache/flex/html/TextArea.js
+++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/TextArea.js
@@ -12,21 +12,21 @@
  * limitations under the License.
  */
 
-goog.provide('org_apache_flex_html_TextArea');
+goog.provide('org.apache.flex.html.TextArea');
 
-goog.require('org_apache_flex_core_UIBase');
+goog.require('org.apache.flex.core.UIBase');
 
 
 
 /**
  * @constructor
- * @extends {org_apache_flex_core_UIBase}
+ * @extends {org.apache.flex.core.UIBase}
  */
-org_apache_flex_html_TextArea = function() {
-  org_apache_flex_html_TextArea.base(this, 'constructor');
+org.apache.flex.html.TextArea = function() {
+  org.apache.flex.html.TextArea.base(this, 'constructor');
 };
-goog.inherits(org_apache_flex_html_TextArea,
-    org_apache_flex_core_UIBase);
+goog.inherits(org.apache.flex.html.TextArea,
+    org.apache.flex.core.UIBase);
 
 
 /**
@@ -34,15 +34,15 @@ goog.inherits(org_apache_flex_html_TextArea,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org_apache_flex_html_TextArea.prototype.FLEXJS_CLASS_INFO =
+org.apache.flex.html.TextArea.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'TextArea',
-                qName: 'org_apache_flex_html_TextArea'}] };
+                qName: 'org.apache.flex.html.TextArea'}] };
 
 
 /**
  * @override
  */
-org_apache_flex_html_TextArea.prototype.createElement =
+org.apache.flex.html.TextArea.prototype.createElement =
     function() {
 
   this.element = document.createElement('textarea');
@@ -53,14 +53,14 @@ org_apache_flex_html_TextArea.prototype.createElement =
 };
 
 
-Object.defineProperties(org_apache_flex_html_TextArea.prototype, {
+Object.defineProperties(org.apache.flex.html.TextArea.prototype, {
     /** @export */
     text: {
-        /** @this {org_apache_flex_html_TextArea} */
+        /** @this {org.apache.flex.html.TextArea} */
         get: function() {
             return this.element.value;
         },
-        /** @this {org_apache_flex_html_TextArea} */
+        /** @this {org.apache.flex.html.TextArea} */
         set: function(value) {
             this.element.value = value;
         }

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/88cb1f5b/frameworks/projects/HTML/js/src/org/apache/flex/html/TextButton.js
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/TextButton.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/TextButton.js
index afc814d..6d52448 100644
--- a/frameworks/projects/HTML/js/src/org/apache/flex/html/TextButton.js
+++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/TextButton.js
@@ -12,21 +12,21 @@
  * limitations under the License.
  */
 
-goog.provide('org_apache_flex_html_TextButton');
+goog.provide('org.apache.flex.html.TextButton');
 
-goog.require('org_apache_flex_html_Button');
+goog.require('org.apache.flex.html.Button');
 
 
 
 /**
  * @constructor
- * @extends {org_apache_flex_html_Button}
+ * @extends {org.apache.flex.html.Button}
  */
-org_apache_flex_html_TextButton = function() {
-  org_apache_flex_html_TextButton.base(this, 'constructor');
+org.apache.flex.html.TextButton = function() {
+  org.apache.flex.html.TextButton.base(this, 'constructor');
 };
-goog.inherits(org_apache_flex_html_TextButton,
-    org_apache_flex_html_Button);
+goog.inherits(org.apache.flex.html.TextButton,
+    org.apache.flex.html.Button);
 
 
 /**
@@ -34,19 +34,19 @@ goog.inherits(org_apache_flex_html_TextButton,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org_apache_flex_html_TextButton.prototype.FLEXJS_CLASS_INFO =
+org.apache.flex.html.TextButton.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'TextButton',
-                qName: 'org_apache_flex_html_TextButton'}] };
+                qName: 'org.apache.flex.html.TextButton'}] };
 
 
-Object.defineProperties(org_apache_flex_html_TextButton.prototype, {
+Object.defineProperties(org.apache.flex.html.TextButton.prototype, {
     /** @export */
     text: {
-        /** @this {org_apache_flex_html_TextButton} */
+        /** @this {org.apache.flex.html.TextButton} */
         get: function() {
             return this.element.innerHTML;
         },
-        /** @this {org_apache_flex_html_TextButton} */
+        /** @this {org.apache.flex.html.TextButton} */
         set: function(value) {
             this.element.innerHTML = value;
         }

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/88cb1f5b/frameworks/projects/HTML/js/src/org/apache/flex/html/TextInput.js
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/TextInput.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/TextInput.js
index 574329b..a763823 100644
--- a/frameworks/projects/HTML/js/src/org/apache/flex/html/TextInput.js
+++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/TextInput.js
@@ -12,22 +12,22 @@
  * limitations under the License.
  */
 
-goog.provide('org_apache_flex_html_TextInput');
+goog.provide('org.apache.flex.html.TextInput');
 
-goog.require('org_apache_flex_core_UIBase');
-goog.require('org_apache_flex_events_Event');
+goog.require('org.apache.flex.core.UIBase');
+goog.require('org.apache.flex.events.Event');
 
 
 
 /**
  * @constructor
- * @extends {org_apache_flex_core_UIBase}
+ * @extends {org.apache.flex.core.UIBase}
  */
-org_apache_flex_html_TextInput = function() {
-  org_apache_flex_html_TextInput.base(this, 'constructor');
+org.apache.flex.html.TextInput = function() {
+  org.apache.flex.html.TextInput.base(this, 'constructor');
 };
-goog.inherits(org_apache_flex_html_TextInput,
-    org_apache_flex_core_UIBase);
+goog.inherits(org.apache.flex.html.TextInput,
+    org.apache.flex.core.UIBase);
 
 
 /**
@@ -35,15 +35,15 @@ goog.inherits(org_apache_flex_html_TextInput,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org_apache_flex_html_TextInput.prototype.FLEXJS_CLASS_INFO =
+org.apache.flex.html.TextInput.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'TextInput',
-                qName: 'org_apache_flex_html_TextInput'}] };
+                qName: 'org.apache.flex.html.TextInput'}] };
 
 
 /**
  * @override
  */
-org_apache_flex_html_TextInput.prototype.createElement = function() {
+org.apache.flex.html.TextInput.prototype.createElement = function() {
   this.element = document.createElement('input');
   this.element.setAttribute('type', 'input');
 
@@ -58,17 +58,17 @@ org_apache_flex_html_TextInput.prototype.createElement = function() {
 };
 
 
-Object.defineProperties(org_apache_flex_html_TextInput.prototype, {
+Object.defineProperties(org.apache.flex.html.TextInput.prototype, {
     /** @export */
     text: {
-        /** @this {org_apache_flex_html_TextInput} */
+        /** @this {org.apache.flex.html.TextInput} */
         get: function() {
             return this.element.value;
         },
-        /** @this {org_apache_flex_html_TextInput} */
+        /** @this {org.apache.flex.html.TextInput} */
         set: function(value) {
             this.element.value = value;
-            this.dispatchEvent(new org_apache_flex_events_Event('textChange'));
+            this.dispatchEvent(new org.apache.flex.events.Event('textChange'));
         }
     }
 });
@@ -78,7 +78,7 @@ Object.defineProperties(org_apache_flex_html_TextInput.prototype, {
  * @export
  * @param {Object} event The event.
  */
-/*org_apache_flex_html_TextInput.prototype.killChangeHandler = function(event) {
+/*org.apache.flex.html.TextInput.prototype.killChangeHandler = function(event) {
     //event.preventDefault();
 };*/
 
@@ -87,9 +87,9 @@ Object.defineProperties(org_apache_flex_html_TextInput.prototype, {
  * @private
  * @param {Object} event The event.
  */
-org_apache_flex_html_TextInput.prototype.inputChangeHandler_ = function(event) {
+org.apache.flex.html.TextInput.prototype.inputChangeHandler_ = function(event) {
   event.stopPropagation();
 
-  this.dispatchEvent(new org_apache_flex_events_Event(org_apache_flex_events_Event.EventType.CHANGE));
-  this.dispatchEvent(new org_apache_flex_events_Event('textChange'));
+  this.dispatchEvent(new org.apache.flex.events.Event(org.apache.flex.events.Event.EventType.CHANGE));
+  this.dispatchEvent(new org.apache.flex.events.Event('textChange'));
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/88cb1f5b/frameworks/projects/HTML/js/src/org/apache/flex/html/TitleBar.js
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/TitleBar.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/TitleBar.js
index 39a3678..5df5dde 100644
--- a/frameworks/projects/HTML/js/src/org/apache/flex/html/TitleBar.js
+++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/TitleBar.js
@@ -12,25 +12,25 @@
  * limitations under the License.
  */
 
-goog.provide('org_apache_flex_html_TitleBar');
+goog.provide('org.apache.flex.html.TitleBar');
 
-goog.require('org_apache_flex_html_Container');
-goog.require('org_apache_flex_html_Label');
-goog.require('org_apache_flex_html_TextButton');
-goog.require('org_apache_flex_html_beads_models_TitleBarModel');
+goog.require('org.apache.flex.html.Container');
+goog.require('org.apache.flex.html.Label');
+goog.require('org.apache.flex.html.TextButton');
+goog.require('org.apache.flex.html.beads.models.TitleBarModel');
 
 
 
 /**
  * @constructor
- * @extends {org_apache_flex_html_Container}
+ * @extends {org.apache.flex.html.Container}
  */
-org_apache_flex_html_TitleBar = function() {
+org.apache.flex.html.TitleBar = function() {
 
-  org_apache_flex_html_TitleBar.base(this, 'constructor');
+  org.apache.flex.html.TitleBar.base(this, 'constructor');
 };
-goog.inherits(org_apache_flex_html_TitleBar,
-    org_apache_flex_html_Container);
+goog.inherits(org.apache.flex.html.TitleBar,
+    org.apache.flex.html.Container);
 
 
 /**
@@ -38,15 +38,15 @@ goog.inherits(org_apache_flex_html_TitleBar,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org_apache_flex_html_TitleBar.prototype.FLEXJS_CLASS_INFO =
+org.apache.flex.html.TitleBar.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'TitleBar',
-                qName: 'org_apache_flex_html_TitleBar'}] };
+                qName: 'org.apache.flex.html.TitleBar'}] };
 
 
 /**
  * @override
  */
-org_apache_flex_html_TitleBar.prototype.createElement =
+org.apache.flex.html.TitleBar.prototype.createElement =
     function() {
 
   this.element = document.createElement('div');
@@ -61,25 +61,25 @@ org_apache_flex_html_TitleBar.prototype.createElement =
 };
 
 
-Object.defineProperties(org_apache_flex_html_TitleBar.prototype, {
+Object.defineProperties(org.apache.flex.html.TitleBar.prototype, {
     /** @export */
     title: {
-        /** @this {org_apache_flex_html_TitleBar} */
+        /** @this {org.apache.flex.html.TitleBar} */
         get: function() {
             return this.model.title;
         },
-        /** @this {org_apache_flex_html_TitleBar} */
+        /** @this {org.apache.flex.html.TitleBar} */
         set: function(value) {
             this.model.title = value;
         }
     },
     /** @export */
     showCloseButton: {
-        /** @this {org_apache_flex_html_TitleBar} */
+        /** @this {org.apache.flex.html.TitleBar} */
         get: function() {
             return this.model.showCloseButton;
         },
-        /** @this {org_apache_flex_html_TitleBar} */
+        /** @this {org.apache.flex.html.TitleBar} */
         set: function(value) {
             this.model.showCloseButton = value;
         }

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/88cb1f5b/frameworks/projects/HTML/js/src/org/apache/flex/html/ToggleTextButton.js
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/ToggleTextButton.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/ToggleTextButton.js
index 4338228..a05dfbb 100644
--- a/frameworks/projects/HTML/js/src/org/apache/flex/html/ToggleTextButton.js
+++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/ToggleTextButton.js
@@ -12,18 +12,18 @@
  * limitations under the License.
  */
 
-goog.provide('org_apache_flex_html_ToggleTextButton');
+goog.provide('org.apache.flex.html.ToggleTextButton');
 
-goog.require('org_apache_flex_html_Button');
+goog.require('org.apache.flex.html.Button');
 
 
 
 /**
  * @constructor
- * @extends {org_apache_flex_html_Button}
+ * @extends {org.apache.flex.html.Button}
  */
-org_apache_flex_html_ToggleTextButton = function() {
-  org_apache_flex_html_ToggleTextButton.base(this, 'constructor');
+org.apache.flex.html.ToggleTextButton = function() {
+  org.apache.flex.html.ToggleTextButton.base(this, 'constructor');
 
 
 
@@ -33,8 +33,8 @@ org_apache_flex_html_ToggleTextButton = function() {
    */
   this.selected_ = false;
 };
-goog.inherits(org_apache_flex_html_ToggleTextButton,
-    org_apache_flex_html_Button);
+goog.inherits(org.apache.flex.html.ToggleTextButton,
+    org.apache.flex.html.Button);
 
 
 /**
@@ -42,30 +42,30 @@ goog.inherits(org_apache_flex_html_ToggleTextButton,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org_apache_flex_html_ToggleTextButton.prototype.FLEXJS_CLASS_INFO =
+org.apache.flex.html.ToggleTextButton.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ToggleTextButton',
-                qName: 'org_apache_flex_html_ToggleTextButton'}] };
+                qName: 'org.apache.flex.html.ToggleTextButton'}] };
 
 
-Object.defineProperties(org_apache_flex_html_ToggleTextButton.prototype, {
+Object.defineProperties(org.apache.flex.html.ToggleTextButton.prototype, {
     /** @export */
     text: {
-        /** @this {org_apache_flex_html_ToggleTextButton} */
+        /** @this {org.apache.flex.html.ToggleTextButton} */
         get: function() {
             return this.element.innerHTML;
         },
-        /** @this {org_apache_flex_html_ToggleTextButton} */
+        /** @this {org.apache.flex.html.ToggleTextButton} */
         set: function(value) {
             this.element.innerHTML = value;
         }
     },
     /** @export */
     selected: {
-        /** @this {org_apache_flex_html_ToggleTextButton} */
+        /** @this {org.apache.flex.html.ToggleTextButton} */
         get: function() {
              return this.selected_;
         },
-        /** @this {org_apache_flex_html_ToggleTextButton} */
+        /** @this {org.apache.flex.html.ToggleTextButton} */
         set: function(value) {
             if (this.selected_ != value) {
               this.selected_ = value;
@@ -88,5 +88,5 @@ Object.defineProperties(org_apache_flex_html_ToggleTextButton.prototype, {
 /**
  * @type {string} The selected setter.
  */
-org_apache_flex_html_ToggleTextButton.prototype.SELECTED = '_Selected';
+org.apache.flex.html.ToggleTextButton.prototype.SELECTED = '_Selected';
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/88cb1f5b/frameworks/projects/HTML/js/src/org/apache/flex/html/ToolTip.js
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/ToolTip.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/ToolTip.js
index ab25eed..b3f5b07 100644
--- a/frameworks/projects/HTML/js/src/org/apache/flex/html/ToolTip.js
+++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/ToolTip.js
@@ -12,22 +12,22 @@
  * limitations under the License.
  */
 
-goog.provide('org_apache_flex_html_ToolTip');
+goog.provide('org.apache.flex.html.ToolTip');
 
-goog.require('org_apache_flex_html_Label');
+goog.require('org.apache.flex.html.Label');
 
 
 
 /**
  * @constructor
- * @extends {org_apache_flex_html_Label}
+ * @extends {org.apache.flex.html.Label}
  */
-org_apache_flex_html_ToolTip = function() {
-  org_apache_flex_html_ToolTip.base(this, 'constructor');
+org.apache.flex.html.ToolTip = function() {
+  org.apache.flex.html.ToolTip.base(this, 'constructor');
   this.element.className = 'ToolTip';
 };
-goog.inherits(org_apache_flex_html_ToolTip,
-    org_apache_flex_html_Label);
+goog.inherits(org.apache.flex.html.ToolTip,
+    org.apache.flex.html.Label);
 
 
 /**
@@ -35,6 +35,6 @@ goog.inherits(org_apache_flex_html_ToolTip,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org_apache_flex_html_ToolTip.prototype.FLEXJS_CLASS_INFO =
+org.apache.flex.html.ToolTip.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ToolTip',
-                qName: 'org_apache_flex_html_ToolTip' }]};
+                qName: 'org.apache.flex.html.ToolTip' }]};

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/88cb1f5b/frameworks/projects/HTML/js/src/org/apache/flex/html/VContainer.js
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/VContainer.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/VContainer.js
index d7c608a..e1198eb 100644
--- a/frameworks/projects/HTML/js/src/org/apache/flex/html/VContainer.js
+++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/VContainer.js
@@ -12,23 +12,23 @@
  * limitations under the License.
  */
 
-goog.provide('org_apache_flex_html_VContainer');
+goog.provide('org.apache.flex.html.VContainer');
 
-goog.require('org_apache_flex_core_IContainer');
-goog.require('org_apache_flex_html_Container');
+goog.require('org.apache.flex.core.IContainer');
+goog.require('org.apache.flex.html.Container');
 
 
 
 /**
  * @constructor
- * @implements {org_apache_flex_core_IContainer}
- * @extends {org_apache_flex_html_Container}
+ * @implements {org.apache.flex.core.IContainer}
+ * @extends {org.apache.flex.html.Container}
  */
-org_apache_flex_html_VContainer = function() {
-  org_apache_flex_html_VContainer.base(this, 'constructor');
+org.apache.flex.html.VContainer = function() {
+  org.apache.flex.html.VContainer.base(this, 'constructor');
 };
-goog.inherits(org_apache_flex_html_VContainer,
-    org_apache_flex_html_Container);
+goog.inherits(org.apache.flex.html.VContainer,
+    org.apache.flex.html.Container);
 
 
 /**
@@ -36,7 +36,7 @@ goog.inherits(org_apache_flex_html_VContainer,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org_apache_flex_html_VContainer.prototype.FLEXJS_CLASS_INFO =
+org.apache.flex.html.VContainer.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'VContainer',
-                qName: 'org_apache_flex_html_VContainer' }],
-      interfaces: [org_apache_flex_core_IContainer] };
+                qName: 'org.apache.flex.html.VContainer' }],
+      interfaces: [org.apache.flex.core.IContainer] };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/88cb1f5b/frameworks/projects/HTML/js/src/org/apache/flex/html/accessories/NumericOnlyTextInputBead.js
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/accessories/NumericOnlyTextInputBead.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/accessories/NumericOnlyTextInputBead.js
index a40fa5d..4e89151 100644
--- a/frameworks/projects/HTML/js/src/org/apache/flex/html/accessories/NumericOnlyTextInputBead.js
+++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/accessories/NumericOnlyTextInputBead.js
@@ -12,14 +12,14 @@
  * limitations under the License.
  */
 
-goog.provide('org_apache_flex_html_accessories_NumericOnlyTextInputBead');
+goog.provide('org.apache.flex.html.accessories.NumericOnlyTextInputBead');
 
 
 
 /**
  * @constructor
  */
-org_apache_flex_html_accessories_NumericOnlyTextInputBead =
+org.apache.flex.html.accessories.NumericOnlyTextInputBead =
     function() {
 
   /**
@@ -35,15 +35,15 @@ org_apache_flex_html_accessories_NumericOnlyTextInputBead =
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org_apache_flex_html_accessories_NumericOnlyTextInputBead.prototype.FLEXJS_CLASS_INFO =
+org.apache.flex.html.accessories.NumericOnlyTextInputBead.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'NumericOnlyTextInputBead',
-                qName: 'org_apache_flex_html_accessories_NumericOnlyTextInputBead' }] };
+                qName: 'org.apache.flex.html.accessories.NumericOnlyTextInputBead' }] };
 
 
-Object.defineProperties(org_apache_flex_html_accessories_NumericOnlyTextInputBead.prototype, {
+Object.defineProperties(org.apache.flex.html.accessories.NumericOnlyTextInputBead.prototype, {
     /** @export */
     strand: {
-        /** @this {org_apache_flex_html_accessories_NumericOnlyTextInputBead} */
+        /** @this {org.apache.flex.html.accessories.NumericOnlyTextInputBead} */
         set: function(value) {
             if (this.strand_ !== value) {
               this.strand_ = value;
@@ -58,7 +58,7 @@ Object.defineProperties(org_apache_flex_html_accessories_NumericOnlyTextInputBea
  * @export
  * @param {Object} event The input to validate?
  */
-org_apache_flex_html_accessories_NumericOnlyTextInputBead.
+org.apache.flex.html.accessories.NumericOnlyTextInputBead.
     prototype.validateInput = function(event) {
 
   var code = event.charCode;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/88cb1f5b/frameworks/projects/HTML/js/src/org/apache/flex/html/accessories/PasswordInputBead.js
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/accessories/PasswordInputBead.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/accessories/PasswordInputBead.js
index d6f9000..be9c65e 100644
--- a/frameworks/projects/HTML/js/src/org/apache/flex/html/accessories/PasswordInputBead.js
+++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/accessories/PasswordInputBead.js
@@ -12,14 +12,14 @@
  * limitations under the License.
  */
 
-goog.provide('org_apache_flex_html_accessories_PasswordInputBead');
+goog.provide('org.apache.flex.html.accessories.PasswordInputBead');
 
 
 
 /**
  * @constructor
  */
-org_apache_flex_html_accessories_PasswordInputBead =
+org.apache.flex.html.accessories.PasswordInputBead =
     function() {
 
   /**
@@ -35,15 +35,15 @@ org_apache_flex_html_accessories_PasswordInputBead =
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org_apache_flex_html_accessories_PasswordInputBead.prototype.FLEXJS_CLASS_INFO =
+org.apache.flex.html.accessories.PasswordInputBead.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'PasswordInputBead',
-                qName: 'org_apache_flex_html_accessories_PasswordInputBead' }] };
+                qName: 'org.apache.flex.html.accessories.PasswordInputBead' }] };
 
 
-Object.defineProperties(org_apache_flex_html_accessories_PasswordInputBead.prototype, {
+Object.defineProperties(org.apache.flex.html.accessories.PasswordInputBead.prototype, {
     /** @export */
     strand: {
-        /** @this {org_apache_flex_html_accessories_PasswordInputBead} */
+        /** @this {org.apache.flex.html.accessories.PasswordInputBead} */
         set: function(value) {
             if (this.strand_ !== value) {
               this.strand_ = value;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/88cb1f5b/frameworks/projects/HTML/js/src/org/apache/flex/html/accessories/TextPromptBead.js
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/accessories/TextPromptBead.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/accessories/TextPromptBead.js
index bca3653..cfea7f7 100644
--- a/frameworks/projects/HTML/js/src/org/apache/flex/html/accessories/TextPromptBead.js
+++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/accessories/TextPromptBead.js
@@ -12,14 +12,14 @@
  * limitations under the License.
  */
 
-goog.provide('org_apache_flex_html_accessories_TextPromptBead');
+goog.provide('org.apache.flex.html.accessories.TextPromptBead');
 
 
 
 /**
  * @constructor
  */
-org_apache_flex_html_accessories_TextPromptBead = function() {
+org.apache.flex.html.accessories.TextPromptBead = function() {
 
   /**
    * @protected
@@ -34,15 +34,15 @@ org_apache_flex_html_accessories_TextPromptBead = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org_apache_flex_html_accessories_TextPromptBead.prototype.FLEXJS_CLASS_INFO =
+org.apache.flex.html.accessories.TextPromptBead.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'TextPromptBead',
-                qName: 'org_apache_flex_html_accessories_TextPromptBead' }] };
+                qName: 'org.apache.flex.html.accessories.TextPromptBead' }] };
 
 
-Object.defineProperties(org_apache_flex_html_accessories_TextPromptBead.prototype, {
+Object.defineProperties(org.apache.flex.html.accessories.TextPromptBead.prototype, {
     /** @export */
     strand: {
-        /** @this {org_apache_flex_html_accessories_TextPromptBead} */
+        /** @this {org.apache.flex.html.accessories.TextPromptBead} */
         set: function(value) {
             if (this.strand_ !== value) {
               this.strand_ = value;
@@ -52,11 +52,11 @@ Object.defineProperties(org_apache_flex_html_accessories_TextPromptBead.prototyp
     },
     /** @export */
     prompt: {
-        /** @this {org_apache_flex_html_accessories_TextPromptBead} */
+        /** @this {org.apache.flex.html.accessories.TextPromptBead} */
         get: function() {
             return this.prompt;
         },
-        /** @this {org_apache_flex_html_accessories_TextPromptBead} */
+        /** @this {org.apache.flex.html.accessories.TextPromptBead} */
         set: function(value) {
             this.prompt = value;
         }

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/88cb1f5b/frameworks/projects/HTML/js/src/org/apache/flex/html/beads/ButtonBarView.js
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/beads/ButtonBarView.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/beads/ButtonBarView.js
index 3114eb5..5cfb51d 100644
--- a/frameworks/projects/HTML/js/src/org/apache/flex/html/beads/ButtonBarView.js
+++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/beads/ButtonBarView.js
@@ -12,26 +12,26 @@
  * limitations under the License.
  */
 
-goog.provide('org_apache_flex_html_beads_ButtonBarView');
+goog.provide('org.apache.flex.html.beads.ButtonBarView');
 
-goog.require('org_apache_flex_html_beads_ListView');
-goog.require('org_apache_flex_utils_Language');
+goog.require('org.apache.flex.html.beads.ListView');
+goog.require('org.apache.flex.utils.Language');
 
 
 
 /**
  * @constructor
- * @extends {org_apache_flex_html_beads_ListView}
+ * @extends {org.apache.flex.html.beads.ListView}
  */
-org_apache_flex_html_beads_ButtonBarView = function() {
+org.apache.flex.html.beads.ButtonBarView = function() {
   this.lastSelectedIndex = -1;
-  org_apache_flex_html_beads_ButtonBarView.base(this, 'constructor');
+  org.apache.flex.html.beads.ButtonBarView.base(this, 'constructor');
 
   this.className = 'ButtonBarView';
 };
 goog.inherits(
-    org_apache_flex_html_beads_ButtonBarView,
-    org_apache_flex_html_beads_ListView);
+    org.apache.flex.html.beads.ButtonBarView,
+    org.apache.flex.html.beads.ListView);
 
 
 /**
@@ -39,18 +39,18 @@ goog.inherits(
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org_apache_flex_html_beads_ButtonBarView.prototype.FLEXJS_CLASS_INFO =
+org.apache.flex.html.beads.ButtonBarView.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ButtonBarView',
-                qName: 'org_apache_flex_html_beads_ButtonBarView' }] };
+                qName: 'org.apache.flex.html.beads.ButtonBarView' }] };
 
 
-Object.defineProperties(org_apache_flex_html_beads_ButtonBarView.prototype, {
+Object.defineProperties(org.apache.flex.html.beads.ButtonBarView.prototype, {
     /** @export */
     strand: {
-        /** @this {org_apache_flex_html_beads_ButtonBarView} */
+        /** @this {org.apache.flex.html.beads.ButtonBarView} */
         set: function(value) {
-            org_apache_flex_utils_Language.superSetter(
-                org_apache_flex_html_beads_ButtonBarView, this, 'strand', value);
+            org.apache.flex.utils.Language.superSetter(
+                org.apache.flex.html.beads.ButtonBarView, this, 'strand', value);
             this.strand_ = value;
         }
     }

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/88cb1f5b/frameworks/projects/HTML/js/src/org/apache/flex/html/beads/ContainerView.js
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/beads/ContainerView.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/beads/ContainerView.js
index f1eb2cf..0208659 100644
--- a/frameworks/projects/HTML/js/src/org/apache/flex/html/beads/ContainerView.js
+++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/beads/ContainerView.js
@@ -12,27 +12,27 @@
  * limitations under the License.
  */
 
-goog.provide('org_apache_flex_html_beads_ContainerView');
+goog.provide('org.apache.flex.html.beads.ContainerView');
 
-goog.require('org_apache_flex_core_BeadViewBase');
-goog.require('org_apache_flex_core_IBeadLayout');
-goog.require('org_apache_flex_core_ILayoutParent');
+goog.require('org.apache.flex.core.BeadViewBase');
+goog.require('org.apache.flex.core.IBeadLayout');
+goog.require('org.apache.flex.core.ILayoutParent');
 
 
 
 /**
  * @constructor
- * @extends {org_apache_flex_core_BeadViewBase}
+ * @extends {org.apache.flex.core.BeadViewBase}
  */
-org_apache_flex_html_beads_ContainerView = function() {
+org.apache.flex.html.beads.ContainerView = function() {
   this.lastSelectedIndex = -1;
-  org_apache_flex_html_beads_ContainerView.base(this, 'constructor');
+  org.apache.flex.html.beads.ContainerView.base(this, 'constructor');
 
   this.className = 'ContainerView';
 };
 goog.inherits(
-    org_apache_flex_html_beads_ContainerView,
-    org_apache_flex_core_BeadViewBase);
+    org.apache.flex.html.beads.ContainerView,
+    org.apache.flex.core.BeadViewBase);
 
 
 /**
@@ -40,10 +40,10 @@ goog.inherits(
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org_apache_flex_html_beads_ContainerView.prototype.FLEXJS_CLASS_INFO =
+org.apache.flex.html.beads.ContainerView.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ContainerView',
-                qName: 'org_apache_flex_html_beads_ContainerView' }],
-    interfaces: [org_apache_flex_core_ILayoutParent]
+                qName: 'org.apache.flex.html.beads.ContainerView' }],
+    interfaces: [org.apache.flex.core.ILayoutParent]
     };
 
 
@@ -54,13 +54,13 @@ org_apache_flex_html_beads_ContainerView.prototype.FLEXJS_CLASS_INFO =
  * doesn't seem to allow the Object.defineProperties to use it
  * without re-declaring it here.
  */
-org_apache_flex_html_beads_ContainerView.prototype._strand = null;
+org.apache.flex.html.beads.ContainerView.prototype._strand = null;
 
 
 /**
  *
  */
-org_apache_flex_html_beads_ContainerView.
+org.apache.flex.html.beads.ContainerView.
     prototype.addOtherListeners = function() {
   this._strand.addEventListener('childrenAdded',
       goog.bind(this.changeHandler, this));
@@ -72,14 +72,14 @@ org_apache_flex_html_beads_ContainerView.
 
 
 /**
- * @param {org_apache_flex_events_Event} event The event.
+ * @param {org.apache.flex.events.Event} event The event.
  */
-org_apache_flex_html_beads_ContainerView.
+org.apache.flex.html.beads.ContainerView.
     prototype.changeHandler = function(event) {
   if (this.layout_ == null) {
-    this.layout_ = this._strand.getBeadByType(org_apache_flex_core_IBeadLayout);
+    this.layout_ = this._strand.getBeadByType(org.apache.flex.core.IBeadLayout);
     if (this.layout_ == null) {
-      var m3 = org_apache_flex_core_ValuesManager.valuesImpl.getValue(this._strand, 'iBeadLayout');
+      var m3 = org.apache.flex.core.ValuesManager.valuesImpl.getValue(this._strand, 'iBeadLayout');
       this.layout_ = new m3();
       this._strand.addBead(this.layout_);
       //this.layout_.strand = this.strand_;
@@ -96,35 +96,35 @@ org_apache_flex_html_beads_ContainerView.
 
 
 /**
- * @param {org_apache_flex_events_Event} event The event.
+ * @param {org.apache.flex.events.Event} event The event.
  */
-org_apache_flex_html_beads_ContainerView.
+org.apache.flex.html.beads.ContainerView.
     prototype.sizeChangeHandler = function(event) {
   this.addOtherListeners();
   this.changeHandler(event);
 };
 
 
-Object.defineProperties(org_apache_flex_html_beads_ContainerView.prototype, {
+Object.defineProperties(org.apache.flex.html.beads.ContainerView.prototype, {
     /** @export */
     contentView: {
-        /** @this {org_apache_flex_html_beads_ContainerView} */
+        /** @this {org.apache.flex.html.beads.ContainerView} */
         get: function() {
             return this._strand;
         }
     },
     /** @export */
     resizableView: {
-        /** @this {org_apache_flex_html_beads_ContainerView} */
+        /** @this {org.apache.flex.html.beads.ContainerView} */
         get: function() {
             return this._strand;
         }
     },
     /** @export */
     strand: {
-        /** @this {org_apache_flex_html_beads_ContainerView} */
+        /** @this {org.apache.flex.html.beads.ContainerView} */
         set: function(value) {
-            org_apache_flex_utils_Language.superSetter(org_apache_flex_html_beads_ContainerView, this, 'strand', value);
+            org.apache.flex.utils.Language.superSetter(org.apache.flex.html.beads.ContainerView, this, 'strand', value);
             if (this._strand.isWidthSizedToContent() &&
                 this._strand.isHeightSizedToContent())
               this.addOtherListeners();