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/01/28 18:22:09 UTC

[01/12] git commit: [flex-asjs] [refs/heads/develop] - switching from org.apache.flex to org_apache_flex so GCC doesn't complain

Repository: flex-asjs
Updated Branches:
  refs/heads/develop 5cfc1dccb -> 4ba5cb8ec


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/utils/Timer.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/utils/Timer.js b/frameworks/js/FlexJS/src/org/apache/flex/utils/Timer.js
index ae10939..57815c1 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/utils/Timer.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/utils/Timer.js
@@ -12,20 +12,20 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.utils.Timer');
+goog.provide('org_apache_flex_utils_Timer');
 
-goog.require('org.apache.flex.events.EventDispatcher');
+goog.require('org_apache_flex_events_EventDispatcher');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.events.EventDispatcher}
+ * @extends {org_apache_flex_events_EventDispatcher}
  * @param {number} delay The delay.
  * @param {number=} opt_repeatCount The repeatCount.
  */
-org.apache.flex.utils.Timer = function(delay, opt_repeatCount) {
-  org.apache.flex.utils.Timer.base(this, 'constructor');
+org_apache_flex_utils_Timer = function(delay, opt_repeatCount) {
+  org_apache_flex_utils_Timer.base(this, 'constructor');
 
   if (opt_repeatCount !== undefined) {
     this._repeatCount = opt_repeatCount;
@@ -49,8 +49,8 @@ org.apache.flex.utils.Timer = function(delay, opt_repeatCount) {
    */
   this._currentCount = 0;
 };
-goog.inherits(org.apache.flex.utils.Timer,
-    org.apache.flex.events.EventDispatcher);
+goog.inherits(org_apache_flex_utils_Timer,
+    org_apache_flex_events_EventDispatcher);
 
 
 /**
@@ -58,16 +58,16 @@ goog.inherits(org.apache.flex.utils.Timer,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.utils.Timer.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_utils_Timer.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'Timer',
-                qName: 'org.apache.flex.utils.Timer'}] };
+                qName: 'org_apache_flex_utils_Timer'}] };
 
 
 /**
  * @expose
  * Stops the timer and sets currentCount = 0.
  */
-org.apache.flex.utils.Timer.prototype.reset = function() {
+org_apache_flex_utils_Timer.prototype.reset = function() {
   this.stop();
   this._currentCount = 0;
 };
@@ -77,7 +77,7 @@ org.apache.flex.utils.Timer.prototype.reset = function() {
  * @expose
  * Stops the timer.
  */
-org.apache.flex.utils.Timer.prototype.stop = function() {
+org_apache_flex_utils_Timer.prototype.stop = function() {
   clearInterval(this.timerInterval);
   this.timerInterval = -1;
 };
@@ -87,7 +87,7 @@ org.apache.flex.utils.Timer.prototype.stop = function() {
  * @expose
  * Starts the timer.
  */
-org.apache.flex.utils.Timer.prototype.start = function() {
+org_apache_flex_utils_Timer.prototype.start = function() {
   this.timerInterval =
       setInterval(goog.bind(this.timerHandler, this), this._delay);
 };
@@ -96,14 +96,14 @@ org.apache.flex.utils.Timer.prototype.start = function() {
 /**
  * @protected
  */
-org.apache.flex.utils.Timer.prototype.timerHandler =
+org_apache_flex_utils_Timer.prototype.timerHandler =
     function() {
   this._currentCount++;
   if (this._repeatCount > 0 && this._currentCount >= this._repeatCount) {
     this.stop();
   }
 
-  this.dispatchEvent(new org.apache.flex.events.Event('timer'));
+  this.dispatchEvent(new org_apache_flex_events_Event('timer'));
 
 };
 
@@ -112,7 +112,7 @@ org.apache.flex.utils.Timer.prototype.timerHandler =
  * @expose
  * @return {number} The currentCount.
  */
-org.apache.flex.utils.Timer.prototype.get_currentCount = function() {
+org_apache_flex_utils_Timer.prototype.get_currentCount = function() {
   return this._currentCount;
 };
 
@@ -121,7 +121,7 @@ org.apache.flex.utils.Timer.prototype.get_currentCount = function() {
  * @expose
  * @return {boolean} True if the timer is running.
  */
-org.apache.flex.utils.Timer.prototype.get_running = function() {
+org_apache_flex_utils_Timer.prototype.get_running = function() {
   return this.timerInterval !== -1;
 };
 
@@ -130,7 +130,7 @@ org.apache.flex.utils.Timer.prototype.get_running = function() {
  * @expose
  * @return {number} The number of milliseconds between events.
  */
-org.apache.flex.utils.Timer.prototype.get_delay = function() {
+org_apache_flex_utils_Timer.prototype.get_delay = function() {
   return this._delay;
 };
 
@@ -139,7 +139,7 @@ org.apache.flex.utils.Timer.prototype.get_delay = function() {
  * @expose
  * @param {number} value The number of milliseconds between events.
  */
-org.apache.flex.utils.Timer.prototype.set_delay = function(value) {
+org_apache_flex_utils_Timer.prototype.set_delay = function(value) {
   this._delay = value;
 };
 
@@ -148,7 +148,7 @@ org.apache.flex.utils.Timer.prototype.set_delay = function(value) {
  * @expose
  * @return {number} The repeat count.
  */
-org.apache.flex.utils.Timer.prototype.get_repeatCount = function() {
+org_apache_flex_utils_Timer.prototype.get_repeatCount = function() {
   return this._repeatCount;
 };
 
@@ -157,6 +157,6 @@ org.apache.flex.utils.Timer.prototype.get_repeatCount = function() {
  * @expose
  * @param {number} value The repeat count.
  */
-org.apache.flex.utils.Timer.prototype.set_repeatCount = function(value) {
+org_apache_flex_utils_Timer.prototype.set_repeatCount = function(value) {
   this._repeatCount = value;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/utils/UIUtils.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/utils/UIUtils.js b/frameworks/js/FlexJS/src/org/apache/flex/utils/UIUtils.js
index 9e2e9fc..3c503ef 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/utils/UIUtils.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/utils/UIUtils.js
@@ -12,17 +12,17 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.utils.UIUtils');
+goog.provide('org_apache_flex_utils_UIUtils');
 
-goog.require('org.apache.flex.core.IPopUpHost');
-goog.require('org.apache.flex.utils.Language');
+goog.require('org_apache_flex_core_IPopUpHost');
+goog.require('org_apache_flex_utils_Language');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.utils.UIUtils = function() {
+org_apache_flex_utils_UIUtils = function() {
 };
 
 
@@ -31,9 +31,9 @@ org.apache.flex.utils.UIUtils = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.utils.UIUtils.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_utils_UIUtils.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'UIUtils',
-                qName: 'org.apache.flex.utils.UIUtils' }] };
+                qName: 'org_apache_flex_utils_UIUtils' }] };
 
 
 /**
@@ -41,7 +41,7 @@ org.apache.flex.utils.UIUtils.prototype.FLEXJS_CLASS_INFO =
  * @param {Object} item The item to be centered.
  * @param {Object} relativeTo The object used as reference.
  */
-org.apache.flex.utils.UIUtils.center =
+org_apache_flex_utils_UIUtils.center =
     function(item, relativeTo) {
 
   var rw = relativeTo.get_width();
@@ -61,10 +61,10 @@ org.apache.flex.utils.UIUtils.center =
  * @param {Object} start A component to start the search.
  * @return {Object} A component that implements IPopUpHost.
  */
-org.apache.flex.utils.UIUtils.findPopUpHost =
+org_apache_flex_utils_UIUtils.findPopUpHost =
     function(start) {
 
-  while (start != null && !org.apache.flex.utils.Language.is(start, org.apache.flex.core.IPopUpHost)) {
+  while (start != null && !org_apache_flex_utils_Language.is(start, org_apache_flex_core_IPopUpHost)) {
     start = start.get_parent();
   }
 
@@ -76,7 +76,7 @@ org.apache.flex.utils.UIUtils.findPopUpHost =
  * @expose
  * @param {Object} popUp An IPopUpHost component looking to be removed.
  */
-org.apache.flex.utils.UIUtils.removePopUp =
+org_apache_flex_utils_UIUtils.removePopUp =
     function(popUp) {
 
   var p = popUp.get_parent();

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/utils/ViewSourceContextMenuOption.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/utils/ViewSourceContextMenuOption.js b/frameworks/js/FlexJS/src/org/apache/flex/utils/ViewSourceContextMenuOption.js
index 5120c99..e7cc836 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/utils/ViewSourceContextMenuOption.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/utils/ViewSourceContextMenuOption.js
@@ -12,15 +12,15 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.utils.ViewSourceContextMenuOption');
+goog.provide('org_apache_flex_utils_ViewSourceContextMenuOption');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.events.EventDispatcher}
+ * @extends {org_apache_flex_events_EventDispatcher}
  */
-org.apache.flex.utils.ViewSourceContextMenuOption = function() {
+org_apache_flex_utils_ViewSourceContextMenuOption = function() {
   // no implementation in JS since ViewSource is already in menu
 };
 
@@ -30,15 +30,15 @@ org.apache.flex.utils.ViewSourceContextMenuOption = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.utils.ViewSourceContextMenuOption.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_utils_ViewSourceContextMenuOption.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ViewSourceContextMenuOption',
-                qName: 'org.apache.flex.utils.ViewSourceContextMenuOption'}] };
+                qName: 'org_apache_flex_utils_ViewSourceContextMenuOption'}] };
 
 
 /**
  * @param {Object} value The strand (owner) of the bead.
  */
-org.apache.flex.utils.ViewSourceContextMenuOption.prototype.set_strand =
+org_apache_flex_utils_ViewSourceContextMenuOption.prototype.set_strand =
     function(value) {
 };
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/tests/MySimpleValuesImpl.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/tests/MySimpleValuesImpl.js b/frameworks/js/FlexJS/tests/MySimpleValuesImpl.js
index 8f09bd7..dfde492 100644
--- a/frameworks/js/FlexJS/tests/MySimpleValuesImpl.js
+++ b/frameworks/js/FlexJS/tests/MySimpleValuesImpl.js
@@ -30,11 +30,11 @@ MySimpleValuesImpl = function() {
     this.values_ = {
         /*
         ITextButtonBead :
-            org.apache.flex.html.beads.TextButtonBead,
+            org_apache_flex_html_beads_TextButtonBead,
         ITextBead :
-            org.apache.flex.html.beads.TextFieldBead,
+            org_apache_flex_html_beads_TextFieldBead,
         ITextModel :
-            org.apache.flex.html.beads.models.TextModel
+            org_apache_flex_html_beads_models.TextModel
         */
     };
 };


[09/12] git commit: [flex-asjs] [refs/heads/develop] - switching from org.apache.flex to org_apache_flex so GCC doesn't complain

Posted by ah...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChartSeries.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChartSeries.js b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChartSeries.js
index 6b715db..4c25e17 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChartSeries.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChartSeries.js
@@ -11,72 +11,72 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * org.apache.flex.charts.core.IChartSeries
+ * org_apache_flex_charts_core_IChartSeries
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.charts.core.IChartSeries');
+goog.provide('org_apache_flex_charts_core_IChartSeries');
 
-goog.require('mx.core.IFactory');
+goog.require('mx_core_IFactory');
 
 
 
 /**
  * @interface
  */
-org.apache.flex.charts.core.IChartSeries = function() {
+org_apache_flex_charts_core_IChartSeries = function() {
 };
 
 
 /**
  * @return {string}
  */
-org.apache.flex.charts.core.IChartSeries.prototype.get_xField = function() {};
+org_apache_flex_charts_core_IChartSeries.prototype.get_xField = function() {};
 
 
 /**
  * @param {string} value
  */
-org.apache.flex.charts.core.IChartSeries.prototype.set_xField = function(value) {};
+org_apache_flex_charts_core_IChartSeries.prototype.set_xField = function(value) {};
 
 
 /**
  * @return {string}
  */
-org.apache.flex.charts.core.IChartSeries.prototype.get_yField = function() {};
+org_apache_flex_charts_core_IChartSeries.prototype.get_yField = function() {};
 
 
 /**
  * @param {string} value
  */
-org.apache.flex.charts.core.IChartSeries.prototype.set_yField = function(value) {};
+org_apache_flex_charts_core_IChartSeries.prototype.set_yField = function(value) {};
 
 
 /**
  * @return {number}
  */
-org.apache.flex.charts.core.IChartSeries.prototype.get_fillColor = function() {};
+org_apache_flex_charts_core_IChartSeries.prototype.get_fillColor = function() {};
 
 
 /**
  * @param {number} value
  */
-org.apache.flex.charts.core.IChartSeries.prototype.set_fillColor = function(value) {};
+org_apache_flex_charts_core_IChartSeries.prototype.set_fillColor = function(value) {};
 
 
 /**
- * @return {mx.core.IFactory}
+ * @return {mx_core_IFactory}
  */
-org.apache.flex.charts.core.IChartSeries.prototype.get_itemRenderer = function() {};
+org_apache_flex_charts_core_IChartSeries.prototype.get_itemRenderer = function() {};
 
 
 /**
- * @param {mx.core.IFactory} value
+ * @param {mx_core_IFactory} value
  */
-org.apache.flex.charts.core.IChartSeries.prototype.set_itemRenderer = function(value) {};
+org_apache_flex_charts_core_IChartSeries.prototype.set_itemRenderer = function(value) {};
 
 
 /**
@@ -84,6 +84,6 @@ org.apache.flex.charts.core.IChartSeries.prototype.set_itemRenderer = function(v
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.charts.core.IChartSeries.prototype.FLEXJS_CLASS_INFO = {
-    names: [{ name: 'IChartSeries', qName: 'org.apache.flex.charts.core.IChartSeries'}]
+org_apache_flex_charts_core_IChartSeries.prototype.FLEXJS_CLASS_INFO = {
+    names: [{ name: 'IChartSeries', qName: 'org_apache_flex_charts_core_IChartSeries'}]
   };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IHorizontalAxisBead.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IHorizontalAxisBead.js b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IHorizontalAxisBead.js
index 39dd496..6af34ab 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IHorizontalAxisBead.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IHorizontalAxisBead.js
@@ -11,24 +11,24 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * org.apache.flex.charts.core.IHorizontalAxisBead
+ * org_apache_flex_charts_core_IHorizontalAxisBead
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.charts.core.IHorizontalAxisBead');
+goog.provide('org_apache_flex_charts_core_IHorizontalAxisBead');
 
-goog.require('org.apache.flex.charts.core.IAxisBead');
+goog.require('org_apache_flex_charts_core_IAxisBead');
 
 
 
 /**
  * @interface
- * @extends {org.apache.flex.charts.core.IAxisBead}
+ * @extends {org_apache_flex_charts_core_IAxisBead}
  */
-org.apache.flex.charts.core.IHorizontalAxisBead = function() {
+org_apache_flex_charts_core_IHorizontalAxisBead = function() {
 };
 
 
@@ -37,31 +37,31 @@ org.apache.flex.charts.core.IHorizontalAxisBead = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.charts.core.IHorizontalAxisBead.prototype.FLEXJS_CLASS_INFO = {
-    names: [{ name: 'IHorizontalAxisBead', qName: 'org.apache.flex.charts.core.IHorizontalAxisBead'}],
-    interfaces: [org.apache.flex.charts.core.IAxisBead]
+org_apache_flex_charts_core_IHorizontalAxisBead.prototype.FLEXJS_CLASS_INFO = {
+    names: [{ name: 'IHorizontalAxisBead', qName: 'org_apache_flex_charts_core_IHorizontalAxisBead'}],
+    interfaces: [org_apache_flex_charts_core_IAxisBead]
   };
 
 
 /**
  * @param {number} value
  */
-org.apache.flex.charts.core.IHorizontalAxisBead.prototype.set_axisHeight = function(value) {};
+org_apache_flex_charts_core_IHorizontalAxisBead.prototype.set_axisHeight = function(value) {};
 
 
 /**
  * @return {number}
  */
-org.apache.flex.charts.core.IHorizontalAxisBead.prototype.get_axisHeight = function() {};
+org_apache_flex_charts_core_IHorizontalAxisBead.prototype.get_axisHeight = function() {};
 
 
 /**
  * @return {number}
  */
-org.apache.flex.charts.core.IHorizontalAxisBead.prototype.get_maximum = function() {};
+org_apache_flex_charts_core_IHorizontalAxisBead.prototype.get_maximum = function() {};
 
 
 /**
  * @return {number}
  */
-org.apache.flex.charts.core.IHorizontalAxisBead.prototype.get_minimum = function() {};
+org_apache_flex_charts_core_IHorizontalAxisBead.prototype.get_minimum = function() {};

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IVerticalAxisBead.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IVerticalAxisBead.js b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IVerticalAxisBead.js
index dabfa19..9e81573 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IVerticalAxisBead.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IVerticalAxisBead.js
@@ -11,24 +11,24 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * org.apache.flex.charts.core.IVerticalAxisBead
+ * org_apache_flex_charts_core_IVerticalAxisBead
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.charts.core.IVerticalAxisBead');
+goog.provide('org_apache_flex_charts_core_IVerticalAxisBead');
 
-goog.require('org.apache.flex.charts.core.IAxisBead');
+goog.require('org_apache_flex_charts_core_IAxisBead');
 
 
 
 /**
  * @interface
- * @extends {org.apache.flex.charts.core.IAxisBead}
+ * @extends {org_apache_flex_charts_core_IAxisBead}
  */
-org.apache.flex.charts.core.IVerticalAxisBead = function() {
+org_apache_flex_charts_core_IVerticalAxisBead = function() {
 };
 
 
@@ -37,31 +37,31 @@ org.apache.flex.charts.core.IVerticalAxisBead = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.charts.core.IVerticalAxisBead.prototype.FLEXJS_CLASS_INFO = {
-    names: [{ name: 'IVerticalAxisBead', qName: 'org.apache.flex.charts.core.IVerticalAxisBead'}],
-    interfaces: [org.apache.flex.charts.core.IAxisBead]
+org_apache_flex_charts_core_IVerticalAxisBead.prototype.FLEXJS_CLASS_INFO = {
+    names: [{ name: 'IVerticalAxisBead', qName: 'org_apache_flex_charts_core_IVerticalAxisBead'}],
+    interfaces: [org_apache_flex_charts_core_IAxisBead]
   };
 
 
 /**
  * @param {number} value
  */
-org.apache.flex.charts.core.IVerticalAxisBead.prototype.set_axisWidth = function(value) {};
+org_apache_flex_charts_core_IVerticalAxisBead.prototype.set_axisWidth = function(value) {};
 
 
 /**
  * @return {number}
  */
-org.apache.flex.charts.core.IVerticalAxisBead.prototype.get_axisWidth = function() {};
+org_apache_flex_charts_core_IVerticalAxisBead.prototype.get_axisWidth = function() {};
 
 
 /**
  * @return {number}
  */
-org.apache.flex.charts.core.IVerticalAxisBead.prototype.get_maximum = function() {};
+org_apache_flex_charts_core_IVerticalAxisBead.prototype.get_maximum = function() {};
 
 
 /**
  * @return {number}
  */
-org.apache.flex.charts.core.IVerticalAxisBead.prototype.get_minimum = function() {};
+org_apache_flex_charts_core_IVerticalAxisBead.prototype.get_minimum = function() {};

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/charts/supportClasses/ChartAxisGroup.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/charts/supportClasses/ChartAxisGroup.js b/frameworks/js/FlexJS/src/org/apache/flex/charts/supportClasses/ChartAxisGroup.js
index 1df1db2..f4135ca 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/charts/supportClasses/ChartAxisGroup.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/charts/supportClasses/ChartAxisGroup.js
@@ -12,27 +12,27 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.charts.supportClasses.ChartAxisGroup');
+goog.provide('org_apache_flex_charts_supportClasses_ChartAxisGroup');
 
-goog.require('org.apache.flex.charts.core.IAxisGroup');
-goog.require('org.apache.flex.core.UIBase');
-goog.require('org.apache.flex.core.graphics.Path');
-goog.require('org.apache.flex.html.Label');
+goog.require('org_apache_flex_charts_core_IAxisGroup');
+goog.require('org_apache_flex_core_UIBase');
+goog.require('org_apache_flex_core_graphics_Path');
+goog.require('org_apache_flex_html_Label');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.UIBase}
- * @implements {org.apache.flex.charts.core.IAxisGroup}
+ * @extends {org_apache_flex_core_UIBase}
+ * @implements {org_apache_flex_charts_core_IAxisGroup}
  */
-org.apache.flex.charts.supportClasses.ChartAxisGroup =
+org_apache_flex_charts_supportClasses_ChartAxisGroup =
     function() {
-  org.apache.flex.charts.supportClasses.ChartAxisGroup.base(this, 'constructor');
+  org_apache_flex_charts_supportClasses_ChartAxisGroup.base(this, 'constructor');
 };
 goog.inherits(
-    org.apache.flex.charts.supportClasses.ChartAxisGroup,
-    org.apache.flex.core.UIBase);
+    org_apache_flex_charts_supportClasses_ChartAxisGroup,
+    org_apache_flex_core_UIBase);
 
 
 /**
@@ -40,16 +40,16 @@ goog.inherits(
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.charts.supportClasses.ChartAxisGroup.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_charts_supportClasses_ChartAxisGroup.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ChartAxisGroup',
-                qName: 'org.apache.flex.charts.supportClasses.ChartAxisGroup' }],
-      interfaces: [org.apache.flex.charts.core.IAxisGroup] };
+                qName: 'org_apache_flex_charts_supportClasses_ChartAxisGroup' }],
+      interfaces: [org_apache_flex_charts_core_IAxisGroup] };
 
 
 /**
  * @override
  */
-org.apache.flex.charts.supportClasses.ChartAxisGroup.
+org_apache_flex_charts_supportClasses_ChartAxisGroup.
     prototype.createElement = function() {
   this.element = document.createElement('div');
   this.element.flexjs_wrapper = this;
@@ -68,11 +68,11 @@ org.apache.flex.charts.supportClasses.ChartAxisGroup.
  * @param {number} ypos The y position of the label.
  * @param {number} boxWidth The size of the area for the label.
  * @param {number} boxHeight The size of the area for the label.
- * @param {org.apache.flex.core.graphics.IStroke} tickFill The color of the path.
+ * @param {org_apache_flex_core_graphics_IStroke} tickFill The color of the path.
  */
-org.apache.flex.charts.supportClasses.ChartAxisGroup.prototype.drawHorizontalTickLabel =
+org_apache_flex_charts_supportClasses_ChartAxisGroup.prototype.drawHorizontalTickLabel =
 function(text, xpos, ypos, boxWidth, boxHeight, tickFill) {
-  var label = new org.apache.flex.html.Label();
+  var label = new org_apache_flex_html_Label();
   this.addElement(label);
   label.set_text(text);
   label.set_x(xpos - label.get_width() / 2);
@@ -87,11 +87,11 @@ function(text, xpos, ypos, boxWidth, boxHeight, tickFill) {
  * @param {number} ypos The y position of the label.
  * @param {number} boxWidth The size of the area for the label.
  * @param {number} boxHeight The size of the area for the label.
- * @param {org.apache.flex.core.graphics.IStroke} tickFill The color of the path.
+ * @param {org_apache_flex_core_graphics_IStroke} tickFill The color of the path.
  */
-org.apache.flex.charts.supportClasses.ChartAxisGroup.prototype.drawVerticalTickLabel =
+org_apache_flex_charts_supportClasses_ChartAxisGroup.prototype.drawVerticalTickLabel =
 function(text, xpos, ypos, boxWidth, boxHeight, tickFill) {
-  var label = new org.apache.flex.html.Label();
+  var label = new org_apache_flex_html_Label();
   this.addElement(label);
   label.set_text(text);
   label.set_x(xpos);
@@ -106,11 +106,11 @@ function(text, xpos, ypos, boxWidth, boxHeight, tickFill) {
  * @param {number} width The size of the area for the path.
  * @param {number} height The size of the area for the path.
  * @param {string} marks The path to draw.
- * @param {org.apache.flex.core.graphics.IStroke} tickStroke The color of the path.
+ * @param {org_apache_flex_core_graphics_IStroke} tickStroke The color of the path.
  */
-org.apache.flex.charts.supportClasses.ChartAxisGroup.prototype.drawTickMarks =
+org_apache_flex_charts_supportClasses_ChartAxisGroup.prototype.drawTickMarks =
 function(originX, originY, width, height, marks, tickStroke) {
-  var tickPath = new org.apache.flex.core.graphics.Path();
+  var tickPath = new org_apache_flex_core_graphics_Path();
   tickPath.set_x(0);
   tickPath.set_y(0);
   tickPath.set_width(this.get_width());
@@ -127,11 +127,11 @@ function(originX, originY, width, height, marks, tickStroke) {
  * @param {number} originY The y position of the path.
  * @param {number} width The size of the area for the path.
  * @param {number} height The size of the area for the path.
- * @param {org.apache.flex.core.graphics.IStroke} lineStroke The color of the path.
+ * @param {org_apache_flex_core_graphics_IStroke} lineStroke The color of the path.
  */
-org.apache.flex.charts.supportClasses.ChartAxisGroup.prototype.drawAxisLine =
+org_apache_flex_charts_supportClasses_ChartAxisGroup.prototype.drawAxisLine =
 function(originX, originY, width, height, lineStroke) {
-  var axisPath = new org.apache.flex.core.graphics.Path();
+  var axisPath = new org_apache_flex_core_graphics_Path();
   axisPath.set_x(0);
   axisPath.set_y(0);
   axisPath.set_width(this.get_width());
@@ -146,7 +146,7 @@ function(originX, originY, width, height, lineStroke) {
 /**
  * @return {void}
  */
-org.apache.flex.charts.supportClasses.ChartAxisGroup.prototype.removeAllElements =
+org_apache_flex_charts_supportClasses_ChartAxisGroup.prototype.removeAllElements =
 function() {
   var svg = this.element;
   while (svg.lastChild) {

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/charts/supportClasses/ChartDataGroup.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/charts/supportClasses/ChartDataGroup.js b/frameworks/js/FlexJS/src/org/apache/flex/charts/supportClasses/ChartDataGroup.js
index 74da22b..0a132d1 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/charts/supportClasses/ChartDataGroup.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/charts/supportClasses/ChartDataGroup.js
@@ -12,25 +12,25 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.charts.supportClasses.ChartDataGroup');
+goog.provide('org_apache_flex_charts_supportClasses_ChartDataGroup');
 
-goog.require('org.apache.flex.charts.core.IChartDataGroup');
-goog.require('org.apache.flex.html.supportClasses.NonVirtualDataGroup');
+goog.require('org_apache_flex_charts_core_IChartDataGroup');
+goog.require('org_apache_flex_html_supportClasses_NonVirtualDataGroup');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.html.supportClasses.NonVirtualDataGroup}
- * @implements {org.apache.flex.charts.core.IChartDataGroup}
+ * @extends {org_apache_flex_html_supportClasses_NonVirtualDataGroup}
+ * @implements {org_apache_flex_charts_core_IChartDataGroup}
  */
-org.apache.flex.charts.supportClasses.ChartDataGroup =
+org_apache_flex_charts_supportClasses_ChartDataGroup =
     function() {
-  org.apache.flex.charts.supportClasses.ChartDataGroup.base(this, 'constructor');
+  org_apache_flex_charts_supportClasses_ChartDataGroup.base(this, 'constructor');
 };
 goog.inherits(
-    org.apache.flex.charts.supportClasses.ChartDataGroup,
-    org.apache.flex.html.supportClasses.NonVirtualDataGroup);
+    org_apache_flex_charts_supportClasses_ChartDataGroup,
+    org_apache_flex_html_supportClasses_NonVirtualDataGroup);
 
 
 /**
@@ -38,16 +38,16 @@ goog.inherits(
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.charts.supportClasses.ChartDataGroup.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_charts_supportClasses_ChartDataGroup.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ChartDataGroup',
-                qName: 'org.apache.flex.charts.supportClasses.ChartDataGroup' }],
-      interfaces: [org.apache.flex.charts.core.IChartDataGroup] };
+                qName: 'org_apache_flex_charts_supportClasses_ChartDataGroup' }],
+      interfaces: [org_apache_flex_charts_core_IChartDataGroup] };
 
 
 /**
  * @override
  */
-org.apache.flex.charts.supportClasses.ChartDataGroup.
+org_apache_flex_charts_supportClasses_ChartDataGroup.
     prototype.createElement = function() {
   this.element = document.createElement('div');
   this.element.flexjs_wrapper = this;
@@ -65,7 +65,7 @@ org.apache.flex.charts.supportClasses.ChartDataGroup.
  * @param {number} index The position of the itemRenderer within the series.
  * @return {Object} The itemRenderer that matches the series and index.
  */
-org.apache.flex.charts.supportClasses.ChartDataGroup.prototype.getItemRendererForSeriesAtIndex =
+org_apache_flex_charts_supportClasses_ChartDataGroup.prototype.getItemRendererForSeriesAtIndex =
 function(series, index) {
   var n = this.get_numElements();
   for (var i = 0; i < n; i++)

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/Application.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/Application.js b/frameworks/js/FlexJS/src/org/apache/flex/core/Application.js
index b6c7ee2..ee6da47 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/Application.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/Application.js
@@ -12,25 +12,25 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.Application');
+goog.provide('org_apache_flex_core_Application');
 
-goog.require('org.apache.flex.core.HTMLElementWrapper');
-goog.require('org.apache.flex.core.IParent');
-goog.require('org.apache.flex.core.IValuesImpl');
-goog.require('org.apache.flex.core.ValuesManager');
-goog.require('org.apache.flex.utils.MXMLDataInterpreter');
+goog.require('org_apache_flex_core_HTMLElementWrapper');
+goog.require('org_apache_flex_core_IParent');
+goog.require('org_apache_flex_core_IValuesImpl');
+goog.require('org_apache_flex_core_ValuesManager');
+goog.require('org_apache_flex_utils_MXMLDataInterpreter');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.HTMLElementWrapper}
+ * @extends {org_apache_flex_core_HTMLElementWrapper}
  */
-org.apache.flex.core.Application = function() {
-  org.apache.flex.core.Application.base(this, 'constructor');
+org_apache_flex_core_Application = function() {
+  org_apache_flex_core_Application.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.core.Application,
-    org.apache.flex.core.HTMLElementWrapper);
+goog.inherits(org_apache_flex_core_Application,
+    org_apache_flex_core_HTMLElementWrapper);
 
 
 /**
@@ -38,40 +38,40 @@ goog.inherits(org.apache.flex.core.Application,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.Application.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_Application.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'Application',
-                qName: 'org.apache.flex.core.Application' }],
-      interfaces: [org.apache.flex.core.IParent] };
+                qName: 'org_apache_flex_core_Application' }],
+      interfaces: [org_apache_flex_core_IParent] };
 
 
 /**
  * @expose
  * @type {Object}
  */
-org.apache.flex.core.Application.prototype.controller = null;
+org_apache_flex_core_Application.prototype.controller = null;
 
 
 /**
  * @expose
  * @type {Object}
  */
-org.apache.flex.core.Application.prototype.initialView = null;
+org_apache_flex_core_Application.prototype.initialView = null;
 
 
 /**
  * @expose
- * @type {org.apache.flex.events.EventDispatcher}
+ * @type {org_apache_flex_events_EventDispatcher}
  */
-org.apache.flex.core.Application.prototype.model = null;
+org_apache_flex_core_Application.prototype.model = null;
 
 
 /**
  * @expose
- * @param {org.apache.flex.core.IValuesImpl} value The IValuesImpl.
+ * @param {org_apache_flex_core_IValuesImpl} value The IValuesImpl.
  */
-org.apache.flex.core.Application.prototype.set_valuesImpl =
+org_apache_flex_core_Application.prototype.set_valuesImpl =
     function(value) {
-  org.apache.flex.core.ValuesManager.valuesImpl = value;
+  org_apache_flex_core_ValuesManager.valuesImpl = value;
   if (value.init) {
     value.init(this);
   }
@@ -81,12 +81,12 @@ org.apache.flex.core.Application.prototype.set_valuesImpl =
 /**
  * @expose
  */
-org.apache.flex.core.Application.prototype.start = function() {
+org_apache_flex_core_Application.prototype.start = function() {
   this.element = document.getElementsByTagName('body')[0];
   this.element.flexjs_wrapper = this;
   this.element.className = 'Application';
 
-  org.apache.flex.utils.MXMLDataInterpreter.generateMXMLInstances(this, null, this.get_MXMLDescriptor());
+  org_apache_flex_utils_MXMLDataInterpreter.generateMXMLInstances(this, null, this.get_MXMLDescriptor());
 
   this.dispatchEvent('initialize');
 
@@ -101,15 +101,15 @@ org.apache.flex.core.Application.prototype.start = function() {
  * @expose
  * @param {Array} data The data for the attributes.
  */
-org.apache.flex.core.Application.prototype.generateMXMLAttributes = function(data) {
-  org.apache.flex.utils.MXMLDataInterpreter.generateMXMLProperties(this, data);
+org_apache_flex_core_Application.prototype.generateMXMLAttributes = function(data) {
+  org_apache_flex_utils_MXMLDataInterpreter.generateMXMLProperties(this, data);
 };
 
 
 /**
  * @param {Object} c The child element.
  */
-org.apache.flex.core.Application.prototype.addElement =
+org_apache_flex_core_Application.prototype.addElement =
     function(c) {
   this.element.appendChild(c.element);
   c.addedToParent();

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/BeadViewBase.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/BeadViewBase.js b/frameworks/js/FlexJS/src/org/apache/flex/core/BeadViewBase.js
index 1058c68..cf11f90 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/BeadViewBase.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/BeadViewBase.js
@@ -12,24 +12,24 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.BeadViewBase');
+goog.provide('org_apache_flex_core_BeadViewBase');
 
-goog.require('org.apache.flex.core.IBeadView');
-goog.require('org.apache.flex.events.EventDispatcher');
+goog.require('org_apache_flex_core_IBeadView');
+goog.require('org_apache_flex_events_EventDispatcher');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.events.EventDispatcher}
- * @implements {org.apache.flex.core.IBeadView}
+ * @extends {org_apache_flex_events_EventDispatcher}
+ * @implements {org_apache_flex_core_IBeadView}
  */
-org.apache.flex.core.BeadViewBase = function() {
-    org.apache.flex.core.BeadViewBase.base(this, 'constructor');
+org_apache_flex_core_BeadViewBase = function() {
+    org_apache_flex_core_BeadViewBase.base(this, 'constructor');
   };
 goog.inherits(
-              org.apache.flex.core.BeadViewBase,
-              org.apache.flex.events.EventDispatcher);
+              org_apache_flex_core_BeadViewBase,
+              org_apache_flex_events_EventDispatcher);
 
 
 /**
@@ -37,24 +37,24 @@ goog.inherits(
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.BeadViewBase.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_BeadViewBase.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'BeadViewBase',
-                qName: 'org.apache.flex.core.BeadViewBase'}],
-    interfaces: [org.apache.flex.core.IBeadView]};
+                qName: 'org_apache_flex_core_BeadViewBase'}],
+    interfaces: [org_apache_flex_core_IBeadView]};
 
 
 /**
  * @protected
  * @type {Object}
  */
-org.apache.flex.core.BeadViewBase.prototype._strand = null;
+org_apache_flex_core_BeadViewBase.prototype._strand = null;
 
 
 /**
  * @expose
  * @param {Object} value The new strand.
  */
-org.apache.flex.core.BeadViewBase.prototype.set_strand =
+org_apache_flex_core_BeadViewBase.prototype.set_strand =
 function(value) {
   if (this._strand !== value) {
     this._strand = value;
@@ -66,7 +66,7 @@ function(value) {
  * @expose
  * @return {Object} value The strand.
  */
-org.apache.flex.core.BeadViewBase.prototype.get_host =
+org_apache_flex_core_BeadViewBase.prototype.get_host =
 function() {
   return this._strand;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/CallLaterBead.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/CallLaterBead.js b/frameworks/js/FlexJS/src/org/apache/flex/core/CallLaterBead.js
index afdbfff..27a2c7b 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/CallLaterBead.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/CallLaterBead.js
@@ -12,14 +12,14 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.CallLaterBead');
+goog.provide('org_apache_flex_core_CallLaterBead');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.core.CallLaterBead = function() {
+org_apache_flex_core_CallLaterBead = function() {
 
   /**
    * @private
@@ -41,16 +41,16 @@ org.apache.flex.core.CallLaterBead = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.CallLaterBead.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_CallLaterBead.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'CallLaterBead.js',
-                qName: 'org.apache.flex.core.CallLaterBead'}] };
+                qName: 'org_apache_flex_core_CallLaterBead'}] };
 
 
 /**
  * @expose
  * @param {Object} value The new host.
  */
-org.apache.flex.core.CallLaterBead.prototype.set_strand =
+org_apache_flex_core_CallLaterBead.prototype.set_strand =
     function(value) {
   if (this.strand_ !== value) {
     this.strand_ = value;
@@ -63,7 +63,7 @@ org.apache.flex.core.CallLaterBead.prototype.set_strand =
  * @param {Array=} opt_args The optional array of arguments.
  * @param {Object=} opt_thisArg The optional 'this' object.
  */
-org.apache.flex.core.CallLaterBead.prototype.callLater =
+org_apache_flex_core_CallLaterBead.prototype.callLater =
     function(fn, opt_args, opt_thisArg) {
 
   if (this.calls_ == null)
@@ -78,7 +78,7 @@ org.apache.flex.core.CallLaterBead.prototype.callLater =
 /**
  * @protected
  */
-org.apache.flex.core.CallLaterBead.prototype.callback =
+org_apache_flex_core_CallLaterBead.prototype.callback =
     function() {
   var list = this.calls_;
   var n = list.length;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/ContainerBase.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/ContainerBase.js b/frameworks/js/FlexJS/src/org/apache/flex/core/ContainerBase.js
index ce915da..18bf504 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/ContainerBase.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/ContainerBase.js
@@ -12,21 +12,21 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.ContainerBase');
+goog.provide('org_apache_flex_core_ContainerBase');
 
-goog.require('org.apache.flex.core.IMXMLDocument');
-goog.require('org.apache.flex.core.UIBase');
-goog.require('org.apache.flex.core.ValuesManager');
+goog.require('org_apache_flex_core_IMXMLDocument');
+goog.require('org_apache_flex_core_UIBase');
+goog.require('org_apache_flex_core_ValuesManager');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.UIBase}
+ * @extends {org_apache_flex_core_UIBase}
  */
-org.apache.flex.core.ContainerBase = function() {
+org_apache_flex_core_ContainerBase = function() {
   this.mxmlProperties = null;
-  org.apache.flex.core.ContainerBase.base(this, 'constructor');
+  org_apache_flex_core_ContainerBase.base(this, 'constructor');
 
   /**
    * @private
@@ -56,28 +56,28 @@ org.apache.flex.core.ContainerBase = function() {
   this.document = this;
 
 };
-goog.inherits(org.apache.flex.core.ContainerBase,
-    org.apache.flex.core.UIBase);
+goog.inherits(org_apache_flex_core_ContainerBase,
+    org_apache_flex_core_UIBase);
 
 
 /**
  * @expose
  */
-org.apache.flex.core.ContainerBase.prototype.mxmlContent = null;
+org_apache_flex_core_ContainerBase.prototype.mxmlContent = null;
 
 
 /**
  * @expose
  * @type {Array}
  */
-org.apache.flex.core.ContainerBase.prototype.mxmlDescriptor = null;
+org_apache_flex_core_ContainerBase.prototype.mxmlDescriptor = null;
 
 
 /**
  * @expose
  * @type {Array}
  */
-org.apache.flex.core.ContainerBase.prototype.mxmlsd = null;
+org_apache_flex_core_ContainerBase.prototype.mxmlsd = null;
 
 
 /**
@@ -85,20 +85,20 @@ org.apache.flex.core.ContainerBase.prototype.mxmlsd = null;
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.ContainerBase.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_ContainerBase.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ContainerBase',
-                qName: 'org.apache.flex.core.ContainerBase'}] ,
-      interfaces: [org.apache.flex.core.IMXMLDocument]};
+                qName: 'org_apache_flex_core_ContainerBase'}] ,
+      interfaces: [org_apache_flex_core_IMXMLDocument]};
 
 
 /**
  * @override
  */
-org.apache.flex.core.ContainerBase.prototype.addedToParent = function() {
-  org.apache.flex.core.ContainerBase.base(this, 'addedToParent');
+org_apache_flex_core_ContainerBase.prototype.addedToParent = function() {
+  org_apache_flex_core_ContainerBase.base(this, 'addedToParent');
 
   if (!this.initialized_) {
-    org.apache.flex.utils.MXMLDataInterpreter.generateMXMLInstances(this.document,
+    org_apache_flex_utils_MXMLDataInterpreter.generateMXMLInstances(this.document,
         this, this.get_MXMLDescriptor());
 
     this.dispatchEvent('initBindings');
@@ -113,8 +113,8 @@ org.apache.flex.core.ContainerBase.prototype.addedToParent = function() {
  * @expose
  * @param {Array} data The data for the attributes.
  */
-org.apache.flex.core.ContainerBase.prototype.generateMXMLAttributes = function(data) {
-  org.apache.flex.utils.MXMLDataInterpreter.generateMXMLProperties(this, data);
+org_apache_flex_core_ContainerBase.prototype.generateMXMLAttributes = function(data) {
+  org_apache_flex_utils_MXMLDataInterpreter.generateMXMLProperties(this, data);
 };
 
 
@@ -122,7 +122,7 @@ org.apache.flex.core.ContainerBase.prototype.generateMXMLAttributes = function(d
  * @expose
  * @return {Array} An array of descriptors.
  */
-org.apache.flex.core.ContainerBase.prototype.get_MXMLDescriptor = function() {
+org_apache_flex_core_ContainerBase.prototype.get_MXMLDescriptor = function() {
   return this.mxmlDescriptor;
 };
 
@@ -132,7 +132,7 @@ org.apache.flex.core.ContainerBase.prototype.get_MXMLDescriptor = function() {
  * @param {Object} doc The document.
  * @param {Array} desc The descriptor data;
  */
-org.apache.flex.core.ContainerBase.prototype.setMXMLDescriptor =
+org_apache_flex_core_ContainerBase.prototype.setMXMLDescriptor =
     function(doc, desc) {
   this.mxmlDescriptor = desc;
   this.document = doc;
@@ -143,7 +143,7 @@ org.apache.flex.core.ContainerBase.prototype.setMXMLDescriptor =
  * @expose
  * @return {Array} An array of states.
  */
-org.apache.flex.core.ContainerBase.prototype.get_states = function() {
+org_apache_flex_core_ContainerBase.prototype.get_states = function() {
   return this.states_;
 };
 
@@ -152,15 +152,15 @@ org.apache.flex.core.ContainerBase.prototype.get_states = function() {
  * @expose
  * @param {Array} s An array of states.
  */
-org.apache.flex.core.ContainerBase.prototype.set_states = function(s) {
+org_apache_flex_core_ContainerBase.prototype.set_states = function(s) {
   this.states_ = s;
   this.currentState_ = s[0].name;
 
-  if (org.apache.flex.core.ValuesManager.valuesImpl.getValue) {
+  if (org_apache_flex_core_ValuesManager.valuesImpl.getValue) {
     /**
      * @type {Function}
      */
-    var impl = /** @type {Function} */ (org.apache.flex.core.ValuesManager.valuesImpl.
+    var impl = /** @type {Function} */ (org_apache_flex_core_ValuesManager.valuesImpl.
         getValue(this, 'iStatesImpl'));
     // TODO: (aharui) check if bead already exists
     this.addBead(new impl());
@@ -172,7 +172,7 @@ org.apache.flex.core.ContainerBase.prototype.set_states = function(s) {
  * @expose
  * @return {String} The current state.
  */
-org.apache.flex.core.ContainerBase.prototype.get_currentState = function() {
+org_apache_flex_core_ContainerBase.prototype.get_currentState = function() {
   return this.currentState_;
 };
 
@@ -181,8 +181,8 @@ org.apache.flex.core.ContainerBase.prototype.get_currentState = function() {
  * @expose
  * @param {String} s The current state.
  */
-org.apache.flex.core.ContainerBase.prototype.set_currentState = function(s) {
-  var event = new org.apache.flex.events.ValueChangeEvent(
+org_apache_flex_core_ContainerBase.prototype.set_currentState = function(s) {
+  var event = new org_apache_flex_events_ValueChangeEvent(
       'currentStateChange', false, false, this.currentState_, s);
   this.currentState_ = s;
   this.dispatchEvent(event);
@@ -193,7 +193,7 @@ org.apache.flex.core.ContainerBase.prototype.set_currentState = function(s) {
  * @expose
  * @return {Array} An array of states.
  */
-org.apache.flex.core.ContainerBase.prototype.get_transitions = function() {
+org_apache_flex_core_ContainerBase.prototype.get_transitions = function() {
   return this.transitions_;
 };
 
@@ -202,7 +202,7 @@ org.apache.flex.core.ContainerBase.prototype.get_transitions = function() {
  * @expose
  * @param {Array} s An array of states.
  */
-org.apache.flex.core.ContainerBase.prototype.set_transitions = function(s) {
+org_apache_flex_core_ContainerBase.prototype.set_transitions = function(s) {
   this.transitions_ = s;
 };
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/DataBindingBase.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/DataBindingBase.js b/frameworks/js/FlexJS/src/org/apache/flex/core/DataBindingBase.js
index a543182..9e36a85 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/DataBindingBase.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/DataBindingBase.js
@@ -12,14 +12,14 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.DataBindingBase');
+goog.provide('org_apache_flex_core_DataBindingBase');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.core.DataBindingBase = function() {
+org_apache_flex_core_DataBindingBase = function() {
 };
 
 
@@ -28,9 +28,9 @@ org.apache.flex.core.DataBindingBase = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.DataBindingBase.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_DataBindingBase.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'DataBindingBase',
-                qName: 'org.apache.flex.core.DataBindingBase'}] };
+                qName: 'org_apache_flex_core_DataBindingBase'}] };
 
 
 /**
@@ -39,7 +39,7 @@ org.apache.flex.core.DataBindingBase.prototype.FLEXJS_CLASS_INFO =
  * @param {string} propName The name of the property.
  * @return {boolean} True if property exists.
  */
-org.apache.flex.core.DataBindingBase.prototype.hasProperty =
+org_apache_flex_core_DataBindingBase.prototype.hasProperty =
     function(obj, propName) {
   if (typeof obj['get_' + propName] === 'function') {
     return true;
@@ -54,7 +54,7 @@ org.apache.flex.core.DataBindingBase.prototype.hasProperty =
  * @param {string} propName The name of the property.
  * @return {Object} value The value of the property.
  */
-org.apache.flex.core.DataBindingBase.prototype.getProperty =
+org_apache_flex_core_DataBindingBase.prototype.getProperty =
     function(obj, propName) {
   if (propName == 'this')
     return obj;
@@ -72,7 +72,7 @@ org.apache.flex.core.DataBindingBase.prototype.getProperty =
  * @param {string} propName The name of the property.
  * @param {Object} value The value of the property.
  */
-org.apache.flex.core.DataBindingBase.prototype.setProperty =
+org_apache_flex_core_DataBindingBase.prototype.setProperty =
 function(obj, propName, value) {
   if (typeof obj['set_' + propName] === 'function') {
     obj['set_' + propName](value);

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/FilledRectangle.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/FilledRectangle.js b/frameworks/js/FlexJS/src/org/apache/flex/core/FilledRectangle.js
index ca48ed8..9b246ad 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/FilledRectangle.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/FilledRectangle.js
@@ -12,18 +12,18 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.FilledRectangle');
+goog.provide('org_apache_flex_core_FilledRectangle');
 
-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.core.FilledRectangle = function() {
-  org.apache.flex.core.FilledRectangle.base(this, 'constructor');
+org_apache_flex_core_FilledRectangle = function() {
+  org_apache_flex_core_FilledRectangle.base(this, 'constructor');
 
   /**
    * @private
@@ -31,8 +31,8 @@ org.apache.flex.core.FilledRectangle = function() {
    */
   this.fillColor_ = 0;
 };
-goog.inherits(org.apache.flex.core.FilledRectangle,
-    org.apache.flex.core.UIBase);
+goog.inherits(org_apache_flex_core_FilledRectangle,
+    org_apache_flex_core_UIBase);
 
 
 /**
@@ -40,16 +40,16 @@ goog.inherits(org.apache.flex.core.FilledRectangle,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.FilledRectangle.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_FilledRectangle.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'FilledRectangle',
-                qName: 'org.apache.flex.core.FilledRectangle' }] };
+                qName: 'org_apache_flex_core_FilledRectangle' }] };
 
 
 /**
  * @override
  */
-org.apache.flex.core.FilledRectangle.prototype.addedToParent = function() {
-  org.apache.flex.core.FilledRectangle.base(this, 'addedToParent');
+org_apache_flex_core_FilledRectangle.prototype.addedToParent = function() {
+  org_apache_flex_core_FilledRectangle.base(this, 'addedToParent');
   this.drawRect(this.get_x(), this.get_y(), this.get_width(), this.get_height());
 };
 
@@ -58,7 +58,7 @@ org.apache.flex.core.FilledRectangle.prototype.addedToParent = function() {
  * @expose
  * @return {number} The fill color.
  */
-org.apache.flex.core.UIBase.prototype.get_fillColor = function() {
+org_apache_flex_core_UIBase.prototype.get_fillColor = function() {
   return this.fillColor_;
 };
 
@@ -66,7 +66,7 @@ org.apache.flex.core.UIBase.prototype.get_fillColor = function() {
 /**
  * @param {number} value The fill color.
  */
-org.apache.flex.core.UIBase.prototype.set_fillColor = function(value) {
+org_apache_flex_core_UIBase.prototype.set_fillColor = function(value) {
   this.fillColor_ = value;
 };
 
@@ -78,7 +78,7 @@ org.apache.flex.core.UIBase.prototype.set_fillColor = function(value) {
  * @param {number} width The width.
  * @param {number} height The height.
  */
-org.apache.flex.core.UIBase.prototype.drawRect = function(x, y, width, height) {
+org_apache_flex_core_UIBase.prototype.drawRect = function(x, y, width, height) {
   this.element.style.position = 'absolute';
   this.element.style.backgroundColor = '#' + this.fillColor_.toString(16);
   if (!isNaN(x)) this.set_x(x);

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/FormatBase.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/FormatBase.js b/frameworks/js/FlexJS/src/org/apache/flex/core/FormatBase.js
index 010e560..9799929 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/FormatBase.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/FormatBase.js
@@ -17,23 +17,23 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.FormatBase');
+goog.provide('org_apache_flex_core_FormatBase');
 
-goog.require('org.apache.flex.core.IFormatBead');
-goog.require('org.apache.flex.events.EventDispatcher');
+goog.require('org_apache_flex_core_IFormatBead');
+goog.require('org_apache_flex_events_EventDispatcher');
 
 
 
 /**
  * @constructor
- * @implements {org.apache.flex.core.IFormatBead}
- * @extends {org.apache.flex.events.EventDispatcher}
+ * @implements {org_apache_flex_core_IFormatBead}
+ * @extends {org_apache_flex_events_EventDispatcher}
  */
-org.apache.flex.core.FormatBase = function() {
+org_apache_flex_core_FormatBase = function() {
   goog.base(this);
 };
-goog.inherits(org.apache.flex.core.FormatBase,
-    org.apache.flex.events.EventDispatcher);
+goog.inherits(org_apache_flex_core_FormatBase,
+    org_apache_flex_events_EventDispatcher);
 
 
 /**
@@ -41,24 +41,24 @@ goog.inherits(org.apache.flex.core.FormatBase,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.FormatBase.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_FormatBase.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'FormatBase',
-                qName: 'org.apache.flex.core.FormatBase' }],
-      interfaces: [org.apache.flex.core.IFormatBead] };
+                qName: 'org_apache_flex_core_FormatBase' }],
+      interfaces: [org_apache_flex_core_IFormatBead] };
 
 
 /**
  * @private
- * @type {org.apache.flex.core.IStrand}
+ * @type {org_apache_flex_core_IStrand}
  */
-org.apache.flex.core.FormatBase.prototype.strand_ = null;
+org_apache_flex_core_FormatBase.prototype.strand_ = null;
 
 
 /**
  * @expose
- * @param {org.apache.flex.core.IStrand} value
+ * @param {org_apache_flex_core_IStrand} value
  */
-org.apache.flex.core.FormatBase.prototype.set_strand = function(value) {
+org_apache_flex_core_FormatBase.prototype.set_strand = function(value) {
   this.strand_ = value;
 };
 
@@ -66,26 +66,26 @@ org.apache.flex.core.FormatBase.prototype.set_strand = function(value) {
 /**
  * @type {string}
  */
-org.apache.flex.core.FormatBase.prototype._propertyName = 'text';
+org_apache_flex_core_FormatBase.prototype._propertyName = 'text';
 
 
 /**
  * @type {string}
  */
-org.apache.flex.core.FormatBase.prototype._eventName = 'textChange';
+org_apache_flex_core_FormatBase.prototype._eventName = 'textChange';
 
 
 /**
  * @type {string}
  */
-org.apache.flex.core.FormatBase.prototype._formattedResult = '';
+org_apache_flex_core_FormatBase.prototype._formattedResult = '';
 
 
 /**
  * @expose
  * @return {Object}
  */
-org.apache.flex.core.FormatBase.prototype.get_propertyValue = function() {
+org_apache_flex_core_FormatBase.prototype.get_propertyValue = function() {
   var value = this.strand_['get_' + this.get_propertyName()]();
   return value;
 };
@@ -95,7 +95,7 @@ org.apache.flex.core.FormatBase.prototype.get_propertyValue = function() {
  * @expose
  * @return {string}
  */
-org.apache.flex.core.FormatBase.prototype.get_propertyName = function() {
+org_apache_flex_core_FormatBase.prototype.get_propertyName = function() {
   if (this._propertyName == null) {
     this._propertyName = 'text';
   }
@@ -107,7 +107,7 @@ org.apache.flex.core.FormatBase.prototype.get_propertyName = function() {
  * @expose
  * @param {string} value
  */
-org.apache.flex.core.FormatBase.prototype.set_propertyName = function(value) {
+org_apache_flex_core_FormatBase.prototype.set_propertyName = function(value) {
   this._propertyName = value;
 };
 
@@ -116,7 +116,7 @@ org.apache.flex.core.FormatBase.prototype.set_propertyName = function(value) {
  * @expose
  * @return {string}
  */
-org.apache.flex.core.FormatBase.prototype.get_eventName = function() {
+org_apache_flex_core_FormatBase.prototype.get_eventName = function() {
   if (this._eventName == null) {
     return this._propertyName + 'Change';
   }
@@ -128,7 +128,7 @@ org.apache.flex.core.FormatBase.prototype.get_eventName = function() {
  * @expose
  * @param {string} value
  */
-org.apache.flex.core.FormatBase.prototype.set_eventName = function(value) {
+org_apache_flex_core_FormatBase.prototype.set_eventName = function(value) {
   this._eventName = value;
 };
 
@@ -137,7 +137,7 @@ org.apache.flex.core.FormatBase.prototype.set_eventName = function(value) {
  * @expose
  * @return {string}
  */
-org.apache.flex.core.FormatBase.prototype.get_formattedString = function() {
+org_apache_flex_core_FormatBase.prototype.get_formattedString = function() {
   return null;
 };
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/HTMLElementWrapper.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/HTMLElementWrapper.js b/frameworks/js/FlexJS/src/org/apache/flex/core/HTMLElementWrapper.js
index 4295ea4..cc38ec7 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/HTMLElementWrapper.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/HTMLElementWrapper.js
@@ -12,24 +12,24 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.HTMLElementWrapper');
+goog.provide('org_apache_flex_core_HTMLElementWrapper');
 
-goog.require('org.apache.flex.core.IBeadModel');
-goog.require('org.apache.flex.core.IStrand');
-goog.require('org.apache.flex.events.EventDispatcher');
-goog.require('org.apache.flex.utils.Language');
+goog.require('org_apache_flex_core_IBeadModel');
+goog.require('org_apache_flex_core_IStrand');
+goog.require('org_apache_flex_events_EventDispatcher');
+goog.require('org_apache_flex_utils_Language');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.events.EventDispatcher}
+ * @extends {org_apache_flex_events_EventDispatcher}
  */
-org.apache.flex.core.HTMLElementWrapper = function() {
-  org.apache.flex.core.HTMLElementWrapper.base(this, 'constructor');
+org_apache_flex_core_HTMLElementWrapper = function() {
+  org_apache_flex_core_HTMLElementWrapper.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.core.HTMLElementWrapper,
-    org.apache.flex.events.EventDispatcher);
+goog.inherits(org_apache_flex_core_HTMLElementWrapper,
+    org_apache_flex_events_EventDispatcher);
 
 
 /**
@@ -37,38 +37,38 @@ goog.inherits(org.apache.flex.core.HTMLElementWrapper,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.HTMLElementWrapper.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_HTMLElementWrapper.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'HTMLElementWrapper',
-                qName: 'org.apache.flex.core.HTMLElementWrapper' }],
-      interfaces: [org.apache.flex.core.IStrand] };
+                qName: 'org_apache_flex_core_HTMLElementWrapper' }],
+      interfaces: [org_apache_flex_core_IStrand] };
 
 
 /**
  * @expose
  * @type {EventTarget}
  */
-org.apache.flex.core.HTMLElementWrapper.prototype.element = null;
+org_apache_flex_core_HTMLElementWrapper.prototype.element = null;
 
 
 /**
  * @protected
  * @type {Array.<Object>}
  */
-org.apache.flex.core.HTMLElementWrapper.prototype.strand = null;
+org_apache_flex_core_HTMLElementWrapper.prototype.strand = null;
 
 
 /**
  * @expose
  * @param {Object} bead The new bead.
  */
-org.apache.flex.core.HTMLElementWrapper.prototype.addBead = function(bead) {
+org_apache_flex_core_HTMLElementWrapper.prototype.addBead = function(bead) {
   if (!this.strand) {
     this.strand = [];
   }
 
   this.strand.push(bead);
 
-  if (org.apache.flex.utils.Language.is(bead, org.apache.flex.core.IBeadModel)) {
+  if (org_apache_flex_utils_Language.is(bead, org_apache_flex_core_IBeadModel)) {
     this.model = bead;
   }
 
@@ -81,7 +81,7 @@ org.apache.flex.core.HTMLElementWrapper.prototype.addBead = function(bead) {
  * @param {!Object} classOrInterface The requested bead type.
  * @return {Object} The bead.
  */
-org.apache.flex.core.HTMLElementWrapper.prototype.getBeadByType =
+org_apache_flex_core_HTMLElementWrapper.prototype.getBeadByType =
     function(classOrInterface) {
   var bead, i, n;
 
@@ -89,7 +89,7 @@ org.apache.flex.core.HTMLElementWrapper.prototype.getBeadByType =
   for (i = 0; i < n; i++) {
     bead = this.strand[i];
 
-    if (org.apache.flex.utils.Language.is(bead, classOrInterface)) {
+    if (org_apache_flex_utils_Language.is(bead, classOrInterface)) {
       return bead;
     }
   }
@@ -102,7 +102,7 @@ org.apache.flex.core.HTMLElementWrapper.prototype.getBeadByType =
  * @expose
  * @return {Array} The array of descriptors.
  */
-org.apache.flex.core.HTMLElementWrapper.prototype.get_MXMLDescriptor =
+org_apache_flex_core_HTMLElementWrapper.prototype.get_MXMLDescriptor =
     function() {
   return null;
 };
@@ -113,7 +113,7 @@ org.apache.flex.core.HTMLElementWrapper.prototype.get_MXMLDescriptor =
  * @param {Object} bead The bead to remove.
  * @return {Object} The bead.
  */
-org.apache.flex.core.HTMLElementWrapper.prototype.removeBead = function(bead) {
+org_apache_flex_core_HTMLElementWrapper.prototype.removeBead = function(bead) {
   var i, n, value;
 
   n = this.strand.length;
@@ -172,7 +172,7 @@ goog.events.BrowserEvent.prototype.get_target = function() {
  * Hack to allow event.currentTarget expressions to work
  *
  * @expose
- * @return {Object} The wrapping object.
+ * @return {?Node|Object} The wrapping object.
  */
 goog.events.BrowserEvent.prototype.get_currentTarget = function() {
   // if it is a faked event so just return the currentTarget

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IBead.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IBead.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IBead.js
index a6f7cb1..3586a37 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IBead.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IBead.js
@@ -17,7 +17,7 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IBead');
+goog.provide('org_apache_flex_core_IBead');
 
 
 
@@ -26,7 +26,7 @@ goog.provide('org.apache.flex.core.IBead');
  *
  * @interface
  */
-org.apache.flex.core.IBead = function() {
+org_apache_flex_core_IBead = function() {
 };
 
 
@@ -35,16 +35,16 @@ org.apache.flex.core.IBead = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IBead.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_IBead.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'IBead',
-                qName: 'org.apache.flex.core.IBead' }] };
+                qName: 'org_apache_flex_core_IBead' }] };
 
 
 /**
  * set_strand()
  *
  * @expose
- * @param {org.apache.flex.core.IStrand} value The new host.
+ * @param {org_apache_flex_core_IStrand} value The new host.
  */
-org.apache.flex.core.IBead.prototype.set_strand =
+org_apache_flex_core_IBead.prototype.set_strand =
     function(value) {};

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IBeadController.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IBeadController.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IBeadController.js
index 8537592..87dacd3 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IBeadController.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IBeadController.js
@@ -17,17 +17,17 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IBeadController');
+goog.provide('org_apache_flex_core_IBeadController');
 
-goog.require('org.apache.flex.core.IBead');
+goog.require('org_apache_flex_core_IBead');
 
 
 
 /**
  * @interface
- * @extends {org.apache.flex.core.IBead}
+ * @extends {org_apache_flex_core_IBead}
  */
-org.apache.flex.core.IBeadController = function() {
+org_apache_flex_core_IBeadController = function() {
 };
 
 
@@ -36,7 +36,7 @@ org.apache.flex.core.IBeadController = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IBeadController.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_IBeadController.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'IBeadController',
-                qName: 'org.apache.flex.core.IBeadController' }],
-      interfaces: [org.apache.flex.core.IBead] };
+                qName: 'org_apache_flex_core_IBeadController' }],
+      interfaces: [org_apache_flex_core_IBead] };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IBeadLayout.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IBeadLayout.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IBeadLayout.js
index 95fdc61..799c309 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IBeadLayout.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IBeadLayout.js
@@ -17,17 +17,17 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IBeadLayout');
+goog.provide('org_apache_flex_core_IBeadLayout');
 
-goog.require('org.apache.flex.core.IBead');
+goog.require('org_apache_flex_core_IBead');
 
 
 
 /**
  * @interface
- * @extends {org.apache.flex.core.IBead}
+ * @extends {org_apache_flex_core_IBead}
  */
-org.apache.flex.core.IBeadLayout = function() {
+org_apache_flex_core_IBeadLayout = function() {
 };
 
 
@@ -36,7 +36,7 @@ org.apache.flex.core.IBeadLayout = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IBeadLayout.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_IBeadLayout.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'IBeadLayout',
-                qName: 'org.apache.flex.core.IBeadLayout' }],
-      interfaces: [org.apache.flex.core.IBead] };
+                qName: 'org_apache_flex_core_IBeadLayout' }],
+      interfaces: [org_apache_flex_core_IBead] };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IBeadModel.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IBeadModel.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IBeadModel.js
index eddad4b..476e088 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IBeadModel.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IBeadModel.js
@@ -17,19 +17,19 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IBeadModel');
+goog.provide('org_apache_flex_core_IBeadModel');
 
-goog.require('org.apache.flex.core.IBead');
-goog.require('org.apache.flex.events.IEventDispatcher');
+goog.require('org_apache_flex_core_IBead');
+goog.require('org_apache_flex_events_IEventDispatcher');
 
 
 
 /**
  * @interface
- * @extends {org.apache.flex.core.IBead}
- * @extends {org.apache.flex.events.IEventDispatcher}
+ * @extends {org_apache_flex_core_IBead}
+ * @extends {org_apache_flex_events_IEventDispatcher}
  */
-org.apache.flex.core.IBeadModel = function() {
+org_apache_flex_core_IBeadModel = function() {
 };
 
 
@@ -38,8 +38,8 @@ org.apache.flex.core.IBeadModel = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IBeadModel.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_IBeadModel.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'IBeadModel',
-                qName: 'org.apache.flex.core.IBeadModel' }],
-      interfaces: [org.apache.flex.core.IBead,
-                   org.apache.flex.events.IEventDispatcher] };
+                qName: 'org_apache_flex_core_IBeadModel' }],
+      interfaces: [org_apache_flex_core_IBead,
+                   org_apache_flex_events_IEventDispatcher] };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IBeadView.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IBeadView.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IBeadView.js
index 5cac33f..c5550bb 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IBeadView.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IBeadView.js
@@ -17,14 +17,14 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IBeadView');
+goog.provide('org_apache_flex_core_IBeadView');
 
 
 
 /**
  * @interface
  */
-org.apache.flex.core.IBeadView = function() {
+org_apache_flex_core_IBeadView = function() {
 };
 
 
@@ -33,6 +33,6 @@ org.apache.flex.core.IBeadView = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IBeadView.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_IBeadView.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'IBeadView',
-                qName: 'org.apache.flex.core.IBeadView' }] };
+                qName: 'org_apache_flex_core_IBeadView' }] };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IChild.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IChild.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IChild.js
index dde711a..c1b5363 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IChild.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IChild.js
@@ -13,28 +13,28 @@
  */
 
 /**
- * org.apache.flex.core.IChild
+ * org_apache_flex_core_IChild
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IChild');
+goog.provide('org_apache_flex_core_IChild');
 
 
 
 /**
  * @interface
  */
-org.apache.flex.core.IChild = function() {
+org_apache_flex_core_IChild = function() {
 };
 
 
 /**
  * @return {Object} The parent of the child.
  */
-org.apache.flex.core.IChild.prototype.get_parent = function() {};
+org_apache_flex_core_IChild.prototype.get_parent = function() {};
 
 
 /**
@@ -42,6 +42,6 @@ org.apache.flex.core.IChild.prototype.get_parent = function() {};
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IChild.prototype.FLEXJS_CLASS_INFO = {
-  names: [{ name: 'IChild', qName: 'org.apache.flex.core.IChild'}]
+org_apache_flex_core_IChild.prototype.FLEXJS_CLASS_INFO = {
+  names: [{ name: 'IChild', qName: 'org_apache_flex_core_IChild'}]
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IContainer.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IContainer.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IContainer.js
index 50cfcc7..8a835a5 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IContainer.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IContainer.js
@@ -13,38 +13,38 @@
  */
 
 /**
- * org.apache.flex.core.IContainer
+ * org_apache_flex_core_IContainer
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IContainer');
+goog.provide('org_apache_flex_core_IContainer');
 
-goog.require('org.apache.flex.core.IParent');
+goog.require('org_apache_flex_core_IParent');
 
 
 
 /**
  * @interface
- * @extends {org.apache.flex.core.IParent}
+ * @extends {org_apache_flex_core_IParent}
  */
-org.apache.flex.core.IContainer = function() {
+org_apache_flex_core_IContainer = function() {
 };
 
 
 /**
  * @return {Array} All of the children of the container.
  */
-org.apache.flex.core.IContainer.prototype.getChildren = function() {};
+org_apache_flex_core_IContainer.prototype.getChildren = function() {};
 
 
 /**
  * Called after all of the children have been added to the container.
  * @return {void}
  */
-org.apache.flex.core.IContainer.prototype.childrenAdded = function() {};
+org_apache_flex_core_IContainer.prototype.childrenAdded = function() {};
 
 
 /**
@@ -52,7 +52,7 @@ org.apache.flex.core.IContainer.prototype.childrenAdded = function() {};
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IContainer.prototype.FLEXJS_CLASS_INFO = {
-  names: [{ name: 'IContainer', qName: 'org.apache.flex.core.IContainer'}],
-  interfaces: [org.apache.flex.core.IParent]
+org_apache_flex_core_IContainer.prototype.FLEXJS_CLASS_INFO = {
+  names: [{ name: 'IContainer', qName: 'org_apache_flex_core_IContainer'}],
+  interfaces: [org_apache_flex_core_IParent]
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IContentView.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IContentView.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IContentView.js
index d326978..bdc71b5 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IContentView.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IContentView.js
@@ -13,84 +13,84 @@
  */
 
 /**
- * org.apache.flex.core.IContentView
+ * org_apache_flex_core_IContentView
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IContentView');
+goog.provide('org_apache_flex_core_IContentView');
 
 
 
 /**
  * @interface
  */
-org.apache.flex.core.IContentView = function() {
+org_apache_flex_core_IContentView = function() {
 };
 
 
 /**
  * @return {number} x position.
  */
-org.apache.flex.core.IContentView.prototype.get_x = function() {};
+org_apache_flex_core_IContentView.prototype.get_x = function() {};
 
 
 /**
  * @param {number} value x position.
  */
-org.apache.flex.core.IContentView.prototype.set_x = function(value) {};
+org_apache_flex_core_IContentView.prototype.set_x = function(value) {};
 
 
 /**
  * @return {number} y position.
  */
-org.apache.flex.core.IContentView.prototype.get_y = function() {};
+org_apache_flex_core_IContentView.prototype.get_y = function() {};
 
 
 /**
  * @param {number} value y position.
  */
-org.apache.flex.core.IContentView.prototype.set_y = function(value) {};
+org_apache_flex_core_IContentView.prototype.set_y = function(value) {};
 
 
 /**
  * @return {number} Component width.
  */
-org.apache.flex.core.IContentView.prototype.get_width = function() {};
+org_apache_flex_core_IContentView.prototype.get_width = function() {};
 
 
 /**
  * @param {number} value Component width.
  */
-org.apache.flex.core.IContentView.prototype.set_width = function(value) {};
+org_apache_flex_core_IContentView.prototype.set_width = function(value) {};
 
 
 /**
  * @return {number} Component height.
  */
-org.apache.flex.core.IContentView.prototype.get_height = function() {};
+org_apache_flex_core_IContentView.prototype.get_height = function() {};
 
 
 /**
  * @param {number} value Component height.
  */
-org.apache.flex.core.IContentView.prototype.set_height = function(value) {};
+org_apache_flex_core_IContentView.prototype.set_height = function(value) {};
 
 
 /**
  * Adds a new element to component.
  * @param {Object} value The child element being added.
  */
-org.apache.flex.core.IContentView.prototype.addElement = function(value) {};
+org_apache_flex_core_IContentView.prototype.addElement = function(value) {};
 
 
 /**
  * Removes all of the component's children.
  * @return {void}
  */
-org.apache.flex.core.IContentView.prototype.removeAllElements = function() {};
+org_apache_flex_core_IContentView.prototype.removeAllElements = function() {};
 
 
 /**
@@ -98,6 +98,6 @@ org.apache.flex.core.IContentView.prototype.removeAllElements = function() {};
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IContentView.prototype.FLEXJS_CLASS_INFO = {
-  names: [{ name: 'IContentView', qName: 'org.apache.flex.core.IContentView'}]
+org_apache_flex_core_IContentView.prototype.FLEXJS_CLASS_INFO = {
+  names: [{ name: 'IContentView', qName: 'org_apache_flex_core_IContentView'}]
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IDataGridModel.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IDataGridModel.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IDataGridModel.js
index 12dd93a..4578798 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IDataGridModel.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IDataGridModel.js
@@ -17,17 +17,17 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IDataGridModel');
+goog.provide('org_apache_flex_core_IDataGridModel');
 
-goog.require('org.apache.flex.core.ISelectionModel');
+goog.require('org_apache_flex_core_ISelectionModel');
 
 
 
 /**
  * @interface
- * @extends {org.apache.flex.core.ISelectionModel}
+ * @extends {org_apache_flex_core_ISelectionModel}
  */
-org.apache.flex.core.IDataGridModel = function() {
+org_apache_flex_core_IDataGridModel = function() {
 };
 
 
@@ -35,7 +35,7 @@ org.apache.flex.core.IDataGridModel = function() {
  * @const
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IDataGridModel.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_IDataGridModel.prototype.FLEXJS_CLASS_INFO =
 { names: [{ name: 'IDataGridModel',
-                qName: 'org.apache.flex.core.IDataGridModel' }],
-      interfaces: [org.apache.flex.core.ISelectionModel] };
+                qName: 'org_apache_flex_core_IDataGridModel' }],
+      interfaces: [org_apache_flex_core_ISelectionModel] };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IDataProviderItemRendererMapper.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IDataProviderItemRendererMapper.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IDataProviderItemRendererMapper.js
index d44593c..e4156a9 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IDataProviderItemRendererMapper.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IDataProviderItemRendererMapper.js
@@ -13,24 +13,24 @@
  */
 
 /**
- * org.apache.flex.html.beads.IDataProviderItemRendererMapper
+ * org_apache_flex_html_beads_IDataProviderItemRendererMapper
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IDataProviderItemRendererMapper');
+goog.provide('org_apache_flex_core_IDataProviderItemRendererMapper');
 
-goog.require('org.apache.flex.core.IBead');
+goog.require('org_apache_flex_core_IBead');
 
 
 
 /**
  * @interface
- * @extends {org.apache.flex.core.IBead}
+ * @extends {org_apache_flex_core_IBead}
  */
-org.apache.flex.core.IDataProviderItemRendererMapper =
+org_apache_flex_core_IDataProviderItemRendererMapper =
 function() {
 };
 
@@ -38,7 +38,7 @@ function() {
 /**
  * @expose
  */
-org.apache.flex.core.IDataProviderItemRendererMapper.prototype.itemRendererFactory = null;
+org_apache_flex_core_IDataProviderItemRendererMapper.prototype.itemRendererFactory = null;
 
 
 /**
@@ -46,8 +46,8 @@ org.apache.flex.core.IDataProviderItemRendererMapper.prototype.itemRendererFacto
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IDataProviderItemRendererMapper.prototype.FLEXJS_CLASS_INFO = {
+org_apache_flex_core_IDataProviderItemRendererMapper.prototype.FLEXJS_CLASS_INFO = {
   names: [{ name: 'IDataProviderItemRendererMapper',
-             qName: 'org.apache.flex.core.IDataProviderItemRendererMapper'}],
-  interfaces: [org.apache.flex.core.IBead]
+             qName: 'org_apache_flex_core_IDataProviderItemRendererMapper'}],
+  interfaces: [org_apache_flex_core_IBead]
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IDocument.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IDocument.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IDocument.js
index 1db24e1..3c1ebf1 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IDocument.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IDocument.js
@@ -17,7 +17,7 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IDocument');
+goog.provide('org_apache_flex_core_IDocument');
 
 
 
@@ -26,7 +26,7 @@ goog.provide('org.apache.flex.core.IDocument');
  *
  * @interface
  */
-org.apache.flex.core.IDocument = function() {
+org_apache_flex_core_IDocument = function() {
 };
 
 
@@ -35,9 +35,9 @@ org.apache.flex.core.IDocument = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IDocument.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_IDocument.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'IDocument',
-                qName: 'org.apache.flex.core.IDocument' }] };
+                qName: 'org_apache_flex_core_IDocument' }] };
 
 
 /**
@@ -47,5 +47,5 @@ org.apache.flex.core.IDocument.prototype.FLEXJS_CLASS_INFO =
  * @param {Object} document The DOM document element.
  * @param {string=} opt_id The id (optional).
  */
-org.apache.flex.core.IDocument.prototype.setDocument =
+org_apache_flex_core_IDocument.prototype.setDocument =
     function(document, opt_id) {};

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IEffectTimer.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IEffectTimer.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IEffectTimer.js
index 5880318..c727db3 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IEffectTimer.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IEffectTimer.js
@@ -13,24 +13,24 @@
  */
 
 /**
- * org.apache.flex.core.IEffectTimer
+ * org_apache_flex_core_IEffectTimer
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IEffectTimer');
+goog.provide('org_apache_flex_core_IEffectTimer');
 
-goog.require('org.apache.flex.events.IEventDispatcher');
+goog.require('org_apache_flex_events_IEventDispatcher');
 
 
 
 /**
  * @interface
- * @extends {org.apache.flex.events.IEventDispatcher}
+ * @extends {org_apache_flex_events_IEventDispatcher}
  */
-org.apache.flex.core.IEffectTimer = function() {
+org_apache_flex_core_IEffectTimer = function() {
 };
 
 
@@ -39,7 +39,7 @@ org.apache.flex.core.IEffectTimer = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IEffectTimer.prototype.FLEXJS_CLASS_INFO = {
-  names: [{ name: 'IEffectTimer', qName: 'org.apache.flex.core.IEffectTimer'}],
-  interfaces: [org.apache.flex.events.IEventDispatcher]
+org_apache_flex_core_IEffectTimer.prototype.FLEXJS_CLASS_INFO = {
+  names: [{ name: 'IEffectTimer', qName: 'org_apache_flex_core_IEffectTimer'}],
+  interfaces: [org_apache_flex_events_IEventDispatcher]
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IFormatBead.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IFormatBead.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IFormatBead.js
index 541d6ff..ad8b1b2 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IFormatBead.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IFormatBead.js
@@ -17,47 +17,47 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IFormatBead');
+goog.provide('org_apache_flex_core_IFormatBead');
 
 
 
 /**
  * @interface
- * @extends {org.apache.flex.core.IBead}
- * @extends {org.apache.flex.events.IEventDispatcher}
+ * @extends {org_apache_flex_core_IBead}
+ * @extends {org_apache_flex_events_IEventDispatcher}
  */
-org.apache.flex.core.IFormatBead = function() {
+org_apache_flex_core_IFormatBead = function() {
 };
 
 
 /**
  * @return {string}
  */
-org.apache.flex.core.IFormatBead.prototype.get_propertyName = function() {};
+org_apache_flex_core_IFormatBead.prototype.get_propertyName = function() {};
 
 
 /**
  * @param {string} value
  */
-org.apache.flex.core.IFormatBead.prototype.set_propertyName = function(value) {};
+org_apache_flex_core_IFormatBead.prototype.set_propertyName = function(value) {};
 
 
 /**
  * @return {string}
  */
-org.apache.flex.core.IFormatBead.prototype.get_eventName = function() {};
+org_apache_flex_core_IFormatBead.prototype.get_eventName = function() {};
 
 
 /**
  * @param {string} value
  */
-org.apache.flex.core.IFormatBead.prototype.set_eventName = function(value) {};
+org_apache_flex_core_IFormatBead.prototype.set_eventName = function(value) {};
 
 
 /**
  * @return {string}
  */
-org.apache.flex.core.IFormatBead.prototype.get_formattedString = function() {};
+org_apache_flex_core_IFormatBead.prototype.get_formattedString = function() {};
 
 
 /**
@@ -65,7 +65,7 @@ org.apache.flex.core.IFormatBead.prototype.get_formattedString = function() {};
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IFormatBead.prototype.FLEXJS_CLASS_INFO = {
-  names: [{ name: 'IFormatBead', qName: 'org.apache.flex.core.IFormatBead'}],
-  interfaces: [org.apache.flex.core.IBead, org.apache.flex.events.IEventDispatcher]
+org_apache_flex_core_IFormatBead.prototype.FLEXJS_CLASS_INFO = {
+  names: [{ name: 'IFormatBead', qName: 'org_apache_flex_core_IFormatBead'}],
+  interfaces: [org_apache_flex_core_IBead, org_apache_flex_events_IEventDispatcher]
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IItemRenderer.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IItemRenderer.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IItemRenderer.js
index 6366f8e..56cb573 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IItemRenderer.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IItemRenderer.js
@@ -17,14 +17,14 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IItemRenderer');
+goog.provide('org_apache_flex_core_IItemRenderer');
 
 
 
 /**
  * @interface
  */
-org.apache.flex.core.IItemRenderer = function() {
+org_apache_flex_core_IItemRenderer = function() {
 };
 
 
@@ -33,6 +33,6 @@ org.apache.flex.core.IItemRenderer = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IItemRenderer.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_IItemRenderer.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'IItemRenderer',
-                qName: 'org.apache.flex.core.IItemRenderer' }] };
+                qName: 'org_apache_flex_core_IItemRenderer' }] };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IItemRendererClassFactory.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IItemRendererClassFactory.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IItemRendererClassFactory.js
index 297121e..dd4b195 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IItemRendererClassFactory.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IItemRendererClassFactory.js
@@ -17,14 +17,14 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IItemRendererClassFactory');
+goog.provide('org_apache_flex_core_IItemRendererClassFactory');
 
 
 
 /**
  * @interface
  */
-org.apache.flex.core.IItemRendererClassFactory = function() {
+org_apache_flex_core_IItemRendererClassFactory = function() {
 };
 
 
@@ -33,6 +33,6 @@ org.apache.flex.core.IItemRendererClassFactory = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IItemRendererClassFactory.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_IItemRendererClassFactory.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'IItemRendererClassFactory',
-                qName: 'org.apache.flex.core.IItemRendererClassFactory' }] };
+                qName: 'org_apache_flex_core_IItemRendererClassFactory' }] };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IItemRendererFactory.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IItemRendererFactory.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IItemRendererFactory.js
index df712dc..2bb3ab5 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IItemRendererFactory.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IItemRendererFactory.js
@@ -17,14 +17,14 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IItemRendererFactory');
+goog.provide('org_apache_flex_core_IItemRendererFactory');
 
 
 
 /**
  * @interface
  */
-org.apache.flex.core.IItemRendererFactory = function() {
+org_apache_flex_core_IItemRendererFactory = function() {
 };
 
 
@@ -33,13 +33,13 @@ org.apache.flex.core.IItemRendererFactory = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IItemRendererFactory.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_IItemRendererFactory.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'IItemRendererFactory',
-                qName: 'org.apache.flex.core.IItemRendererFactory' }] };
+                qName: 'org_apache_flex_core_IItemRendererFactory' }] };
 
 
 /**
  * @expose
  * @return {Object} A new instance of the itemRenderer.
  */
-org.apache.flex.core.IItemRendererFactory.prototype.newInstance = function() {};
\ No newline at end of file
+org_apache_flex_core_IItemRendererFactory.prototype.newInstance = function() {};

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IItemRendererParent.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IItemRendererParent.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IItemRendererParent.js
index 79dc296..e64f44a 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IItemRendererParent.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IItemRendererParent.js
@@ -17,14 +17,14 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IItemRendererParent');
+goog.provide('org_apache_flex_core_IItemRendererParent');
 
 
 
 /**
  * @interface
  */
-org.apache.flex.core.IItemRendererParent = function() {
+org_apache_flex_core_IItemRendererParent = function() {
 };
 
 
@@ -33,15 +33,15 @@ org.apache.flex.core.IItemRendererParent = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IItemRendererParent.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_IItemRendererParent.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'IItemRendererParent',
-                qName: 'org.apache.flex.core.IItemRendererParent' }] };
+                qName: 'org_apache_flex_core_IItemRendererParent' }] };
 
 
 /**
  * @expose
  * @param {number} index The selected index.
  */
-org.apache.flex.core.IItemRendererParent.prototype.
+org_apache_flex_core_IItemRendererParent.prototype.
     getItemRendererForIndex = function(index) {
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/ILayoutChild.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/ILayoutChild.js b/frameworks/js/FlexJS/src/org/apache/flex/core/ILayoutChild.js
index 9ab3f1d..308d3d6 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/ILayoutChild.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/ILayoutChild.js
@@ -17,16 +17,16 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.ILayoutChild');
+goog.provide('org_apache_flex_core_ILayoutChild');
 
-goog.require('org.apache.flex.core.IChild');
+goog.require('org_apache_flex_core_IChild');
 
 
 
 /**
  * @interface
  */
-org.apache.flex.core.ILayoutChild = function() {
+org_apache_flex_core_ILayoutChild = function() {
 };
 
 
@@ -35,8 +35,8 @@ org.apache.flex.core.ILayoutChild = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.ILayoutChild.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_ILayoutChild.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ILayoutChild',
-                qName: 'org.apache.flex.core.ILayoutChild' }],
-      interfaces: [org.apache.flex.core.IChild] };
+                qName: 'org_apache_flex_core_ILayoutChild' }],
+      interfaces: [org_apache_flex_core_IChild] };
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/ILayoutParent.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/ILayoutParent.js b/frameworks/js/FlexJS/src/org/apache/flex/core/ILayoutParent.js
index 2057ff2..d110e99 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/ILayoutParent.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/ILayoutParent.js
@@ -17,14 +17,14 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.ILayoutParent');
+goog.provide('org_apache_flex_core_ILayoutParent');
 
 
 
 /**
  * @interface
  */
-org.apache.flex.core.ILayoutParent = function() {
+org_apache_flex_core_ILayoutParent = function() {
 };
 
 
@@ -33,41 +33,41 @@ org.apache.flex.core.ILayoutParent = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.ILayoutParent.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_ILayoutParent.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ILayoutParent',
-                qName: 'org.apache.flex.core.ILayoutParent' }] };
+                qName: 'org_apache_flex_core_ILayoutParent' }] };
 
 
 /**
  * @expose
  * @return {Object} The view that contains the layout objects.
  */
-org.apache.flex.core.ILayoutParent.prototype.get_contentView = function() {};
+org_apache_flex_core_ILayoutParent.prototype.get_contentView = function() {};
 
 
 /**
  * @expose
  * @return {Object} The border for the layout area.
  */
-org.apache.flex.core.ILayoutParent.prototype.get_border = function() {};
+org_apache_flex_core_ILayoutParent.prototype.get_border = function() {};
 
 
 /**
  * @expose
  * @return {Object} The vertical scrollbar.
  */
-org.apache.flex.core.ILayoutParent.prototype.get_vScrollBar = function() {};
+org_apache_flex_core_ILayoutParent.prototype.get_vScrollBar = function() {};
 
 
 /**
  * @expose
  * @param {Object} value The vertical scrollbar.
  */
-org.apache.flex.core.ILayoutParent.prototype.set_vScrollBar = function(value) {};
+org_apache_flex_core_ILayoutParent.prototype.set_vScrollBar = function(value) {};
 
 
 /**
  * @expose
  * @return {Object} The view that can be resized.
  */
-org.apache.flex.core.ILayoutParent.prototype.get_resizeableView = function() {};
\ No newline at end of file
+org_apache_flex_core_ILayoutParent.prototype.get_resizeableView = function() {};

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IListPresentationModel.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IListPresentationModel.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IListPresentationModel.js
index 0921437..665590d 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IListPresentationModel.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IListPresentationModel.js
@@ -13,25 +13,25 @@
  */
 
 /**
- * org.apache.flex.core.IListPresentationModel
+ * org_apache_flex_core_IListPresentationModel
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IListPresentationModel');
+goog.provide('org_apache_flex_core_IListPresentationModel');
 
-goog.require('org.apache.flex.core.IBead');
+goog.require('org_apache_flex_core_IBead');
 
 
 
 /**
  * @interface
- * @extends {org.apache.flex.events.IEventDispatcher}
- * @extends {org.apache.flex.core.IBead}
+ * @extends {org_apache_flex_events_IEventDispatcher}
+ * @extends {org_apache_flex_core_IBead}
  */
-org.apache.flex.core.IListPresentationModel = function() {
+org_apache_flex_core_IListPresentationModel = function() {
 };
 
 
@@ -39,14 +39,14 @@ org.apache.flex.core.IListPresentationModel = function() {
  * @expose
  * @param {number} value The height of the rows.
  */
-org.apache.flex.core.IListPresentationModel.prototype.set_rowHeight = function(value) {};
+org_apache_flex_core_IListPresentationModel.prototype.set_rowHeight = function(value) {};
 
 
 /**
  * @expose
  * @return {number} The height of the rows.
  */
-org.apache.flex.core.IListPresentationModel.prototype.get_rowHeight = function() {};
+org_apache_flex_core_IListPresentationModel.prototype.get_rowHeight = function() {};
 
 
 /**
@@ -54,6 +54,6 @@ org.apache.flex.core.IListPresentationModel.prototype.get_rowHeight = function()
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IListPresentationModel.prototype.FLEXJS_CLASS_INFO =
-{ names: [{ name: 'IListPresentationModel', qName: 'org.apache.flex.core.IListPresentationModel'}],
-  interfaces: [org.apache.flex.events.IEventDispatcher, org.apache.flex.core.IBead] };
+org_apache_flex_core_IListPresentationModel.prototype.FLEXJS_CLASS_INFO =
+{ names: [{ name: 'IListPresentationModel', qName: 'org_apache_flex_core_IListPresentationModel'}],
+  interfaces: [org_apache_flex_events_IEventDispatcher, org_apache_flex_core_IBead] };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IMXMLDocument.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IMXMLDocument.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IMXMLDocument.js
index 88c76e1..01c2adc 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IMXMLDocument.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IMXMLDocument.js
@@ -17,7 +17,7 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IMXMLDocument');
+goog.provide('org_apache_flex_core_IMXMLDocument');
 
 
 
@@ -26,7 +26,7 @@ goog.provide('org.apache.flex.core.IMXMLDocument');
  *
  * @interface
  */
-org.apache.flex.core.IMXMLDocument = function() {
+org_apache_flex_core_IMXMLDocument = function() {
 };
 
 
@@ -35,7 +35,7 @@ org.apache.flex.core.IMXMLDocument = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IMXMLDocument.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_IMXMLDocument.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'IMXMLDocument',
-                qName: 'org.apache.flex.core.IMXMLDocument' }] };
+                qName: 'org_apache_flex_core_IMXMLDocument' }] };
 


[12/12] git commit: [flex-asjs] [refs/heads/develop] - switch org.apache to org_apache in this new file as well

Posted by ah...@apache.org.
switch org.apache to org_apache in this new file as well


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/4ba5cb8e
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/4ba5cb8e
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/4ba5cb8e

Branch: refs/heads/develop
Commit: 4ba5cb8ec5123b4a4c575efb307e443e3ce5baf9
Parents: 386a331
Author: Alex Harui <ah...@apache.org>
Authored: Wed Jan 28 09:21:09 2015 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Wed Jan 28 09:21:09 2015 -0800

----------------------------------------------------------------------
 .../org/apache/flex/jquery/ToggleTextButton.js  | 42 ++++++++++----------
 1 file changed, 21 insertions(+), 21 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/4ba5cb8e/frameworks/js/FlexJS/src/org/apache/flex/jquery/ToggleTextButton.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/jquery/ToggleTextButton.js b/frameworks/js/FlexJS/src/org/apache/flex/jquery/ToggleTextButton.js
index 832d483..769768d 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/jquery/ToggleTextButton.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/jquery/ToggleTextButton.js
@@ -12,18 +12,18 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.jquery.ToggleTextButton');
+goog.provide('org_apache_flex_jquery_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.jquery.ToggleTextButton = function() {
-  org.apache.flex.jquery.ToggleTextButton.base(this, 'constructor');
+org_apache_flex_jquery_ToggleTextButton = function() {
+  org_apache_flex_jquery_ToggleTextButton.base(this, 'constructor');
 
 
 
@@ -33,8 +33,8 @@ org.apache.flex.jquery.ToggleTextButton = function() {
    */
   this.selected_ = false;
 };
-goog.inherits(org.apache.flex.jquery.ToggleTextButton,
-    org.apache.flex.html.Button);
+goog.inherits(org_apache_flex_jquery_ToggleTextButton,
+    org_apache_flex_html_Button);
 
 
 /**
@@ -42,29 +42,29 @@ goog.inherits(org.apache.flex.jquery.ToggleTextButton,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.jquery.ToggleTextButton.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_jquery_ToggleTextButton.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ToggleTextButton',
-                qName: 'org.apache.flex.jquery.ToggleTextButton'}] };
+                qName: 'org_apache_flex_jquery_ToggleTextButton'}] };
 
 
 /**
  * @expose
  * Used to provide ids to the ToggleTextButton.
  */
-org.apache.flex.jquery.ToggleTextButton.toggleCounter = 0;
+org_apache_flex_jquery_ToggleTextButton.toggleCounter = 0;
 
 
 /**
  * @override
  */
-org.apache.flex.jquery.ToggleTextButton.prototype.createElement =
+org_apache_flex_jquery_ToggleTextButton.prototype.createElement =
     function() {
 
   // the radio itself
   this.input = document.createElement('input');
   this.input.type = 'checkbox';
   this.input.name = 'checkbox';
-  this.input.id = '_toggle_' + org.apache.flex.jquery.ToggleTextButton.toggleCounter++;
+  this.input.id = '_toggle_' + org_apache_flex_jquery_ToggleTextButton.toggleCounter++;
 
   this.labelFor = document.createElement('label');
   this.labelFor.htmlFor = this.input.id;
@@ -85,9 +85,9 @@ org.apache.flex.jquery.ToggleTextButton.prototype.createElement =
 /**
  * @override
  */
-org.apache.flex.jquery.ToggleTextButton.prototype.addedToParent =
+org_apache_flex_jquery_ToggleTextButton.prototype.addedToParent =
     function() {
-  org.apache.flex.jquery.ToggleTextButton.base(this, 'addedToParent');
+  org_apache_flex_jquery_ToggleTextButton.base(this, 'addedToParent');
   $(this.element).button();
 };
 
@@ -95,8 +95,8 @@ org.apache.flex.jquery.ToggleTextButton.prototype.addedToParent =
 /**
  * @override
  */
-org.apache.flex.jquery.ToggleTextButton.prototype.set_id = function(value) {
-  org.apache.flex.jquery.ToggleTextButton.base(this, 'set_id', value);
+org_apache_flex_jquery_ToggleTextButton.prototype.set_id = function(value) {
+  org_apache_flex_jquery_ToggleTextButton.base(this, 'set_id', value);
   this.labelFor.id = value;
   this.labelFor.htmlFor = value;
 };
@@ -106,7 +106,7 @@ org.apache.flex.jquery.ToggleTextButton.prototype.set_id = function(value) {
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.jquery.ToggleTextButton.prototype.get_text = function() {
+org_apache_flex_jquery_ToggleTextButton.prototype.get_text = function() {
   return this.labelFor.innerHTML;
 };
 
@@ -115,7 +115,7 @@ org.apache.flex.jquery.ToggleTextButton.prototype.get_text = function() {
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.jquery.ToggleTextButton.prototype.set_text =
+org_apache_flex_jquery_ToggleTextButton.prototype.set_text =
     function(value) {
   this.labelFor.innerHTML = value;
 };
@@ -125,7 +125,7 @@ org.apache.flex.jquery.ToggleTextButton.prototype.set_text =
  * @expose
  * @return {boolean} The selected getter.
  */
-org.apache.flex.jquery.ToggleTextButton.prototype.get_selected =
+org_apache_flex_jquery_ToggleTextButton.prototype.get_selected =
     function() {
   return this.input.selected_;
 };
@@ -135,7 +135,7 @@ org.apache.flex.jquery.ToggleTextButton.prototype.get_selected =
  * @expose
  * @param {boolean} value The selected setter.
  */
-org.apache.flex.jquery.ToggleTextButton.prototype.set_selected =
+org_apache_flex_jquery_ToggleTextButton.prototype.set_selected =
     function(value) {
   if (this.input.selected_ != value) {
     this.inputselected_ = value;
@@ -157,5 +157,5 @@ org.apache.flex.jquery.ToggleTextButton.prototype.set_selected =
 /**
  * @type {string} The selected setter.
  */
-org.apache.flex.jquery.ToggleTextButton.prototype.SELECTED = '_Selected';
+org_apache_flex_jquery_ToggleTextButton.prototype.SELECTED = '_Selected';
 


[04/12] git commit: [flex-asjs] [refs/heads/develop] - switching from org.apache.flex to org_apache_flex so GCC doesn't complain

Posted by ah...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ListView.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ListView.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ListView.js
index 5994971..4394572 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ListView.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ListView.js
@@ -12,26 +12,26 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.ListView');
+goog.provide('org_apache_flex_html_beads_ListView');
 
-goog.require('org.apache.flex.core.IBeadLayout');
-goog.require('org.apache.flex.core.IBeadView');
-goog.require('org.apache.flex.core.IItemRendererParent');
-goog.require('org.apache.flex.core.ILayoutParent');
-goog.require('org.apache.flex.core.ValuesManager');
-goog.require('org.apache.flex.html.beads.IListView');
-goog.require('org.apache.flex.html.beads.TextItemRendererFactoryForArrayData');
-goog.require('org.apache.flex.html.beads.models.ArraySelectionModel');
-goog.require('org.apache.flex.html.supportClasses.NonVirtualDataGroup');
+goog.require('org_apache_flex_core_IBeadLayout');
+goog.require('org_apache_flex_core_IBeadView');
+goog.require('org_apache_flex_core_IItemRendererParent');
+goog.require('org_apache_flex_core_ILayoutParent');
+goog.require('org_apache_flex_core_ValuesManager');
+goog.require('org_apache_flex_html_beads_IListView');
+goog.require('org_apache_flex_html_beads_TextItemRendererFactoryForArrayData');
+goog.require('org_apache_flex_html_beads_models_ArraySelectionModel');
+goog.require('org_apache_flex_html_supportClasses_NonVirtualDataGroup');
 
 
 
 /**
  * @constructor
- * @implements {org.apache.flex.core.ILayoutParent}
- * @implements {org.apache.flex.html.beads.IListView}
+ * @implements {org_apache_flex_core_ILayoutParent}
+ * @implements {org_apache_flex_html_beads_IListView}
  */
-org.apache.flex.html.beads.ListView = function() {
+org_apache_flex_html_beads_ListView = function() {
   this.lastSelectedIndex = -1;
 
   this.className = 'ListView';
@@ -43,18 +43,18 @@ org.apache.flex.html.beads.ListView = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.ListView.prototype.
+org_apache_flex_html_beads_ListView.prototype.
     FLEXJS_CLASS_INFO =
     { names: [{ name: 'ListView',
-                qName: 'org.apache.flex.html.beads.ListView' }],
-      interfaces: [org.apache.flex.html.beads.IListView, org.apache.flex.core.ILayoutParent] };
+                qName: 'org_apache_flex_html_beads_ListView' }],
+      interfaces: [org_apache_flex_html_beads_IListView, org_apache_flex_core_ILayoutParent] };
 
 
 /**
  * @expose
  * @param {Object} value The new host.
  */
-org.apache.flex.html.beads.ListView.prototype.set_strand =
+org_apache_flex_html_beads_ListView.prototype.set_strand =
     function(value) {
 
   this.strand_ = value;
@@ -73,15 +73,15 @@ org.apache.flex.html.beads.ListView.prototype.set_strand =
       goog.bind(this.dataProviderChangeHandler, this));
 
   if (this.dataGroup_ == null) {
-    var m2 = org.apache.flex.core.ValuesManager.valuesImpl.
+    var m2 = org_apache_flex_core_ValuesManager.valuesImpl.
         getValue(this.strand_, 'iDataGroup');
     this.dataGroup_ = new m2();
   }
   this.dataGroup_.set_strand(this);
   this.strand_.addElement(this.dataGroup_);
 
-  if (this.strand_.getBeadByType(org.apache.flex.core.IBeadLayout) == null) {
-    var m3 = org.apache.flex.core.ValuesManager.valuesImpl.getValue(this.strand_, 'iBeadLayout');
+  if (this.strand_.getBeadByType(org_apache_flex_core_IBeadLayout) == null) {
+    var m3 = org_apache_flex_core_ValuesManager.valuesImpl.getValue(this.strand_, 'iBeadLayout');
     this.layout_ = new m3();
     this.strand_.addBead(this.layout_);
     //this.layout_.set_strand(this.strand_);
@@ -95,7 +95,7 @@ org.apache.flex.html.beads.ListView.prototype.set_strand =
  * @expose
  * @return {Object} The DataGroup instance.
  */
-org.apache.flex.html.beads.ListView.prototype.get_dataGroup =
+org_apache_flex_html_beads_ListView.prototype.get_dataGroup =
     function() {
   return this.dataGroup_;
 };
@@ -105,7 +105,7 @@ org.apache.flex.html.beads.ListView.prototype.get_dataGroup =
  * @expose
  * @param {Object} value The DataGroup instance.
  */
-org.apache.flex.html.beads.ListView.prototype.set_dataGroup =
+org_apache_flex_html_beads_ListView.prototype.set_dataGroup =
     function(value) {
   this.dataGroup_ = value;
 };
@@ -115,7 +115,7 @@ org.apache.flex.html.beads.ListView.prototype.set_dataGroup =
  * @expose
  * @param {Object} value The event that triggered the selection.
  */
-org.apache.flex.html.beads.ListView.prototype.
+org_apache_flex_html_beads_ListView.prototype.
     selectionChangeHandler = function(value) {
   var ir;
   if (this.lastSelectedIndex != -1) {
@@ -135,7 +135,7 @@ org.apache.flex.html.beads.ListView.prototype.
  * @expose
  * @param {Object} value The event that triggeed the selection.
  */
-org.apache.flex.html.beads.ListView.prototype.
+org_apache_flex_html_beads_ListView.prototype.
     dataProviderChangeHandler = function(value) {
     // override in subclass
 };
@@ -145,7 +145,7 @@ org.apache.flex.html.beads.ListView.prototype.
  * @expose
  * @return {Object} The view that contains the layout objects.
  */
-org.apache.flex.html.beads.ListView.prototype.get_contentView = function() {
+org_apache_flex_html_beads_ListView.prototype.get_contentView = function() {
   return this.dataGroup_;
 };
 
@@ -154,7 +154,7 @@ org.apache.flex.html.beads.ListView.prototype.get_contentView = function() {
  * @expose
  * @return {Object} The border for the layout area.
  */
-org.apache.flex.html.beads.ListView.prototype.get_border = function() {
+org_apache_flex_html_beads_ListView.prototype.get_border = function() {
   return null;
 };
 
@@ -163,7 +163,7 @@ org.apache.flex.html.beads.ListView.prototype.get_border = function() {
  * @expose
  * @return {Object} The vertical scrollbar.
  */
-org.apache.flex.html.beads.ListView.prototype.get_vScrollBar = function() {
+org_apache_flex_html_beads_ListView.prototype.get_vScrollBar = function() {
   return null;
 };
 
@@ -172,7 +172,7 @@ org.apache.flex.html.beads.ListView.prototype.get_vScrollBar = function() {
  * @expose
  * @param {Object} value The vertical scrollbar.
  */
-org.apache.flex.html.beads.ListView.prototype.set_vScrollBar = function(value) {
+org_apache_flex_html_beads_ListView.prototype.set_vScrollBar = function(value) {
 };
 
 
@@ -180,7 +180,7 @@ org.apache.flex.html.beads.ListView.prototype.set_vScrollBar = function(value) {
  * @expose
  * @return {Object} The view that can be resized.
  */
-org.apache.flex.html.beads.ListView.prototype.get_resizeableView = function() {
+org_apache_flex_html_beads_ListView.prototype.get_resizeableView = function() {
   return this;
 };
 
@@ -189,7 +189,7 @@ org.apache.flex.html.beads.ListView.prototype.get_resizeableView = function() {
  * @expose
  * @param {Object} event The event that triggered the resize.
  */
-org.apache.flex.html.beads.ListView.prototype.handleSizeChange = function(event) {
+org_apache_flex_html_beads_ListView.prototype.handleSizeChange = function(event) {
   this.dataGroup_.set_width(this.strand_.get_width());
   this.dataGroup_.set_height(this.strand_.get_height());
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/PanelView.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/PanelView.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/PanelView.js
index e30f017..a5a6716 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/PanelView.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/PanelView.js
@@ -12,16 +12,16 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.PanelView');
+goog.provide('org_apache_flex_html_beads_PanelView');
 
-goog.require('org.apache.flex.core.IBeadView');
+goog.require('org_apache_flex_core_IBeadView');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.html.beads.PanelView = function() {
+org_apache_flex_html_beads_PanelView = function() {
   /**
    * @private
    * @type {boolean}
@@ -30,9 +30,9 @@ org.apache.flex.html.beads.PanelView = function() {
 
   /**
    * @private
-   * @type {Object}
+   * @type {?Object}
   */
-  this.titleBar_ = false;
+  this.titleBar_ = null;
 };
 
 
@@ -41,31 +41,31 @@ org.apache.flex.html.beads.PanelView = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.PanelView
+org_apache_flex_html_beads_PanelView
   .prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'PanelView',
-                qName: 'org.apache.flex.html.beads.PanelView'}],
-      interfaces: [org.apache.flex.core.IBeadView] };
+                qName: 'org_apache_flex_html_beads_PanelView'}],
+      interfaces: [org_apache_flex_core_IBeadView] };
 
 
 /**
  * @expose
  * @param {Object} value The new host.
  */
-org.apache.flex.html.beads.PanelView.prototype.set_strand =
+org_apache_flex_html_beads_PanelView.prototype.set_strand =
     function(value) {
 
   this.strand_ = value;
 
   if (!this.titleBar_)
-    this.titleBar_ = new org.apache.flex.html.TitleBar();
+    this.titleBar_ = new org_apache_flex_html_TitleBar();
 
   this.strand_.titleBar = this.titleBar_;
   this.titleBar_.set_id('titleBar');
   this.titleBar_.set_model(this.strand_.get_model());
 
   this.strand_.controlBar =
-      new org.apache.flex.html.ControlBar();
+      new org_apache_flex_html_ControlBar();
 
   this.strand_.addEventListener('childrenAdded',
       goog.bind(this.changeHandler, this));
@@ -81,7 +81,7 @@ org.apache.flex.html.beads.PanelView.prototype.set_strand =
 /**
  * @param {Object} event The event that triggered this handler.
  */
-org.apache.flex.html.beads.PanelView.prototype.changeHandler =
+org_apache_flex_html_beads_PanelView.prototype.changeHandler =
     function(event) {
   var strand = this.strand_;
   if (!this.titleBarAdded_)
@@ -123,7 +123,7 @@ org.apache.flex.html.beads.PanelView.prototype.changeHandler =
  * @expose
  * @return {Object} The titleBar getter.
  */
-org.apache.flex.html.beads.PanelView.prototype.get_titleBar =
+org_apache_flex_html_beads_PanelView.prototype.get_titleBar =
     function() {
   return this.titleBar_;
 };
@@ -133,7 +133,7 @@ org.apache.flex.html.beads.PanelView.prototype.get_titleBar =
  * @expose
  * @param {Object} value The titleBar setter.
  */
-org.apache.flex.html.beads.PanelView.prototype.set_titleBar =
+org_apache_flex_html_beads_PanelView.prototype.set_titleBar =
     function(value) {
   this.titleBar_ = value;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ScrollingContainerView.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ScrollingContainerView.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ScrollingContainerView.js
index 0aef1d1..abce5f8 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ScrollingContainerView.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ScrollingContainerView.js
@@ -12,25 +12,25 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.ScrollingContainerView');
+goog.provide('org_apache_flex_html_beads_ScrollingContainerView');
 
-goog.require('org.apache.flex.html.beads.ContainerView');
+goog.require('org_apache_flex_html_beads_ContainerView');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.html.beads.ContainerView}
+ * @extends {org_apache_flex_html_beads_ContainerView}
  */
-org.apache.flex.html.beads.ScrollingContainerView = function() {
+org_apache_flex_html_beads_ScrollingContainerView = function() {
   this.lastSelectedIndex = -1;
-  org.apache.flex.html.beads.ScrollingContainerView.base(this, 'constructor');
+  org_apache_flex_html_beads_ScrollingContainerView.base(this, 'constructor');
 
   this.className = 'ScrollingContainerView';
 };
 goog.inherits(
-    org.apache.flex.html.beads.ScrollingContainerView,
-    org.apache.flex.html.beads.ContainerView);
+    org_apache_flex_html_beads_ScrollingContainerView,
+    org_apache_flex_html_beads_ContainerView);
 
 
 /**
@@ -38,10 +38,10 @@ goog.inherits(
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.ScrollingContainerView.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_beads_ScrollingContainerView.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ScrollingContainerView',
-                qName: 'org.apache.flex.html.beads.ScrollingContainerView' }],
-    interfaces: [org.apache.flex.core.ILayoutParent]
+                qName: 'org_apache_flex_html_beads_ScrollingContainerView' }],
+    interfaces: [org_apache_flex_core_ILayoutParent]
     };
 
 
@@ -49,7 +49,7 @@ org.apache.flex.html.beads.ScrollingContainerView.prototype.FLEXJS_CLASS_INFO =
  * @expose
  * @return {Object} value The content view.
  */
-org.apache.flex.html.beads.ScrollingContainerView.prototype.get_contentView =
+org_apache_flex_html_beads_ScrollingContainerView.prototype.get_contentView =
     function() {
 
   return this._strand;
@@ -60,7 +60,7 @@ org.apache.flex.html.beads.ScrollingContainerView.prototype.get_contentView =
  * @expose
  * @return {Object} value The resizeable view.
  */
-org.apache.flex.html.beads.ScrollingContainerView.prototype.get_resizableView =
+org_apache_flex_html_beads_ScrollingContainerView.prototype.get_resizableView =
 function() {
 
   return this._strand;
@@ -71,7 +71,7 @@ function() {
  * @expose
  * @return {number} value The resizeable view.
  */
-org.apache.flex.html.beads.ScrollingContainerView.prototype.get_verticalScrollPosition =
+org_apache_flex_html_beads_ScrollingContainerView.prototype.get_verticalScrollPosition =
 function() {
 
   return this._strand.scrollTop;
@@ -82,7 +82,7 @@ function() {
  * @expose
  * @param {number} value The resizeable view.
  */
-org.apache.flex.html.beads.ScrollingContainerView.prototype.set_verticalScrollPosition =
+org_apache_flex_html_beads_ScrollingContainerView.prototype.set_verticalScrollPosition =
 function(value) {
 
   this._strand.scrollTop = value;
@@ -93,7 +93,7 @@ function(value) {
  * @expose
  * @return {number} value The resizeable view.
  */
-org.apache.flex.html.beads.ScrollingContainerView.prototype.get_maxVerticalScrollPosition =
+org_apache_flex_html_beads_ScrollingContainerView.prototype.get_maxVerticalScrollPosition =
 function() {
 
   return this._strand.scrollHeight - this._strand.clientHeight;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/SliderThumbView.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/SliderThumbView.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/SliderThumbView.js
index 0f0af78..99c2def 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/SliderThumbView.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/SliderThumbView.js
@@ -12,14 +12,14 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.SliderThumbView');
+goog.provide('org_apache_flex_html_beads_SliderThumbView');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.html.beads.SliderThumbView = function() {
+org_apache_flex_html_beads_SliderThumbView = function() {
 };
 
 
@@ -28,17 +28,17 @@ org.apache.flex.html.beads.SliderThumbView = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.SliderThumbView
+org_apache_flex_html_beads_SliderThumbView
   .prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'SliderThumbView',
-                qName: 'org.apache.flex.html.beads.SliderThumbView'}] };
+                qName: 'org_apache_flex_html_beads_SliderThumbView'}] };
 
 
 /**
  * @expose
  * @param {Object} value The strand.
  */
-org.apache.flex.html.beads.SliderThumbView.prototype.
+org_apache_flex_html_beads_SliderThumbView.prototype.
     set_strand = function(value) {
   this.strand_ = value;
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/SliderTrackView.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/SliderTrackView.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/SliderTrackView.js
index 5ebdc15..faaa611 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/SliderTrackView.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/SliderTrackView.js
@@ -12,14 +12,14 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.SliderTrackView');
+goog.provide('org_apache_flex_html_beads_SliderTrackView');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.html.beads.SliderTrackView = function() {
+org_apache_flex_html_beads_SliderTrackView = function() {
 };
 
 
@@ -28,17 +28,17 @@ org.apache.flex.html.beads.SliderTrackView = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.SliderTrackView
+org_apache_flex_html_beads_SliderTrackView
   .prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'SliderTrackView',
-                qName: 'org.apache.flex.html.beads.SliderTrackView'}] };
+                qName: 'org_apache_flex_html_beads_SliderTrackView'}] };
 
 
 /**
  * @expose
  * @param {Object} value The strand.
  */
-org.apache.flex.html.beads.SliderTrackView.prototype.
+org_apache_flex_html_beads_SliderTrackView.prototype.
     set_strand = function(value) {
   this.strand_ = value;
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/TextInputWithBorderView.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/TextInputWithBorderView.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/TextInputWithBorderView.js
index 26109ee..e6ad132 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/TextInputWithBorderView.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/TextInputWithBorderView.js
@@ -12,14 +12,14 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.TextInputWithBorderView');
+goog.provide('org_apache_flex_html_beads_TextInputWithBorderView');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.html.beads.TextInputWithBorderView = function() {
+org_apache_flex_html_beads_TextInputWithBorderView = function() {
 };
 
 
@@ -28,17 +28,17 @@ org.apache.flex.html.beads.TextInputWithBorderView = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.TextInputWithBorderView
+org_apache_flex_html_beads_TextInputWithBorderView
   .prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'TextInputWithBorderView',
-                qName: 'org.apache.flex.html.beads.TextInputWithBorderView'}] };
+                qName: 'org_apache_flex_html_beads_TextInputWithBorderView'}] };
 
 
 /**
  * @expose
  * @param {Object} value The strand.
  */
-org.apache.flex.html.beads.TextInputWithBorderView.prototype.
+org_apache_flex_html_beads_TextInputWithBorderView.prototype.
     set_strand = function(value) {
   this.strand_ = value;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/TextItemRendererFactoryForArrayData.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/TextItemRendererFactoryForArrayData.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/TextItemRendererFactoryForArrayData.js
index 69a7c75..1db4afa 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/TextItemRendererFactoryForArrayData.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/TextItemRendererFactoryForArrayData.js
@@ -12,28 +12,27 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.TextItemRendererFactoryForArrayData');
+goog.provide('org_apache_flex_html_beads_TextItemRendererFactoryForArrayData');
 
-goog.require('org.apache.flex.core.IDataProviderItemRendererMapper');
-goog.require('org.apache.flex.core.IItemRenderer');
-goog.require('org.apache.flex.events.EventDispatcher');
-goog.require('org.apache.flex.html.beads.models.ArraySelectionModel');
+goog.require('org_apache_flex_core_IDataProviderItemRendererMapper');
+goog.require('org_apache_flex_core_IItemRenderer');
+goog.require('org_apache_flex_events_EventDispatcher');
+goog.require('org_apache_flex_html_beads_models_ArraySelectionModel');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.events.EventDispatcher}
- * @implements {org.apache.flex.core.IItemRenderer}
+ * @extends {org_apache_flex_events_EventDispatcher}
+ * @implements {org_apache_flex_core_IItemRenderer}
  */
-org.apache.flex.html.beads.TextItemRendererFactoryForArrayData =
+org_apache_flex_html_beads_TextItemRendererFactoryForArrayData =
     function() {
-  org.apache.flex.html.beads.TextItemRendererFactoryForArrayData.base(this, 'constructor');
+  org_apache_flex_html_beads_TextItemRendererFactoryForArrayData.base(this, 'constructor');
 };
 goog.inherits(
-    org.apache.flex.html.
-        beads.TextItemRendererFactoryForArrayData,
-    org.apache.flex.events.EventDispatcher);
+    org_apache_flex_html_beads_TextItemRendererFactoryForArrayData,
+    org_apache_flex_events_EventDispatcher);
 
 
 /**
@@ -41,26 +40,26 @@ goog.inherits(
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.TextItemRendererFactoryForArrayData.
+org_apache_flex_html_beads_TextItemRendererFactoryForArrayData.
     prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'TextItemRendererFactoryForArrayData',
-                qName: 'org.apache.flex.html.beads.TextItemRendererFactoryForArrayData' }],
-      interfaces: [org.apache.flex.core.IItemRenderer] };
+                qName: 'org_apache_flex_html_beads_TextItemRendererFactoryForArrayData' }],
+      interfaces: [org_apache_flex_core_IItemRenderer] };
 
 
 /**
  * @expose
  * @param {Object} value The component strand.
  */
-org.apache.flex.html.beads.TextItemRendererFactoryForArrayData.
+org_apache_flex_html_beads_TextItemRendererFactoryForArrayData.
     prototype.set_strand = function(value) {
   this.strand_ = value;
 
   this.model = value.getBeadByType(
-      org.apache.flex.html.beads.models.ArraySelectionModel);
+      org_apache_flex_html_beads_models_ArraySelectionModel);
 
   this.listView = value.getBeadByType(
-      org.apache.flex.html.beads.ListView);
+      org_apache_flex_html_beads_ListView);
   this.dataGroup = this.listView.get_dataGroup();
 
   this.model.addEventListener('dataProviderChanged',
@@ -74,7 +73,7 @@ org.apache.flex.html.beads.TextItemRendererFactoryForArrayData.
  * @expose
  * @param {Object} event The event that triggered the dataProvider change.
  */
-org.apache.flex.html.beads.TextItemRendererFactoryForArrayData.
+org_apache_flex_html_beads_TextItemRendererFactoryForArrayData.
     prototype.dataProviderChangedHandler = function(event) {
   var dp, i, n, opt;
 
@@ -82,11 +81,11 @@ org.apache.flex.html.beads.TextItemRendererFactoryForArrayData.
   n = dp.length;
   for (i = 0; i < n; i++) {
     opt = new
-        org.apache.flex.html.supportClasses.StringItemRenderer();
+        org_apache_flex_html_supportClasses_StringItemRenderer();
     this.dataGroup.addElement(opt);
     opt.set_text(dp[i]);
   }
 
-  var newEvent = new org.apache.flex.events.Event('itemsCreated');
+  var newEvent = new org_apache_flex_events_Event('itemsCreated');
   this.strand_.dispatchEvent(newEvent);
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/controllers/ItemRendererMouseController.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/controllers/ItemRendererMouseController.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/controllers/ItemRendererMouseController.js
index a647a25..879d3d2 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/controllers/ItemRendererMouseController.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/controllers/ItemRendererMouseController.js
@@ -12,18 +12,17 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.controllers.ItemRendererMouseController');
+goog.provide('org_apache_flex_html_beads_controllers_ItemRendererMouseController');
 
-goog.require('org.apache.flex.core.IBeadController');
+goog.require('org_apache_flex_core_IBeadController');
 
 
 
 /**
  * @constructor
- * @implements {org.apache.flex.core.IBeadController}
+ * @implements {org_apache_flex_core_IBeadController}
  */
-org.apache.flex.html.beads.controllers.
-    ItemRendererMouseController = function() {
+org_apache_flex_html_beads_controllers_ItemRendererMouseController = function() {
 };
 
 
@@ -32,19 +31,17 @@ org.apache.flex.html.beads.controllers.
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.controllers.
-    ItemRendererMouseController.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_beads_controllers_ItemRendererMouseController.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ItemRendererMouseController',
-                qName: 'org.apache.flex.html.beads.controllers.ItemRendererMouseController' }],
-      interfaces: [org.apache.flex.core.IBeadController] };
+                qName: 'org_apache_flex_html_beads_controllers_ItemRendererMouseController' }],
+      interfaces: [org_apache_flex_core_IBeadController] };
 
 
 /**
  * @expose
  * @param {Object} value The strand for this component.
  */
-org.apache.flex.html.beads.controllers.
-    ItemRendererMouseController.prototype.set_strand = function(value) {
+org_apache_flex_html_beads_controllers_ItemRendererMouseController.prototype.set_strand = function(value) {
   this.strand_ = value;
 
   goog.events.listen(this.strand_.element, goog.events.EventType.MOUSEOVER,
@@ -65,8 +62,7 @@ org.apache.flex.html.beads.controllers.
  * @expose
  * @param {Object} event The mouse event that triggered the hover.
  */
-org.apache.flex.html.beads.controllers.
-    ItemRendererMouseController.prototype.handleMouseOver = function(event) {
+org_apache_flex_html_beads_controllers_ItemRendererMouseController.prototype.handleMouseOver = function(event) {
 
   this.strand_.set_hovered(true);
 
@@ -80,8 +76,7 @@ org.apache.flex.html.beads.controllers.
  * @expose
  * @param {Object} event The mouse-out event.
  */
-org.apache.flex.html.beads.controllers.
-    ItemRendererMouseController.prototype.handleMouseOut = function(event) {
+org_apache_flex_html_beads_controllers_ItemRendererMouseController.prototype.handleMouseOut = function(event) {
 
   this.strand_.set_hovered(false);
 
@@ -95,8 +90,7 @@ org.apache.flex.html.beads.controllers.
  * @expose
  * @param {Object} event The mouse-down event.
  */
-org.apache.flex.html.beads.controllers.
-    ItemRendererMouseController.prototype.handleMouseDown = function(event) {
+org_apache_flex_html_beads_controllers_ItemRendererMouseController.prototype.handleMouseDown = function(event) {
 
   // ??
 };
@@ -106,8 +100,7 @@ org.apache.flex.html.beads.controllers.
  * @expose
  * @param {Object} event The mouse-up event that triggers the selection.
  */
-org.apache.flex.html.beads.controllers.
-    ItemRendererMouseController.prototype.handleMouseUp = function(event) {
+org_apache_flex_html_beads_controllers_ItemRendererMouseController.prototype.handleMouseUp = function(event) {
 
   var newEvent = new goog.events.Event('selected');
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/controllers/ListSingleSelectionMouseController.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/controllers/ListSingleSelectionMouseController.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/controllers/ListSingleSelectionMouseController.js
index eb5b3d2..3875d07 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/controllers/ListSingleSelectionMouseController.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/controllers/ListSingleSelectionMouseController.js
@@ -12,20 +12,19 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.controllers.ListSingleSelectionMouseController');
+goog.provide('org_apache_flex_html_beads_controllers_ListSingleSelectionMouseController');
 
-goog.require('org.apache.flex.core.IBeadController');
-goog.require('org.apache.flex.html.beads.ListView');
-goog.require('org.apache.flex.html.beads.models.ArraySelectionModel');
+goog.require('org_apache_flex_core_IBeadController');
+goog.require('org_apache_flex_html_beads_ListView');
+goog.require('org_apache_flex_html_beads_models_ArraySelectionModel');
 
 
 
 /**
  * @constructor
- * @implements {org.apache.flex.core.IBeadController}
+ * @implements {org_apache_flex_core_IBeadController}
  */
-org.apache.flex.html.beads.controllers.
-    ListSingleSelectionMouseController = function() {
+org_apache_flex_html_beads_controllers_ListSingleSelectionMouseController = function() {
 };
 
 
@@ -34,10 +33,10 @@ org.apache.flex.html.beads.controllers.
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.controllers.ListSingleSelectionMouseController.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_beads_controllers_ListSingleSelectionMouseController.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ListSingleSelectionMouseController',
-                qName: 'org.apache.flex.html.beads.controllers.ListSingleSelectionMouseController' }],
-      interfaces: [org.apache.flex.core.IBeadController] };
+                qName: 'org_apache_flex_html_beads_controllers_ListSingleSelectionMouseController' }],
+      interfaces: [org_apache_flex_core_IBeadController] };
 
 
 /**
@@ -45,14 +44,13 @@ org.apache.flex.html.beads.controllers.ListSingleSelectionMouseController.protot
  *        ListSingleSelectionMouseController}
  * @param {Object} value The strand for this component.
  */
-org.apache.flex.html.beads.controllers.
-    ListSingleSelectionMouseController.prototype.set_strand = function(value) {
+org_apache_flex_html_beads_controllers_ListSingleSelectionMouseController.prototype.set_strand = function(value) {
   this.strand_ = value;
 
   this.model = value.getBeadByType(
-      org.apache.flex.html.beads.models.ArraySelectionModel);
+      org_apache_flex_html_beads_models_ArraySelectionModel);
   this.listView = value.getBeadByType(
-      org.apache.flex.html.beads.ListView);
+      org_apache_flex_html_beads_ListView);
 
   this.dataGroup = this.listView.get_dataGroup();
   this.dataGroup.addEventListener('selected',
@@ -65,13 +63,12 @@ org.apache.flex.html.beads.controllers.
  *        ListSingleSelectionMouseController}
  * @param {Object} event The event that triggered the selection.
  */
-org.apache.flex.html.beads.controllers.
-    ListSingleSelectionMouseController.prototype.selectedHandler =
+org_apache_flex_html_beads_controllers_ListSingleSelectionMouseController.prototype.selectedHandler =
         function(event) {
 
   var index = event.target.get_index();
   this.model.set_selectedIndex(index);
 
-  var newEvent = new org.apache.flex.events.Event('change');
+  var newEvent = new org_apache_flex_events_Event('change');
   this.strand_.dispatchEvent(newEvent);
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/controllers/SliderMouseController.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/controllers/SliderMouseController.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/controllers/SliderMouseController.js
index dd0e181..7bc9b89 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/controllers/SliderMouseController.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/controllers/SliderMouseController.js
@@ -12,17 +12,17 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.controllers.SliderMouseController');
+goog.provide('org_apache_flex_html_beads_controllers_SliderMouseController');
 
-goog.require('org.apache.flex.html.beads.SliderThumbView');
-goog.require('org.apache.flex.html.beads.SliderTrackView');
+goog.require('org_apache_flex_html_beads_SliderThumbView');
+goog.require('org_apache_flex_html_beads_SliderTrackView');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.html.beads.controllers.SliderMouseController =
+org_apache_flex_html_beads_controllers_SliderMouseController =
     function() {
 };
 
@@ -32,10 +32,9 @@ org.apache.flex.html.beads.controllers.SliderMouseController =
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.controllers.
-    SliderMouseController.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_beads_controllers_SliderMouseController.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'SliderMouseController',
-                qName: 'org.apache.flex.html.beads.controllers.SliderMouseController' }] };
+                qName: 'org_apache_flex_html_beads_controllers_SliderMouseController' }] };
 
 
 /**
@@ -43,14 +42,14 @@ org.apache.flex.html.beads.controllers.
  *        SliderMouseController}
  * @param {Object} value The strand.
  */
-org.apache.flex.html.beads.controllers.SliderMouseController.
+org_apache_flex_html_beads_controllers_SliderMouseController.
     prototype.set_strand = function(value) {
   this.strand_ = value;
 
   this.track = this.strand_.getBeadByType(
-      org.apache.flex.html.beads.SliderTrackView);
+      org_apache_flex_html_beads_SliderTrackView);
   this.thumb = this.strand_.getBeadByType(
-      org.apache.flex.html.beads.SliderThumbView);
+      org_apache_flex_html_beads_SliderThumbView);
 
   goog.events.listen(this.track.element, goog.events.EventType.CLICK,
                      this.handleTrackClick, false, this);
@@ -65,7 +64,7 @@ org.apache.flex.html.beads.controllers.SliderMouseController.
  * @param {Event} event The event triggering the function.
  * @return {void} Handles click on track.
  */
-org.apache.flex.html.beads.controllers.SliderMouseController.
+org_apache_flex_html_beads_controllers_SliderMouseController.
     prototype.handleTrackClick =
     function(event)
     {
@@ -81,7 +80,7 @@ org.apache.flex.html.beads.controllers.SliderMouseController.
 
   this.calcValFromMousePosition(event, true);
 
-  this.strand_.dispatchEvent(new org.apache.flex.events.Event('valueChange'));
+  this.strand_.dispatchEvent(new org_apache_flex_events_Event('valueChange'));
 };
 
 
@@ -90,7 +89,7 @@ org.apache.flex.html.beads.controllers.SliderMouseController.
  * @param {Event} event The event triggering the function.
  * @return {void} Handles mouse-down on the thumb.
  */
-org.apache.flex.html.beads.controllers.SliderMouseController.
+org_apache_flex_html_beads_controllers_SliderMouseController.
     prototype.handleThumbDown =
     function(event)
     {
@@ -109,7 +108,7 @@ org.apache.flex.html.beads.controllers.SliderMouseController.
  * @param {Event} event The event triggering the function.
  * @return {void} Handles mouse-up on the thumb.
  */
-org.apache.flex.html.beads.controllers.SliderMouseController.
+org_apache_flex_html_beads_controllers_SliderMouseController.
     prototype.handleThumbUp =
     function(event)
     {
@@ -120,7 +119,7 @@ org.apache.flex.html.beads.controllers.SliderMouseController.
 
   this.calcValFromMousePosition(event, false);
 
-  this.strand_.dispatchEvent(new org.apache.flex.events.Event('valueChange'));
+  this.strand_.dispatchEvent(new org_apache_flex_events_Event('valueChange'));
 };
 
 
@@ -129,13 +128,13 @@ org.apache.flex.html.beads.controllers.SliderMouseController.
  * @param {Event} event The event triggering the function.
  * @return {void} Handles mouse-move on the thumb.
  */
-org.apache.flex.html.beads.controllers.SliderMouseController.
+org_apache_flex_html_beads_controllers_SliderMouseController.
     prototype.handleThumbMove =
     function(event)
     {
   this.calcValFromMousePosition(event, false);
 
-  this.strand_.dispatchEvent(new org.apache.flex.events.Event('valueChange'));
+  this.strand_.dispatchEvent(new org_apache_flex_events_Event('valueChange'));
 };
 
 
@@ -146,7 +145,7 @@ org.apache.flex.html.beads.controllers.SliderMouseController.
  * @return {void} Determines the new value based on the movement of the mouse
  * along the slider.
  */
-org.apache.flex.html.beads.controllers.SliderMouseController.
+org_apache_flex_html_beads_controllers_SliderMouseController.
     prototype.calcValFromMousePosition =
     function(event, useOffset)
     {

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/controllers/SpinnerMouseController.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/controllers/SpinnerMouseController.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/controllers/SpinnerMouseController.js
index 7adb27d..af6f574 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/controllers/SpinnerMouseController.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/controllers/SpinnerMouseController.js
@@ -12,16 +12,16 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.controllers.SpinnerMouseController');
+goog.provide('org_apache_flex_html_beads_controllers_SpinnerMouseController');
 
-goog.require('org.apache.flex.html.TextButton');
+goog.require('org_apache_flex_html_TextButton');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.html.beads.controllers.SpinnerMouseController =
+org_apache_flex_html_beads_controllers_SpinnerMouseController =
     function() {
 };
 
@@ -31,10 +31,9 @@ org.apache.flex.html.beads.controllers.SpinnerMouseController =
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.controllers.
-    SpinnerMouseController.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_beads_controllers_SpinnerMouseController.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'SpinnerMouseController',
-                qName: 'org.apache.flex.html.beads.controllers.SpinnerMouseController' }] };
+                qName: 'org_apache_flex_html_beads_controllers_SpinnerMouseController' }] };
 
 
 /**
@@ -42,7 +41,7 @@ org.apache.flex.html.beads.controllers.
  *        SpinnerMouseController}
  * @param {Object} value The strand.
  */
-org.apache.flex.html.beads.controllers.SpinnerMouseController.
+org_apache_flex_html_beads_controllers_SpinnerMouseController.
     prototype.set_strand = function(value) {
   this.strand_ = value;
 
@@ -61,7 +60,7 @@ org.apache.flex.html.beads.controllers.SpinnerMouseController.
  *        SpinnerMouseController}
  * @param {Object} event The event object.
  */
-org.apache.flex.html.beads.controllers.SpinnerMouseController.
+org_apache_flex_html_beads_controllers_SpinnerMouseController.
     prototype.handleIncrementClick = function(event)
     {
   var newValue = this.strand_.snap(Math.min(this.strand_.get_maximum(),
@@ -75,7 +74,7 @@ org.apache.flex.html.beads.controllers.SpinnerMouseController.
  *        SpinnerMouseController}
  * @param {Event} event The event object.
  */
-org.apache.flex.html.beads.controllers.SpinnerMouseController.
+org_apache_flex_html_beads_controllers_SpinnerMouseController.
     prototype.handleDecrementClick =
     function(event)
     {

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/ButtonBarLayout.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/ButtonBarLayout.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/ButtonBarLayout.js
index 82fd3a0..f87f2ff 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/ButtonBarLayout.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/ButtonBarLayout.js
@@ -12,18 +12,18 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.layouts.ButtonBarLayout');
+goog.provide('org_apache_flex_html_beads_layouts_ButtonBarLayout');
 
-goog.require('org.apache.flex.core.IBeadLayout');
-goog.require('org.apache.flex.html.beads.ListView');
+goog.require('org_apache_flex_core_IBeadLayout');
+goog.require('org_apache_flex_html_beads_ListView');
 
 
 
 /**
  * @constructor
- * @implements {org.apache.flex.core.IBeadLayout}
+ * @implements {org_apache_flex_core_IBeadLayout}
  */
-org.apache.flex.html.beads.layouts.ButtonBarLayout =
+org_apache_flex_html_beads_layouts_ButtonBarLayout =
     function() {
   this.strand_ = null;
 
@@ -36,18 +36,18 @@ org.apache.flex.html.beads.layouts.ButtonBarLayout =
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.layouts.ButtonBarLayout
+org_apache_flex_html_beads_layouts_ButtonBarLayout
     .prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ButtonBarLayout',
-                qName: 'org.apache.flex.html.beads.layouts.ButtonBarLayout' }],
-      interfaces: [org.apache.flex.core.IBeadLayout] };
+                qName: 'org_apache_flex_html_beads_layouts_ButtonBarLayout' }],
+      interfaces: [org_apache_flex_core_IBeadLayout] };
 
 
 /**
  * @expose
  * @param {Array} value A set of widths to use for each button (optional).
  */
-org.apache.flex.html.beads.layouts.ButtonBarLayout.prototype.set_buttonWidths =
+org_apache_flex_html_beads_layouts_ButtonBarLayout.prototype.set_buttonWidths =
 function(value) {
   this.buttonWidths_ = value;
 };
@@ -57,7 +57,7 @@ function(value) {
  * @expose
  * @return {Array} A set of widths to use for each button.
  */
-org.apache.flex.html.beads.layouts.ButtonBarLayout.prototype.get_buttonWidths =
+org_apache_flex_html_beads_layouts_ButtonBarLayout.prototype.get_buttonWidths =
 function() {
   return this.buttonWidths_;
 };
@@ -67,7 +67,7 @@ function() {
  * @expose
  * @param {Object} value The new host.
  */
-org.apache.flex.html.beads.layouts.ButtonBarLayout.
+org_apache_flex_html_beads_layouts_ButtonBarLayout.
     prototype.set_strand =
     function(value) {
   if (this.strand_ !== value) {
@@ -88,12 +88,12 @@ org.apache.flex.html.beads.layouts.ButtonBarLayout.
 
 
 /**
- * @param {org.apache.flex.events.Event} event The text getter.
+ * @param {org_apache_flex_events_Event} event The text getter.
  */
-org.apache.flex.html.beads.layouts.ButtonBarLayout.
+org_apache_flex_html_beads_layouts_ButtonBarLayout.
     prototype.changeHandler = function(event) {
 
-  var layoutParent = this.strand_.getBeadByType(org.apache.flex.core.ILayoutParent);
+  var layoutParent = this.strand_.getBeadByType(org_apache_flex_core_ILayoutParent);
   var contentView = layoutParent.get_contentView();
   var itemRendererParent = contentView;
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualBasicLayout.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualBasicLayout.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualBasicLayout.js
index 56b6f39..26ee24e 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualBasicLayout.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualBasicLayout.js
@@ -12,20 +12,20 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.layouts.NonVirtualBasicLayout');
+goog.provide('org_apache_flex_html_beads_layouts_NonVirtualBasicLayout');
 
-goog.require('org.apache.flex.core.IBeadLayout');
-goog.require('org.apache.flex.core.ILayoutChild');
-goog.require('org.apache.flex.core.ValuesManager');
-goog.require('org.apache.flex.utils.Language');
+goog.require('org_apache_flex_core_IBeadLayout');
+goog.require('org_apache_flex_core_ILayoutChild');
+goog.require('org_apache_flex_core_ValuesManager');
+goog.require('org_apache_flex_utils_Language');
 
 
 
 /**
  * @constructor
- * @implements {org.apache.flex.core.IBeadLayout}
+ * @implements {org_apache_flex_core_IBeadLayout}
  */
-org.apache.flex.html.beads.layouts.NonVirtualBasicLayout =
+org_apache_flex_html_beads_layouts_NonVirtualBasicLayout =
     function() {
   this.strand_ = null;
   this.className = 'NonVirtualBasicLayout';
@@ -37,17 +37,17 @@ org.apache.flex.html.beads.layouts.NonVirtualBasicLayout =
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.layouts.NonVirtualBasicLayout.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_beads_layouts_NonVirtualBasicLayout.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'NonVirtualBasicLayout',
-                qName: 'org.apache.flex.html.beads.layouts.NonVirtualBasicLayout'}],
-      interfaces: [org.apache.flex.core.IBeadLayout] };
+                qName: 'org_apache_flex_html_beads_layouts_NonVirtualBasicLayout'}],
+      interfaces: [org_apache_flex_core_IBeadLayout] };
 
 
 /**
  * @expose
  * @param {Object} value The new host.
  */
-org.apache.flex.html.beads.layouts.NonVirtualBasicLayout.
+org_apache_flex_html_beads_layouts_NonVirtualBasicLayout.
     prototype.set_strand = function(value) {
   if (this.strand_ !== value) {
     this.strand_ = value;
@@ -77,7 +77,7 @@ org.apache.flex.html.beads.layouts.NonVirtualBasicLayout.
 /**
  *
  */
-org.apache.flex.html.beads.layouts.NonVirtualBasicLayout.
+org_apache_flex_html_beads_layouts_NonVirtualBasicLayout.
     prototype.addOtherListeners = function() {
   this.strand_.addEventListener('childrenAdded',
       goog.bind(this.changeHandler, this));
@@ -89,9 +89,9 @@ org.apache.flex.html.beads.layouts.NonVirtualBasicLayout.
 
 
 /**
- * @param {org.apache.flex.events.Event} event The event.
+ * @param {org_apache_flex_events_Event} event The event.
  */
-org.apache.flex.html.beads.layouts.NonVirtualBasicLayout.
+org_apache_flex_html_beads_layouts_NonVirtualBasicLayout.
     prototype.sizeChangeHandler = function(event) {
   this.addOtherListeners();
   this.changeHandler(event);
@@ -99,23 +99,23 @@ org.apache.flex.html.beads.layouts.NonVirtualBasicLayout.
 
 
 /**
- * @param {org.apache.flex.events.Event} event The text getter.
+ * @param {org_apache_flex_events_Event} event The text getter.
  */
-org.apache.flex.html.beads.layouts.NonVirtualBasicLayout.
+org_apache_flex_html_beads_layouts_NonVirtualBasicLayout.
     prototype.changeHandler = function(event) {
   var i, n, h, w;
 
-  var viewBead = this.strand_.getBeadByType(org.apache.flex.core.ILayoutParent);
+  var viewBead = this.strand_.getBeadByType(org_apache_flex_core_ILayoutParent);
   var contentView = viewBead.get_contentView();
   w = contentView.get_width();
   h = contentView.get_height();
   n = contentView.get_numElements();
   for (i = 0; i < n; i++) {
     var child = contentView.getElementAt(i);
-    var left = org.apache.flex.core.ValuesManager.valuesImpl.getValue(child, 'left');
-    var right = org.apache.flex.core.ValuesManager.valuesImpl.getValue(child, 'right');
-    var top = org.apache.flex.core.ValuesManager.valuesImpl.getValue(child, 'top');
-    var bottom = org.apache.flex.core.ValuesManager.valuesImpl.getValue(child, 'bottom');
+    var left = org_apache_flex_core_ValuesManager.valuesImpl.getValue(child, 'left');
+    var right = org_apache_flex_core_ValuesManager.valuesImpl.getValue(child, 'right');
+    var top = org_apache_flex_core_ValuesManager.valuesImpl.getValue(child, 'top');
+    var bottom = org_apache_flex_core_ValuesManager.valuesImpl.getValue(child, 'bottom');
 
     if (!isNaN(left)) {
       child.positioner.style.position = 'absolute';

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualBasicScrollingLayout.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualBasicScrollingLayout.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualBasicScrollingLayout.js
index 1c770bb..c7b95a5 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualBasicScrollingLayout.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualBasicScrollingLayout.js
@@ -12,17 +12,17 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.layouts.NonVirtualBasicScrollingLayout');
+goog.provide('org_apache_flex_html_beads_layouts_NonVirtualBasicScrollingLayout');
 
-goog.require('org.apache.flex.core.IBeadLayout');
+goog.require('org_apache_flex_core_IBeadLayout');
 
 
 
 /**
  * @constructor
- * @implements {org.apache.flex.core.IBeadLayout}
+ * @implements {org_apache_flex_core_IBeadLayout}
  */
-org.apache.flex.html.beads.layouts.NonVirtualBasicScrollingLayout =
+org_apache_flex_html_beads_layouts_NonVirtualBasicScrollingLayout =
     function() {
   this.strand_ = null;
   this.className = 'NonVirtualBasicScrollingLayout';
@@ -34,17 +34,17 @@ org.apache.flex.html.beads.layouts.NonVirtualBasicScrollingLayout =
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.layouts.NonVirtualBasicScrollingLayout.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_beads_layouts_NonVirtualBasicScrollingLayout.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'NonVirtualBasicScrollingLayout',
-                qName: 'org.apache.flex.html.beads.layouts.NonVirtualBasicScrollingLayout'}],
-      interfaces: [org.apache.flex.core.IBeadLayout] };
+                qName: 'org_apache_flex_html_beads_layouts_NonVirtualBasicScrollingLayout'}],
+      interfaces: [org_apache_flex_core_IBeadLayout] };
 
 
 /**
  * @expose
  * @param {Object} value The new host.
  */
-org.apache.flex.html.beads.layouts.NonVirtualBasicScrollingLayout.
+org_apache_flex_html_beads_layouts_NonVirtualBasicScrollingLayout.
     prototype.set_strand = function(value) {
   if (this.strand_ !== value) {
     this.strand_ = value;
@@ -57,13 +57,13 @@ org.apache.flex.html.beads.layouts.NonVirtualBasicScrollingLayout.
 
 
 /**
- * @param {org.apache.flex.events.Event} event The text getter.
+ * @param {org_apache_flex_events_Event} event The text getter.
  */
-org.apache.flex.html.beads.layouts.NonVirtualBasicScrollingLayout.
+org_apache_flex_html_beads_layouts_NonVirtualBasicScrollingLayout.
     prototype.changeHandler = function(event) {
   var i, n, h, w;
 
-  var viewBead = this.strand_.getBeadByType(org.apache.flex.core.ILayoutParent);
+  var viewBead = this.strand_.getBeadByType(org_apache_flex_core_ILayoutParent);
   var contentView = viewBead.get_contentView();
   contentView.element.style.overflow = 'auto';
   w = contentView.get_width();
@@ -71,10 +71,10 @@ org.apache.flex.html.beads.layouts.NonVirtualBasicScrollingLayout.
   n = contentView.get_numElements();
   for (i = 0; i < n; i++) {
     var child = contentView.getElementAt(i);
-    var left = org.apache.flex.core.ValuesManager.valuesImpl.getValue(child, 'left');
-    var right = org.apache.flex.core.ValuesManager.valuesImpl.getValue(child, 'right');
-    var top = org.apache.flex.core.ValuesManager.valuesImpl.getValue(child, 'top');
-    var bottom = org.apache.flex.core.ValuesManager.valuesImpl.getValue(child, 'bottom');
+    var left = org_apache_flex_core_ValuesManager.valuesImpl.getValue(child, 'left');
+    var right = org_apache_flex_core_ValuesManager.valuesImpl.getValue(child, 'right');
+    var top = org_apache_flex_core_ValuesManager.valuesImpl.getValue(child, 'top');
+    var bottom = org_apache_flex_core_ValuesManager.valuesImpl.getValue(child, 'bottom');
 
     if (!isNaN(left)) {
       child.positioner.style.position = 'absolute';
@@ -94,4 +94,4 @@ org.apache.flex.html.beads.layouts.NonVirtualBasicScrollingLayout.
     }
     child.dispatchEvent('sizeChanged');
   }
-};
\ No newline at end of file
+};

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualHorizontalLayout.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualHorizontalLayout.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualHorizontalLayout.js
index d01a8f5..fcf067a 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualHorizontalLayout.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualHorizontalLayout.js
@@ -12,17 +12,17 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.layouts.NonVirtualHorizontalLayout');
+goog.provide('org_apache_flex_html_beads_layouts_NonVirtualHorizontalLayout');
 
-goog.require('org.apache.flex.core.IBeadLayout');
+goog.require('org_apache_flex_core_IBeadLayout');
 
 
 
 /**
  * @constructor
- * @implements {org.apache.flex.core.IBeadLayout}
+ * @implements {org_apache_flex_core_IBeadLayout}
  */
-org.apache.flex.html.beads.layouts.NonVirtualHorizontalLayout =
+org_apache_flex_html_beads_layouts_NonVirtualHorizontalLayout =
     function() {
   this.strand_ = null;
   this.className = 'NonVirtualHorizontalLayout';
@@ -34,11 +34,11 @@ org.apache.flex.html.beads.layouts.NonVirtualHorizontalLayout =
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.layouts.NonVirtualHorizontalLayout.
+org_apache_flex_html_beads_layouts_NonVirtualHorizontalLayout.
     prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'NonVirtualHorizontalLayout',
-                qName: 'org.apache.flex.html.beads.layouts.NonVirtualHorizontalLayout' }],
-      interfaces: [org.apache.flex.core.IBeadLayout] };
+                qName: 'org_apache_flex_html_beads_layouts_NonVirtualHorizontalLayout' }],
+      interfaces: [org_apache_flex_core_IBeadLayout] };
 
 
 /**
@@ -46,7 +46,7 @@ org.apache.flex.html.beads.layouts.NonVirtualHorizontalLayout.
           NonVirtualHorizontalLayout}
  * @param {Object} value The new host.
  */
-org.apache.flex.html.beads.layouts.NonVirtualHorizontalLayout.
+org_apache_flex_html_beads_layouts_NonVirtualHorizontalLayout.
     prototype.set_strand =
     function(value) {
   if (this.strand_ !== value) {
@@ -73,7 +73,7 @@ org.apache.flex.html.beads.layouts.NonVirtualHorizontalLayout.
 /**
  *
  */
-org.apache.flex.html.beads.layouts.NonVirtualHorizontalLayout.
+org_apache_flex_html_beads_layouts_NonVirtualHorizontalLayout.
     prototype.addOtherListeners = function() {
   this.strand_.addEventListener('childrenAdded',
       goog.bind(this.changeHandler, this));
@@ -85,9 +85,9 @@ org.apache.flex.html.beads.layouts.NonVirtualHorizontalLayout.
 
 
 /**
- * @param {org.apache.flex.events.Event} event The event.
+ * @param {org_apache_flex_events_Event} event The event.
  */
-org.apache.flex.html.beads.layouts.NonVirtualHorizontalLayout.
+org_apache_flex_html_beads_layouts_NonVirtualHorizontalLayout.
     prototype.sizeChangeHandler = function(event) {
   this.addOtherListeners();
   this.changeHandler(event);
@@ -95,9 +95,9 @@ org.apache.flex.html.beads.layouts.NonVirtualHorizontalLayout.
 
 
 /**
- * @param {org.apache.flex.events.Event} event The text getter.
+ * @param {org_apache_flex_events_Event} event The text getter.
  */
-org.apache.flex.html.beads.layouts.NonVirtualHorizontalLayout.
+org_apache_flex_html_beads_layouts_NonVirtualHorizontalLayout.
     prototype.changeHandler = function(event) {
   var children, i, n;
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualVerticalLayout.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualVerticalLayout.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualVerticalLayout.js
index 69e3362..2e017c5 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualVerticalLayout.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualVerticalLayout.js
@@ -12,17 +12,17 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.layouts.NonVirtualVerticalLayout');
+goog.provide('org_apache_flex_html_beads_layouts_NonVirtualVerticalLayout');
 
-goog.require('org.apache.flex.core.IBeadLayout');
+goog.require('org_apache_flex_core_IBeadLayout');
 
 
 
 /**
  * @constructor
- * @implements {org.apache.flex.core.IBeadLayout}
+ * @implements {org_apache_flex_core_IBeadLayout}
  */
-org.apache.flex.html.beads.layouts.NonVirtualVerticalLayout =
+org_apache_flex_html_beads_layouts_NonVirtualVerticalLayout =
     function() {
   this.strand_ = null;
   this.className = 'NonVirtualVerticalLayout';
@@ -34,17 +34,17 @@ org.apache.flex.html.beads.layouts.NonVirtualVerticalLayout =
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.layouts.NonVirtualVerticalLayout.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_beads_layouts_NonVirtualVerticalLayout.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'NonVirtualVerticalLayout',
-                qName: 'org.apache.flex.html.beads.layouts.NonVirtualVerticalLayout'}],
-      interfaces: [org.apache.flex.core.IBeadLayout] };
+                qName: 'org_apache_flex_html_beads_layouts_NonVirtualVerticalLayout'}],
+      interfaces: [org_apache_flex_core_IBeadLayout] };
 
 
 /**
  * @expose
  * @param {Object} value The new host.
  */
-org.apache.flex.html.beads.layouts.NonVirtualVerticalLayout.
+org_apache_flex_html_beads_layouts_NonVirtualVerticalLayout.
     prototype.set_strand = function(value) {
   if (this.strand_ !== value) {
     this.strand_ = value;
@@ -69,7 +69,7 @@ org.apache.flex.html.beads.layouts.NonVirtualVerticalLayout.
 /**
  *
  */
-org.apache.flex.html.beads.layouts.NonVirtualVerticalLayout.
+org_apache_flex_html_beads_layouts_NonVirtualVerticalLayout.
     prototype.addOtherListeners = function() {
   this.strand_.addEventListener('childrenAdded',
       goog.bind(this.changeHandler, this));
@@ -81,9 +81,9 @@ org.apache.flex.html.beads.layouts.NonVirtualVerticalLayout.
 
 
 /**
- * @param {org.apache.flex.events.Event} event The event.
+ * @param {org_apache_flex_events_Event} event The event.
  */
-org.apache.flex.html.beads.layouts.NonVirtualVerticalLayout.
+org_apache_flex_html_beads_layouts_NonVirtualVerticalLayout.
     prototype.sizeChangeHandler = function(event) {
   this.addOtherListeners();
   this.changeHandler(event);
@@ -91,9 +91,9 @@ org.apache.flex.html.beads.layouts.NonVirtualVerticalLayout.
 
 
 /**
- * @param {org.apache.flex.events.Event} event The text getter.
+ * @param {org_apache_flex_events_Event} event The text getter.
  */
-org.apache.flex.html.beads.layouts.NonVirtualVerticalLayout.
+org_apache_flex_html_beads_layouts_NonVirtualVerticalLayout.
     prototype.changeHandler = function(event) {
   var children, i, n;
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualVerticalScrollingLayout.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualVerticalScrollingLayout.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualVerticalScrollingLayout.js
index c1068ec..79c4c6e 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualVerticalScrollingLayout.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/NonVirtualVerticalScrollingLayout.js
@@ -12,18 +12,17 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.layouts.NonVirtualVerticalScrollingLayout');
+goog.provide('org_apache_flex_html_beads_layouts_NonVirtualVerticalScrollingLayout');
 
-goog.require('org.apache.flex.core.IBeadLayout');
+goog.require('org_apache_flex_core_IBeadLayout');
 
 
 
 /**
  * @constructor
- * @implements {org.apache.flex.core.IBeadLayout}
+ * @implements {org_apache_flex_core_IBeadLayout}
  */
-org.apache.flex.html.beads.layouts.
-    NonVirtualVerticalScrollingLayout = function() {
+org_apache_flex_html_beads_layouts_NonVirtualVerticalScrollingLayout = function() {
   this.strand_ = null;
   this.className = 'NonVirtualVerticalScrollingLayout';
 };
@@ -34,19 +33,17 @@ org.apache.flex.html.beads.layouts.
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.layouts.
-    NonVirtualVerticalScrollingLayout.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_beads_layouts_NonVirtualVerticalScrollingLayout.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'NonVirtualVerticalScrollingLayout',
-                qName: 'org.apache.flex.html.beads.layouts.NonVirtualVerticalScrollingLayout' }],
-      interfaces: [org.apache.flex.core.IBeadLayout] };
+                qName: 'org_apache_flex_html_beads_layouts_NonVirtualVerticalScrollingLayout' }],
+      interfaces: [org_apache_flex_core_IBeadLayout] };
 
 
 /**
  * @expose
  * @param {Object} value The new host.
  */
-org.apache.flex.html.beads.layouts.
-    NonVirtualVerticalScrollingLayout.prototype.set_strand = function(value) {
+org_apache_flex_html_beads_layouts_NonVirtualVerticalScrollingLayout.prototype.set_strand = function(value) {
   if (this.strand_ !== value) {
     this.strand_ = value;
   }

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/TileLayout.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/TileLayout.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/TileLayout.js
index 87d5d7c..5b95491 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/TileLayout.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/layouts/TileLayout.js
@@ -12,17 +12,17 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.layouts.TileLayout');
+goog.provide('org_apache_flex_html_beads_layouts_TileLayout');
 
-goog.require('org.apache.flex.core.IBeadLayout');
+goog.require('org_apache_flex_core_IBeadLayout');
 
 
 
 /**
  * @constructor
- * @implements {org.apache.flex.core.IBeadLayout}
+ * @implements {org_apache_flex_core_IBeadLayout}
  */
-org.apache.flex.html.beads.layouts.TileLayout =
+org_apache_flex_html_beads_layouts_TileLayout =
     function() {
   this.strand_ = null;
   this.className = 'TileLayout';
@@ -34,17 +34,17 @@ org.apache.flex.html.beads.layouts.TileLayout =
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.layouts.TileLayout.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_beads_layouts_TileLayout.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'TileLayout',
-                qName: 'org.apache.flex.html.beads.layouts.TileLayout'}],
-      interfaces: [org.apache.flex.core.IBeadLayout] };
+                qName: 'org_apache_flex_html_beads_layouts_TileLayout'}],
+      interfaces: [org_apache_flex_core_IBeadLayout] };
 
 
 /**
  * @expose
  * @return {number} The number of columns wide for the layout.
  */
-org.apache.flex.html.beads.layouts.TileLayout.prototype.
+org_apache_flex_html_beads_layouts_TileLayout.prototype.
   get_numColumns = function() {
   return this._numColumns;
 };
@@ -54,7 +54,7 @@ org.apache.flex.html.beads.layouts.TileLayout.prototype.
  * @expose
  * @param {number} value The number of columns wide for the layout.
  */
-org.apache.flex.html.beads.layouts.TileLayout.prototype.
+org_apache_flex_html_beads_layouts_TileLayout.prototype.
   set_numColumns = function(value) {
   this._numColumns = value;
 };
@@ -64,7 +64,7 @@ org.apache.flex.html.beads.layouts.TileLayout.prototype.
  * @expose
  * @return {number} The width of each column in the layout.
  */
-org.apache.flex.html.beads.layouts.TileLayout.prototype.
+org_apache_flex_html_beads_layouts_TileLayout.prototype.
   get_columnWidth = function() {
   return this._columnWidth;
 };
@@ -74,7 +74,7 @@ org.apache.flex.html.beads.layouts.TileLayout.prototype.
  * @expose
  * @param {number} value The width of each column in the layout.
  */
-org.apache.flex.html.beads.layouts.TileLayout.prototype.
+org_apache_flex_html_beads_layouts_TileLayout.prototype.
   set_columnWidth = function(value) {
   this._columnWidth = value;
 };
@@ -84,7 +84,7 @@ org.apache.flex.html.beads.layouts.TileLayout.prototype.
  * @expose
  * @return {number} The height of each row of the layout.
  */
-org.apache.flex.html.beads.layouts.TileLayout.prototype.
+org_apache_flex_html_beads_layouts_TileLayout.prototype.
   get_rowHeight = function() {
   return this._rowHeight;
 };
@@ -94,7 +94,7 @@ org.apache.flex.html.beads.layouts.TileLayout.prototype.
  * @expose
  * @param {number} value The height of each row of the Tile layout.
  */
-org.apache.flex.html.beads.layouts.TileLayout.prototype.
+org_apache_flex_html_beads_layouts_TileLayout.prototype.
   set_rowHeight = function(value) {
   this._rowHeight = value;
 };
@@ -104,7 +104,7 @@ org.apache.flex.html.beads.layouts.TileLayout.prototype.
  * @expose
  * @param {Object} value The new host.
  */
-org.apache.flex.html.beads.layouts.TileLayout.prototype.
+org_apache_flex_html_beads_layouts_TileLayout.prototype.
   set_strand = function(value) {
   if (this.strand_ !== value) {
     this.strand_ = value;
@@ -117,9 +117,9 @@ org.apache.flex.html.beads.layouts.TileLayout.prototype.
 
 
 /**
- * @param {org.apache.flex.events.Event} event The text getter.
+ * @param {org_apache_flex_events_Event} event The text getter.
  */
-org.apache.flex.html.beads.layouts.TileLayout.
+org_apache_flex_html_beads_layouts_TileLayout.
     prototype.changeHandler = function(event) {
   var children, i, n;
   var xpos, ypos, useWidth, useHeight;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/ArraySelectionModel.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/ArraySelectionModel.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/ArraySelectionModel.js
index a9dc0dc..e9a979d 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/ArraySelectionModel.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/ArraySelectionModel.js
@@ -12,26 +12,26 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.models.ArraySelectionModel');
+goog.provide('org_apache_flex_html_beads_models_ArraySelectionModel');
 
-goog.require('org.apache.flex.core.ISelectionModel');
-goog.require('org.apache.flex.events.EventDispatcher');
+goog.require('org_apache_flex_core_ISelectionModel');
+goog.require('org_apache_flex_events_EventDispatcher');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.events.EventDispatcher}
- * @implements {org.apache.flex.core.ISelectionModel}
+ * @extends {org_apache_flex_events_EventDispatcher}
+ * @implements {org_apache_flex_core_ISelectionModel}
  */
-org.apache.flex.html.beads.models.ArraySelectionModel =
+org_apache_flex_html_beads_models_ArraySelectionModel =
     function() {
-  org.apache.flex.html.beads.models.ArraySelectionModel.base(this, 'constructor');
+  org_apache_flex_html_beads_models_ArraySelectionModel.base(this, 'constructor');
   this.className = 'ArraySelectionModel';
 };
 goog.inherits(
-    org.apache.flex.html.beads.models.ArraySelectionModel,
-    org.apache.flex.events.EventDispatcher);
+    org_apache_flex_html_beads_models_ArraySelectionModel,
+    org_apache_flex_events_EventDispatcher);
 
 
 /**
@@ -39,17 +39,17 @@ goog.inherits(
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.models.ArraySelectionModel.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_beads_models_ArraySelectionModel.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ArraySelectionModel',
-                qName: 'org.apache.flex.html.beads.models.ArraySelectionModel' }],
-      interfaces: [org.apache.flex.core.ISelectionModel] };
+                qName: 'org_apache_flex_html_beads_models_ArraySelectionModel' }],
+      interfaces: [org_apache_flex_core_ISelectionModel] };
 
 
 /**
  * @expose
  * @param {Object} value The strand.
  */
-org.apache.flex.html.beads.models.ArraySelectionModel.prototype.
+org_apache_flex_html_beads_models_ArraySelectionModel.prototype.
     set_strand = function(value) {
   this.strand_ = value;
 };
@@ -59,7 +59,7 @@ org.apache.flex.html.beads.models.ArraySelectionModel.prototype.
  * @expose
  * @return {Object} value The dataProvider.
  */
-org.apache.flex.html.beads.models.ArraySelectionModel.prototype.
+org_apache_flex_html_beads_models_ArraySelectionModel.prototype.
     get_dataProvider = function() {
   return this.dataProvider_;
 };
@@ -69,7 +69,7 @@ org.apache.flex.html.beads.models.ArraySelectionModel.prototype.
  * @expose
  * @param {Object} value The dataProvider.
  */
-org.apache.flex.html.beads.models.ArraySelectionModel.prototype.
+org_apache_flex_html_beads_models_ArraySelectionModel.prototype.
     set_dataProvider = function(value) {
   this.dataProvider_ = value;
   this.dispatchEvent('dataProviderChanged');
@@ -80,7 +80,7 @@ org.apache.flex.html.beads.models.ArraySelectionModel.prototype.
  * @expose
  * @return {number} value The selected index.
  */
-org.apache.flex.html.beads.models.ArraySelectionModel.prototype.
+org_apache_flex_html_beads_models_ArraySelectionModel.prototype.
     get_selectedIndex = function() {
   return this.selectedIndex_;
 };
@@ -90,7 +90,7 @@ org.apache.flex.html.beads.models.ArraySelectionModel.prototype.
  * @expose
  * @param {number} value The selected index.
  */
-org.apache.flex.html.beads.models.ArraySelectionModel.prototype.
+org_apache_flex_html_beads_models_ArraySelectionModel.prototype.
     set_selectedIndex = function(value) {
   this.selectedIndex_ = value;
   this.dispatchEvent('selectedIndexChanged');
@@ -101,7 +101,7 @@ org.apache.flex.html.beads.models.ArraySelectionModel.prototype.
  * @expose
  * @return {Object} value The selected item.
  */
-org.apache.flex.html.beads.models.ArraySelectionModel.prototype.
+org_apache_flex_html_beads_models_ArraySelectionModel.prototype.
     get_selectedItem = function() {
   var si;
 
@@ -120,7 +120,7 @@ org.apache.flex.html.beads.models.ArraySelectionModel.prototype.
  * @expose
  * @param {Object} value The selected item.
  */
-org.apache.flex.html.beads.models.ArraySelectionModel.prototype.
+org_apache_flex_html_beads_models_ArraySelectionModel.prototype.
     set_selectedItem = function(value) {
   // find item in dataProvider and set selectedIndex or -1 if not exists
 
@@ -143,7 +143,7 @@ org.apache.flex.html.beads.models.ArraySelectionModel.prototype.
  * @expose
  * @return {String} The name of the field to use as a label.
  */
-org.apache.flex.html.beads.models.ArraySelectionModel.prototype.get_labelField =
+org_apache_flex_html_beads_models_ArraySelectionModel.prototype.get_labelField =
 function() {
   return this.labelField_;
 };
@@ -153,7 +153,7 @@ function() {
  * @expose
  * @param {String} value The name of the field to use as a label.
  */
-org.apache.flex.html.beads.models.ArraySelectionModel.prototype.set_labelField =
+org_apache_flex_html_beads_models_ArraySelectionModel.prototype.set_labelField =
 function(value) {
   this.labelField_ = value;
   this.dispatchEvent('labelFieldChanged');

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/DataGridModel.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/DataGridModel.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/DataGridModel.js
index 11e34c0..8bf60f1 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/DataGridModel.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/DataGridModel.js
@@ -12,29 +12,29 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.models.DataGridModel');
+goog.provide('org_apache_flex_html_beads_models_DataGridModel');
 
-goog.require('org.apache.flex.core.IDataGridModel');
-goog.require('org.apache.flex.html.beads.models.ArraySelectionModel');
+goog.require('org_apache_flex_core_IDataGridModel');
+goog.require('org_apache_flex_html_beads_models_ArraySelectionModel');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.html.beads.models.ArraySelectionModel}
- * @implements {org.apache.flex.core.IDataGridModel}
+ * @extends {org_apache_flex_html_beads_models_ArraySelectionModel}
+ * @implements {org_apache_flex_core_IDataGridModel}
  */
-org.apache.flex.html.beads.models.DataGridModel =
+org_apache_flex_html_beads_models_DataGridModel =
     function() {
-  org.apache.flex.html.beads.models.DataGridModel.base(this, 'constructor');
+  org_apache_flex_html_beads_models_DataGridModel.base(this, 'constructor');
 
   this.labelFields_ = [];
 
   this.className = 'DataGridModel';
 };
 goog.inherits(
-    org.apache.flex.html.beads.models.DataGridModel,
-    org.apache.flex.html.beads.models.ArraySelectionModel);
+    org_apache_flex_html_beads_models_DataGridModel,
+    org_apache_flex_html_beads_models_ArraySelectionModel);
 
 
 /**
@@ -42,19 +42,19 @@ goog.inherits(
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.models.DataGridModel.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_beads_models_DataGridModel.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'DataGridModel',
-                qName: 'org.apache.flex.html.beads.models.DataGridModel' }],
-      interfaces: [org.apache.flex.core.IDataGridModel] };
+                qName: 'org_apache_flex_html_beads_models_DataGridModel' }],
+      interfaces: [org_apache_flex_core_IDataGridModel] };
 
 
 /**
  * @expose
  * @param {Object} value The strand.
  */
-org.apache.flex.html.beads.models.DataGridModel.prototype.
+org_apache_flex_html_beads_models_DataGridModel.prototype.
     set_strand = function(value) {
-  org.apache.flex.html.beads.models.DataGridModel.base(this, 'set_strand', value);
+  org_apache_flex_html_beads_models_DataGridModel.base(this, 'set_strand', value);
   this.strand_ = value;
 };
 
@@ -63,7 +63,7 @@ org.apache.flex.html.beads.models.DataGridModel.prototype.
  * @expose
  * @param {Array} value Array of DataGridColumn instances.
  */
-org.apache.flex.html.beads.models.DataGridModel.prototype.
+org_apache_flex_html_beads_models_DataGridModel.prototype.
     set_columns = function(value) {
   this.columns_ = value;
 };
@@ -73,7 +73,7 @@ org.apache.flex.html.beads.models.DataGridModel.prototype.
  * @expose
  * @return {Array} Array of DataGridColumn instances.
  */
-org.apache.flex.html.beads.models.DataGridModel.prototype.
+org_apache_flex_html_beads_models_DataGridModel.prototype.
     get_columns = function() {
   return this.columns_;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/ImageModel.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/ImageModel.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/ImageModel.js
index 1b13384..210a29e 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/ImageModel.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/ImageModel.js
@@ -12,23 +12,23 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.models.ImageModel');
+goog.provide('org_apache_flex_html_beads_models_ImageModel');
 
-goog.require('org.apache.flex.events.EventDispatcher');
+goog.require('org_apache_flex_events_EventDispatcher');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.events.EventDispatcher}
+ * @extends {org_apache_flex_events_EventDispatcher}
  */
-org.apache.flex.html.beads.models.ImageModel =
+org_apache_flex_html_beads_models_ImageModel =
     function() {
-  org.apache.flex.html.beads.models.ImageModel.base(this, 'constructor');
+  org_apache_flex_html_beads_models_ImageModel.base(this, 'constructor');
 };
 goog.inherits(
-    org.apache.flex.html.beads.models.ImageModel,
-    org.apache.flex.events.EventDispatcher);
+    org_apache_flex_html_beads_models_ImageModel,
+    org_apache_flex_events_EventDispatcher);
 
 
 /**
@@ -36,16 +36,16 @@ goog.inherits(
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.models.ImageModel.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_beads_models_ImageModel.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ImageModel',
-                qName: 'org.apache.flex.html.beads.models.ImageModel'}] };
+                qName: 'org_apache_flex_html_beads_models_ImageModel'}] };
 
 
 /**
  * @expose
  * @param {Object} value The strand.
  */
-org.apache.flex.html.beads.models.ImageModel.prototype.
+org_apache_flex_html_beads_models_ImageModel.prototype.
     set_strand = function(value) {
   this.strand_ = value;
 };
@@ -55,7 +55,7 @@ org.apache.flex.html.beads.models.ImageModel.prototype.
  * @expose
  * @return {Object} value The image source.
  */
-org.apache.flex.html.beads.models.ImageModel.prototype.
+org_apache_flex_html_beads_models_ImageModel.prototype.
     get_source = function() {
   return this.source;
 };
@@ -65,7 +65,7 @@ org.apache.flex.html.beads.models.ImageModel.prototype.
  * @expose
  * @param {Object} value The image source.
  */
-org.apache.flex.html.beads.models.ImageModel.prototype.
+org_apache_flex_html_beads_models_ImageModel.prototype.
     set_source = function(value) {
   this.source = value;
   this.dispatchEvent('sourceChanged');

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/ListPresentationModel.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/ListPresentationModel.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/ListPresentationModel.js
index c46919a..a38be51 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/ListPresentationModel.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/ListPresentationModel.js
@@ -12,33 +12,33 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.models.ListPresentationModel');
+goog.provide('org_apache_flex_html_beads_models_ListPresentationModel');
 
-goog.require('org.apache.flex.core.IListPresentationModel');
-goog.require('org.apache.flex.events.EventDispatcher');
+goog.require('org_apache_flex_core_IListPresentationModel');
+goog.require('org_apache_flex_events_EventDispatcher');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.events.EventDispatcher}
- * @implements {org.apache.flex.core.IListPresentationModel}
+ * @extends {org_apache_flex_events_EventDispatcher}
+ * @implements {org_apache_flex_core_IListPresentationModel}
  */
-org.apache.flex.html.beads.models.ListPresentationModel =
+org_apache_flex_html_beads_models_ListPresentationModel =
     function() {
-  org.apache.flex.html.beads.models.ListPresentationModel.base(this, 'constructor');
+  org_apache_flex_html_beads_models_ListPresentationModel.base(this, 'constructor');
   this.className = 'ListPresentationModel';
 };
 goog.inherits(
-    org.apache.flex.html.beads.models.ListPresentationModel,
-    org.apache.flex.events.EventDispatcher);
+    org_apache_flex_html_beads_models_ListPresentationModel,
+    org_apache_flex_events_EventDispatcher);
 
 
 /**
  * @private
  * @type {number}
  */
-org.apache.flex.html.beads.models.ListPresentationModel.prototype.rowHeight_ = 30;
+org_apache_flex_html_beads_models_ListPresentationModel.prototype.rowHeight_ = 30;
 
 
 /**
@@ -46,17 +46,17 @@ org.apache.flex.html.beads.models.ListPresentationModel.prototype.rowHeight_ = 3
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.models.ListPresentationModel.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_beads_models_ListPresentationModel.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ListPresentationModel',
-                qName: 'org.apache.flex.html.beads.models.ListPresentationModel' }],
-      interfaces: [org.apache.flex.core.IListPresentationModel] };
+                qName: 'org_apache_flex_html_beads_models_ListPresentationModel' }],
+      interfaces: [org_apache_flex_core_IListPresentationModel] };
 
 
 /**
  * @expose
  * @param {Object} value The strand.
  */
-org.apache.flex.html.beads.models.ListPresentationModel.prototype.
+org_apache_flex_html_beads_models_ListPresentationModel.prototype.
     set_strand = function(value) {
   this.strand_ = value;
 };
@@ -66,7 +66,7 @@ org.apache.flex.html.beads.models.ListPresentationModel.prototype.
  * @expose
  * @return {number} value The height of the rows.
  */
-org.apache.flex.html.beads.models.ListPresentationModel.prototype.
+org_apache_flex_html_beads_models_ListPresentationModel.prototype.
     get_rowHeight = function() {
   return this.rowHeight_;
 };
@@ -76,7 +76,7 @@ org.apache.flex.html.beads.models.ListPresentationModel.prototype.
  * @expose
  * @param {number} value The height of the rows.
  */
-org.apache.flex.html.beads.models.ListPresentationModel.prototype.
+org_apache_flex_html_beads_models_ListPresentationModel.prototype.
     set_rowHeight = function(value) {
   this.rowHeight_ = value;
   this.dispatchEvent('rowHeightChanged');

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/PanelModel.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/PanelModel.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/PanelModel.js
index 8dc4319..092c1d6 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/PanelModel.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/PanelModel.js
@@ -12,18 +12,18 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.models.PanelModel');
+goog.provide('org_apache_flex_html_beads_models_PanelModel');
 
-goog.require('org.apache.flex.events.EventDispatcher');
+goog.require('org_apache_flex_events_EventDispatcher');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.events.EventDispatcher}
+ * @extends {org_apache_flex_events_EventDispatcher}
  */
-org.apache.flex.html.beads.models.PanelModel = function() {
-  org.apache.flex.html.beads.models.PanelModel.base(this, 'constructor');
+org_apache_flex_html_beads_models_PanelModel = function() {
+  org_apache_flex_html_beads_models_PanelModel.base(this, 'constructor');
 
   /**
    * @private
@@ -41,8 +41,8 @@ org.apache.flex.html.beads.models.PanelModel = function() {
    */
   this.showCloseButton_ = false;
 };
-goog.inherits(org.apache.flex.html.beads.models.PanelModel,
-    org.apache.flex.events.EventDispatcher);
+goog.inherits(org_apache_flex_html_beads_models_PanelModel,
+    org_apache_flex_events_EventDispatcher);
 
 
 /**
@@ -50,17 +50,17 @@ goog.inherits(org.apache.flex.html.beads.models.PanelModel,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.models.PanelModel.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_beads_models_PanelModel.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'PanelModel',
-                qName: 'org.apache.flex.html.beads.models.PanelModel'}],
-      interfaces: [org.apache.flex.core.IBeadModel] };
+                qName: 'org_apache_flex_html_beads_models_PanelModel'}],
+      interfaces: [org_apache_flex_core_IBeadModel] };
 
 
 /**
  * @expose
  * @param {Object} value The strand.
  */
-org.apache.flex.html.beads.models.PanelModel.prototype.
+org_apache_flex_html_beads_models_PanelModel.prototype.
     set_strand = function(value) {
   this.strand_ = value;
 };
@@ -70,7 +70,7 @@ org.apache.flex.html.beads.models.PanelModel.prototype.
  * @expose
  * @return {string} The title.
  */
-org.apache.flex.html.beads.models.PanelModel.prototype.
+org_apache_flex_html_beads_models_PanelModel.prototype.
     get_title = function() {
   return this.title_;
 };
@@ -80,7 +80,7 @@ org.apache.flex.html.beads.models.PanelModel.prototype.
  * @expose
  * @param {string} value The title to set.
  */
-org.apache.flex.html.beads.models.PanelModel.prototype.
+org_apache_flex_html_beads_models_PanelModel.prototype.
     set_title = function(value) {
   if (this.title_ != value) {
     this.title_ = value;
@@ -93,7 +93,7 @@ org.apache.flex.html.beads.models.PanelModel.prototype.
  * @expose
  * @return {string} The HTML title.
  */
-org.apache.flex.html.beads.models.PanelModel.prototype.
+org_apache_flex_html_beads_models_PanelModel.prototype.
     get_htmlTitle = function() {
   return this.htmlTitle_;
 };
@@ -103,7 +103,7 @@ org.apache.flex.html.beads.models.PanelModel.prototype.
  * @expose
  * @param {string} value The new HTML title.
  */
-org.apache.flex.html.beads.models.PanelModel.prototype.
+org_apache_flex_html_beads_models_PanelModel.prototype.
     set_htmlTitle = function(value) {
   if (this.htmlTitle_ != value) {
     this.htmlTitle_ = value;
@@ -117,7 +117,7 @@ org.apache.flex.html.beads.models.PanelModel.prototype.
  * @return {boolean} Returns true if the close button should appear in
  * the TitleBar.
  */
-org.apache.flex.html.beads.models.PanelModel.prototype.
+org_apache_flex_html_beads_models_PanelModel.prototype.
     get_showCloseButton = function() {
   return this.showCloseButton_;
 };
@@ -128,7 +128,7 @@ org.apache.flex.html.beads.models.PanelModel.prototype.
  * @param {boolean} value Determines if the close button shows (true) or
  * not (false).
  */
-org.apache.flex.html.beads.models.PanelModel.prototype.
+org_apache_flex_html_beads_models_PanelModel.prototype.
     set_showCloseButton = function(value) {
   if (this.showCloseButton_ != value) {
     this.showCloseButton_ = value;


[06/12] git commit: [flex-asjs] [refs/heads/develop] - switching from org.apache.flex to org_apache_flex so GCC doesn't complain

Posted by ah...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/events/CustomEvent.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/events/CustomEvent.js b/frameworks/js/FlexJS/src/org/apache/flex/events/CustomEvent.js
index c3b1d28..9c5608c 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/events/CustomEvent.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/events/CustomEvent.js
@@ -12,7 +12,7 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.events.CustomEvent');
+goog.provide('org_apache_flex_events_CustomEvent');
 
 goog.require('goog.events.Event');
 
@@ -23,12 +23,12 @@ goog.require('goog.events.Event');
  * @extends {goog.events.Event}
  * @param {string} type The event type.
  */
-org.apache.flex.events.CustomEvent = function(type) {
-  org.apache.flex.events.CustomEvent.base(this, 'constructor', type);
+org_apache_flex_events_CustomEvent = function(type) {
+  org_apache_flex_events_CustomEvent.base(this, 'constructor', type);
 
   this.type = type;
 };
-goog.inherits(org.apache.flex.events.CustomEvent,
+goog.inherits(org_apache_flex_events_CustomEvent,
     goog.events.Event);
 
 
@@ -37,16 +37,16 @@ goog.inherits(org.apache.flex.events.CustomEvent,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.events.CustomEvent.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_events_CustomEvent.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'CustomEvent',
-                qName: 'org.apache.flex.events.CustomEvent'}] };
+                qName: 'org_apache_flex_events_CustomEvent'}] };
 
 
 /**
  * @expose
  * @param {string} type The event type.
  */
-org.apache.flex.events.CustomEvent.prototype.init = function(type) {
+org_apache_flex_events_CustomEvent.prototype.init = function(type) {
   this.type = type;
 };
 
@@ -55,4 +55,4 @@ org.apache.flex.events.CustomEvent.prototype.init = function(type) {
  * @expose
  * @type {string} type The event type.
  */
-org.apache.flex.events.CustomEvent.prototype.type = '';
+org_apache_flex_events_CustomEvent.prototype.type = '';

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/events/DragEvent.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/events/DragEvent.js b/frameworks/js/FlexJS/src/org/apache/flex/events/DragEvent.js
index 0b387ec..a75791f 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/events/DragEvent.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/events/DragEvent.js
@@ -12,10 +12,10 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.events.DragEvent');
+goog.provide('org_apache_flex_events_DragEvent');
 
 goog.require('goog.events.BrowserEvent');
-goog.require('org.apache.flex.events.EventDispatcher');
+goog.require('org_apache_flex_events_EventDispatcher');
 
 
 
@@ -28,12 +28,12 @@ goog.require('org.apache.flex.events.EventDispatcher');
  * @extends {goog.events.BrowserEvent}
  * @param {string} type The event type.
  */
-org.apache.flex.events.DragEvent = function(type) {
-  org.apache.flex.events.DragEvent.base(this, 'constructor');
+org_apache_flex_events_DragEvent = function(type) {
+  org_apache_flex_events_DragEvent.base(this, 'constructor');
 
   this.type = type;
 };
-goog.inherits(org.apache.flex.events.DragEvent,
+goog.inherits(org_apache_flex_events_DragEvent,
     goog.events.BrowserEvent);
 
 
@@ -42,9 +42,9 @@ goog.inherits(org.apache.flex.events.DragEvent,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.events.DragEvent.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_events_DragEvent.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'DragEvent',
-                qName: 'org.apache.flex.events.DragEvent'}] };
+                qName: 'org_apache_flex_events_DragEvent'}] };
 
 
 /**
@@ -53,7 +53,7 @@ org.apache.flex.events.DragEvent.prototype.FLEXJS_CLASS_INFO =
  * @param {Event} event The mouse event to base the DragEvent on.
  * @return {MouseEvent} The new event.
  */
-org.apache.flex.events.DragEvent.createDragEvent =
+org_apache_flex_events_DragEvent.createDragEvent =
     function(type, event) {
   var out = new MouseEvent(type);
   out.initMouseEvent(type, true, true);
@@ -73,7 +73,7 @@ org.apache.flex.events.DragEvent.createDragEvent =
  * @param {Event} event The drag event.
  * @param {Object} target The target for the event.
  */
-org.apache.flex.events.DragEvent.dispatchDragEvent =
+org_apache_flex_events_DragEvent.dispatchDragEvent =
     function(event, target) {
   target.element.dispatchEvent(event);
 };
@@ -83,56 +83,56 @@ org.apache.flex.events.DragEvent.dispatchDragEvent =
  * @expose
  * @type {string} DRAG_START The event type for starting drag-drop.
  */
-org.apache.flex.events.DragEvent.DRAG_START = 'dragStart';
+org_apache_flex_events_DragEvent.DRAG_START = 'dragStart';
 
 
 /**
  * @expose
  * @type {string} DRAG_MOVE The event type when moving mouse during drag-drop.
  */
-org.apache.flex.events.DragEvent.DRAG_MOVE = 'dragMove';
+org_apache_flex_events_DragEvent.DRAG_MOVE = 'dragMove';
 
 
 /**
  * @expose
  * @type {string} DRAG_END The event type for ending drag-drop.
  */
-org.apache.flex.events.DragEvent.DRAG_END = 'dragEnd';
+org_apache_flex_events_DragEvent.DRAG_END = 'dragEnd';
 
 
 /**
  * @expose
  * @type {string} DRAG_ENTER The event type for entering a potential drop target.
  */
-org.apache.flex.events.DragEvent.DRAG_ENTER = 'dragEnter';
+org_apache_flex_events_DragEvent.DRAG_ENTER = 'dragEnter';
 
 
 /**
  * @expose
  * @type {string} DRAG_OVER The event type for moving over a potential drop target.
  */
-org.apache.flex.events.DragEvent.DRAG_OVER = 'dragOver';
+org_apache_flex_events_DragEvent.DRAG_OVER = 'dragOver';
 
 
 /**
  * @expose
  * @type {string} DRAG_EXIT The event type for leaving a potential drop target.
  */
-org.apache.flex.events.DragEvent.DRAG_EXIT = 'dragExit';
+org_apache_flex_events_DragEvent.DRAG_EXIT = 'dragExit';
 
 
 /**
  * @expose
  * @type {string} DRAG_DROP The event type for dropping on a target.
  */
-org.apache.flex.events.DragEvent.DRAG_DROP = 'dragDrop';
+org_apache_flex_events_DragEvent.DRAG_DROP = 'dragDrop';
 
 
 /**
  * @return {boolean}
  */
-org.apache.flex.events.DragEvent.installDragEventMixin = function() {
-  var o = org.apache.flex.events.EventDispatcher.elementEvents;
+org_apache_flex_events_DragEvent.installDragEventMixin = function() {
+  var o = org_apache_flex_events_EventDispatcher.elementEvents;
   o['dragEnd'] = 1;
   o['dragMove'] = 1;
   return true;
@@ -145,5 +145,5 @@ org.apache.flex.events.DragEvent.installDragEventMixin = function() {
 /**
  * @type {boolean}
  */
-org.apache.flex.events.DragEvent.dragEventMixin =
-    org.apache.flex.events.DragEvent.installDragEventMixin();
+org_apache_flex_events_DragEvent.dragEventMixin =
+    org_apache_flex_events_DragEvent.installDragEventMixin();

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/events/Event.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/events/Event.js b/frameworks/js/FlexJS/src/org/apache/flex/events/Event.js
index b5cd820..9aaef19 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/events/Event.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/events/Event.js
@@ -14,7 +14,7 @@
 // EventHandler and ErrorHandler are not listed as deps for
 // some of the event classes because they would cause
 // circularities so we force them in here.
-goog.provide('org.apache.flex.events.Event');
+goog.provide('org_apache_flex_events_Event');
 
 goog.require('goog.debug.ErrorHandler');
 goog.require('goog.events.Event');
@@ -27,12 +27,12 @@ goog.require('goog.events.EventHandler');
  * @extends {goog.events.Event}
  * @param {string} type The event type.
  */
-org.apache.flex.events.Event = function(type) {
-  org.apache.flex.events.Event.base(this, 'constructor', type);
+org_apache_flex_events_Event = function(type) {
+  org_apache_flex_events_Event.base(this, 'constructor', type);
 
   this.type = type;
 };
-goog.inherits(org.apache.flex.events.Event,
+goog.inherits(org_apache_flex_events_Event,
     goog.events.Event);
 
 
@@ -41,16 +41,16 @@ goog.inherits(org.apache.flex.events.Event,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.events.Event.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_events_Event.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'Event',
-                qName: 'org.apache.flex.events.Event' }] };
+                qName: 'org_apache_flex_events_Event' }] };
 
 
 /**
  * Enum type for the events fired by the FlexJS Event
  * @enum {string}
  */
-org.apache.flex.events.Event.EventType = {
+org_apache_flex_events_Event.EventType = {
     CHANGE: 'change'
   };
 
@@ -59,14 +59,14 @@ org.apache.flex.events.Event.EventType = {
  * @expose
  * @type {string} type The event type.
  */
-org.apache.flex.events.Event.prototype.type = '';
+org_apache_flex_events_Event.prototype.type = '';
 
 
 /**
  * @expose
  * @param {string} type The event type.
  */
-org.apache.flex.events.Event.prototype.init = function(type) {
+org_apache_flex_events_Event.prototype.init = function(type) {
   this.type = type;
 };
 
@@ -75,7 +75,7 @@ org.apache.flex.events.Event.prototype.init = function(type) {
  * @expose
  * @return {string} The event type.
  */
-org.apache.flex.events.Event.prototype.get_type = function() {
+org_apache_flex_events_Event.prototype.get_type = function() {
   return this.type;
 };
 
@@ -84,7 +84,7 @@ org.apache.flex.events.Event.prototype.get_type = function() {
  * @expose
  * @return {Object|undefined} The event target.
  */
-org.apache.flex.events.Event.prototype.get_target = function() {
+org_apache_flex_events_Event.prototype.get_target = function() {
   return this.target;
 };
 
@@ -93,6 +93,6 @@ org.apache.flex.events.Event.prototype.get_target = function() {
  * @expose
  * @return {Object|undefined} The event currentTarget.
  */
-org.apache.flex.events.Event.prototype.get_currentTarget = function() {
+org_apache_flex_events_Event.prototype.get_currentTarget = function() {
   return this.currentTarget;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/events/EventDispatcher.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/events/EventDispatcher.js b/frameworks/js/FlexJS/src/org/apache/flex/events/EventDispatcher.js
index 3129175..e508d25 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/events/EventDispatcher.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/events/EventDispatcher.js
@@ -12,22 +12,22 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.events.EventDispatcher');
+goog.provide('org_apache_flex_events_EventDispatcher');
 
 goog.require('goog.events.EventTarget');
-goog.require('org.apache.flex.events.IEventDispatcher');
+goog.require('org_apache_flex_events_IEventDispatcher');
 
 
 
 /**
  * @constructor
  * @extends {goog.events.EventTarget}
- * @implements {org.apache.flex.events.IEventDispatcher}
+ * @implements {org_apache_flex_events_IEventDispatcher}
  */
-org.apache.flex.events.EventDispatcher = function() {
-  org.apache.flex.events.EventDispatcher.base(this, 'constructor');
+org_apache_flex_events_EventDispatcher = function() {
+  org_apache_flex_events_EventDispatcher.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.events.EventDispatcher,
+goog.inherits(org_apache_flex_events_EventDispatcher,
     goog.events.EventTarget);
 
 
@@ -36,16 +36,16 @@ goog.inherits(org.apache.flex.events.EventDispatcher,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.events.EventDispatcher.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_events_EventDispatcher.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'EventDispatcher',
-                qName: 'org.apache.flex.events.EventDispatcher'}],
-      interfaces: [org.apache.flex.events.IEventDispatcher] };
+                qName: 'org_apache_flex_events_EventDispatcher'}],
+      interfaces: [org_apache_flex_events_IEventDispatcher] };
 
 
 /**
  * @override
  */
-org.apache.flex.events.EventDispatcher.prototype.addEventListener =
+org_apache_flex_events_EventDispatcher.prototype.addEventListener =
     function(type, handler, opt_capture, opt_handlerScope) {
   var source;
 
@@ -59,7 +59,7 @@ org.apache.flex.events.EventDispatcher.prototype.addEventListener =
       this.element.nodeName.toLowerCase() !== 'div' &&
       this.element.nodeName.toLowerCase() !== 'body') {
     source = this.element;
-  } else if (org.apache.flex.events.EventDispatcher.elementEvents[type]) {
+  } else if (org_apache_flex_events_EventDispatcher.elementEvents[type]) {
     // mouse and keyboard events also dispatch off the element.
     source = this.element;
   }
@@ -74,7 +74,7 @@ org.apache.flex.events.EventDispatcher.prototype.addEventListener =
  * @param {string} propName The name of the property.
  * @return {Object} value The value of the property.
  */
-org.apache.flex.events.EventDispatcher.prototype.getProperty =
+org_apache_flex_events_EventDispatcher.prototype.getProperty =
     function(obj, propName) {
   if (typeof obj['get_' + propName] === 'function') {
     return obj['get_' + propName]();
@@ -89,7 +89,7 @@ org.apache.flex.events.EventDispatcher.prototype.getProperty =
  * @param {string} propName The name of the property.
  * @param {Object} value The value of the property.
  */
-org.apache.flex.events.EventDispatcher.prototype.setProperty =
+org_apache_flex_events_EventDispatcher.prototype.setProperty =
 function(obj, propName, value) {
   if (typeof obj['set_' + propName] === 'function') {
     obj['set_' + propName](value);
@@ -102,7 +102,7 @@ function(obj, propName, value) {
 /**
  * @type {Object}
  */
-org.apache.flex.events.EventDispatcher.elementEvents = {
+org_apache_flex_events_EventDispatcher.elementEvents = {
   'mouseover': 1,
   'mouseout': 1,
   'mouseup': 1,

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/events/IEventDispatcher.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/events/IEventDispatcher.js b/frameworks/js/FlexJS/src/org/apache/flex/events/IEventDispatcher.js
index a87d8a1..10e04ad 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/events/IEventDispatcher.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/events/IEventDispatcher.js
@@ -17,7 +17,7 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.events.IEventDispatcher');
+goog.provide('org_apache_flex_events_IEventDispatcher');
 
 
 
@@ -26,7 +26,7 @@ goog.provide('org.apache.flex.events.IEventDispatcher');
  *
  * @interface
  */
-org.apache.flex.events.IEventDispatcher = function() {
+org_apache_flex_events_IEventDispatcher = function() {
 };
 
 
@@ -35,6 +35,6 @@ org.apache.flex.events.IEventDispatcher = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.events.IEventDispatcher.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_events_IEventDispatcher.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'IEventDispatcher',
-                qName: 'org.apache.flex.events.IEventDispatcher'}] };
+                qName: 'org_apache_flex_events_IEventDispatcher'}] };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/events/MouseEvent.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/events/MouseEvent.js b/frameworks/js/FlexJS/src/org/apache/flex/events/MouseEvent.js
index ece8e86..0bad510 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/events/MouseEvent.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/events/MouseEvent.js
@@ -12,7 +12,7 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.events.MouseEvent');
+goog.provide('org_apache_flex_events_MouseEvent');
 
 goog.require('goog.events.BrowserEvent');
 
@@ -27,53 +27,53 @@ goog.require('goog.events.BrowserEvent');
  * if the runtime is actually sending a native
  * browser MouseEvent
  */
-org.apache.flex.events.MouseEvent = function() {
-  org.apache.flex.events.MouseEvent.base(this, 'constructor');
+org_apache_flex_events_MouseEvent = function() {
+  org_apache_flex_events_MouseEvent.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.events.MouseEvent,
+goog.inherits(org_apache_flex_events_MouseEvent,
     goog.events.BrowserEvent);
 
 
 /**
  * @type {string}
  */
-org.apache.flex.events.MouseEvent.ROLL_OVER = 'rollover';
+org_apache_flex_events_MouseEvent.ROLL_OVER = 'rollover';
 
 
 /**
  * @type {string}
  */
-org.apache.flex.events.MouseEvent.ROLL_OUT = 'rollout';
+org_apache_flex_events_MouseEvent.ROLL_OUT = 'rollout';
 
 
 /**
  * @type {string}
  */
-org.apache.flex.events.MouseEvent.MOUSE_OVER = 'mouseover';
+org_apache_flex_events_MouseEvent.MOUSE_OVER = 'mouseover';
 
 
 /**
  * @type {string}
  */
-org.apache.flex.events.MouseEvent.MOUSE_OUT = 'mouseout';
+org_apache_flex_events_MouseEvent.MOUSE_OUT = 'mouseout';
 
 
 /**
  * @type {string}
  */
-org.apache.flex.events.MouseEvent.MOUSE_UP = 'mouseup';
+org_apache_flex_events_MouseEvent.MOUSE_UP = 'mouseup';
 
 
 /**
  * @type {string}
  */
-org.apache.flex.events.MouseEvent.MOUSE_DOWN = 'mousedown';
+org_apache_flex_events_MouseEvent.MOUSE_DOWN = 'mousedown';
 
 
 /**
  * @type {string}
  */
-org.apache.flex.events.MouseEvent.MOUSE_MOVE = 'mousemove';
+org_apache_flex_events_MouseEvent.MOUSE_MOVE = 'mousemove';
 
 
 /**
@@ -81,17 +81,17 @@ org.apache.flex.events.MouseEvent.MOUSE_MOVE = 'mousemove';
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.events.MouseEvent.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_events_MouseEvent.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'MouseEvent',
-                qName: 'org.apache.flex.events.MouseEvent' }] };
+                qName: 'org_apache_flex_events_MouseEvent' }] };
 
 
 /**
  * @return {boolean}
  */
-org.apache.flex.events.MouseEvent.installRollOverMixin = function() {
-  window.addEventListener(org.apache.flex.events.MouseEvent.MOUSE_OVER,
-    org.apache.flex.events.MouseEvent.mouseOverHandler);
+org_apache_flex_events_MouseEvent.installRollOverMixin = function() {
+  window.addEventListener(org_apache_flex_events_MouseEvent.MOUSE_OVER,
+    org_apache_flex_events_MouseEvent.mouseOverHandler);
   return true;
 };
 
@@ -103,23 +103,23 @@ org.apache.flex.events.MouseEvent.installRollOverMixin = function() {
  * for the child and not the parent and you need to send rollout
  * to both.  A similar issue exists for rollover.
  */
-org.apache.flex.events.MouseEvent.mouseOverHandler = function(e) {
+org_apache_flex_events_MouseEvent.mouseOverHandler = function(e) {
   var j, m, outs, me, parent;
   var target = e.target.flexjs_wrapper;
   if (target === undefined)
     return; // probably over the html tag
-  var targets = org.apache.flex.events.MouseEvent.targets;
+  var targets = org_apache_flex_events_MouseEvent.targets;
   var index = targets.indexOf(target);
   if (index != -1) {
     // get all children
     outs = targets.slice(index + 1);
     m = outs.length;
     for (j = 0; j < m; j++) {
-      me = org.apache.flex.events.MouseEvent.makeMouseEvent(
-               org.apache.flex.events.MouseEvent.ROLL_OUT, e);
+      me = org_apache_flex_events_MouseEvent.makeMouseEvent(
+               org_apache_flex_events_MouseEvent.ROLL_OUT, e);
       outs[j].element.dispatchEvent(me);
     }
-    org.apache.flex.events.MouseEvent.targets = targets.slice(0, index + 1);
+    org_apache_flex_events_MouseEvent.targets = targets.slice(0, index + 1);
   }
   else {
     var newTargets = [target];
@@ -139,8 +139,8 @@ org.apache.flex.events.MouseEvent.mouseOverHandler = function(e) {
         outs = targets.slice(index + 1);
         m = outs.length;
         for (j = 0; j < m; j++) {
-          me = org.apache.flex.events.MouseEvent.makeMouseEvent(
-                   org.apache.flex.events.MouseEvent.ROLL_OUT, e);
+          me = org_apache_flex_events_MouseEvent.makeMouseEvent(
+                   org_apache_flex_events_MouseEvent.ROLL_OUT, e);
           outs[j].element.dispatchEvent(me);
         }
         targets = targets.slice(0, index + 1);
@@ -149,11 +149,11 @@ org.apache.flex.events.MouseEvent.mouseOverHandler = function(e) {
     }
     var n = newTargets.length;
     for (var i = 0; i < n; i++) {
-      me = org.apache.flex.events.MouseEvent.makeMouseEvent(
-                   org.apache.flex.events.MouseEvent.ROLL_OVER, e);
+      me = org_apache_flex_events_MouseEvent.makeMouseEvent(
+                   org_apache_flex_events_MouseEvent.ROLL_OVER, e);
       newTargets[i].element.dispatchEvent(me);
     }
-    org.apache.flex.events.MouseEvent.targets = targets.concat(newTargets);
+    org_apache_flex_events_MouseEvent.targets = targets.concat(newTargets);
   }
 };
 
@@ -161,14 +161,14 @@ org.apache.flex.events.MouseEvent.mouseOverHandler = function(e) {
 /**
  * @type {boolean}
  */
-org.apache.flex.events.MouseEvent.rollOverMixin =
-    org.apache.flex.events.MouseEvent.installRollOverMixin();
+org_apache_flex_events_MouseEvent.rollOverMixin =
+    org_apache_flex_events_MouseEvent.installRollOverMixin();
 
 
 /**
  * @type {Object}
  */
-org.apache.flex.events.MouseEvent.targets = [];
+org_apache_flex_events_MouseEvent.targets = [];
 
 
 /**
@@ -176,7 +176,7 @@ org.apache.flex.events.MouseEvent.targets = [];
  * @param {Event} e The mouse event.
  * @return {MouseEvent} The new event.
  */
-org.apache.flex.events.MouseEvent.makeMouseEvent = function(type, e) {
+org_apache_flex_events_MouseEvent.makeMouseEvent = function(type, e) {
   var out = new MouseEvent(type);
   out.initMouseEvent(type, false, false);
   out.screenX = e.screenX;
@@ -185,4 +185,4 @@ org.apache.flex.events.MouseEvent.makeMouseEvent = function(type, e) {
   out.shiftKey = e.shiftKey;
   out.altKey = e.altKey;
   return out;
-};
\ No newline at end of file
+};

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/events/ValueChangeEvent.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/events/ValueChangeEvent.js b/frameworks/js/FlexJS/src/org/apache/flex/events/ValueChangeEvent.js
index c54e9e7..1ae2344 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/events/ValueChangeEvent.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/events/ValueChangeEvent.js
@@ -12,7 +12,7 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.events.ValueChangeEvent');
+goog.provide('org_apache_flex_events_ValueChangeEvent');
 
 goog.require('goog.events.Event');
 
@@ -27,14 +27,14 @@ goog.require('goog.events.Event');
  * @param {*} ov The old value.
  * @param {*} nv The new value.
  */
-org.apache.flex.events.ValueChangeEvent = function(type, b, c, ov, nv) {
-  org.apache.flex.events.ValueChangeEvent.base(this, 'constructor', type);
+org_apache_flex_events_ValueChangeEvent = function(type, b, c, ov, nv) {
+  org_apache_flex_events_ValueChangeEvent.base(this, 'constructor', type);
 
   this.type = type;
   this.oldValue = ov;
   this.newValue = nv;
 };
-goog.inherits(org.apache.flex.events.ValueChangeEvent,
+goog.inherits(org_apache_flex_events_ValueChangeEvent,
     goog.events.Event);
 
 
@@ -43,16 +43,16 @@ goog.inherits(org.apache.flex.events.ValueChangeEvent,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.events.ValueChangeEvent.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_events_ValueChangeEvent.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ValueChangeEvent',
-                qName: 'org.apache.flex.events.ValueChangeEvent' }] };
+                qName: 'org_apache_flex_events_ValueChangeEvent' }] };
 
 
 /**
  * @expose
  * @param {string} type The event type.
  */
-org.apache.flex.events.ValueChangeEvent.prototype.init = function(type) {
+org_apache_flex_events_ValueChangeEvent.prototype.init = function(type) {
   this.type = type;
 };
 
@@ -61,35 +61,35 @@ org.apache.flex.events.ValueChangeEvent.prototype.init = function(type) {
  * @expose
  * @type {string} type The event type.
  */
-org.apache.flex.events.ValueChangeEvent.prototype.type = '';
+org_apache_flex_events_ValueChangeEvent.prototype.type = '';
 
 
 /**
  * @expose
  * @type {*} oldValue The old value.
  */
-org.apache.flex.events.ValueChangeEvent.prototype.oldValue = null;
+org_apache_flex_events_ValueChangeEvent.prototype.oldValue = null;
 
 
 /**
  * @expose
  * @type {*} newValue The new value.
  */
-org.apache.flex.events.ValueChangeEvent.prototype.newValue = null;
+org_apache_flex_events_ValueChangeEvent.prototype.newValue = null;
 
 
 /**
  * @expose
  * @type {string} propertyName The property that changed.
  */
-org.apache.flex.events.ValueChangeEvent.prototype.propertyName = '';
+org_apache_flex_events_ValueChangeEvent.prototype.propertyName = '';
 
 
 /**
  * @expose
  * @type {Object} source The object that changed.
  */
-org.apache.flex.events.ValueChangeEvent.prototype.source = null;
+org_apache_flex_events_ValueChangeEvent.prototype.source = null;
 
 
 /**
@@ -100,11 +100,11 @@ org.apache.flex.events.ValueChangeEvent.prototype.source = null;
  * @param {*} newValue The new value.
  * @return {Object} An event object.
  */
-org.apache.flex.events.ValueChangeEvent.createUpdateEvent =
+org_apache_flex_events_ValueChangeEvent.createUpdateEvent =
     function(source, name, oldValue, newValue)
     {
-  var event = new org.apache.flex.events.ValueChangeEvent(
-      org.apache.flex.events.ValueChangeEvent.VALUE_CHANGE,
+  var event = new org_apache_flex_events_ValueChangeEvent(
+      org_apache_flex_events_ValueChangeEvent.VALUE_CHANGE,
       false, false, oldValue, newValue);
   event.propertyName = name;
   event.source = source;
@@ -116,4 +116,4 @@ org.apache.flex.events.ValueChangeEvent.createUpdateEvent =
  * @expose
  * @type {string} VALUE_CHANGE The type of the event.
  */
-org.apache.flex.events.ValueChangeEvent.VALUE_CHANGE = 'valueChange';
+org_apache_flex_events_ValueChangeEvent.VALUE_CHANGE = 'valueChange';

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/events/ValueEvent.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/events/ValueEvent.js b/frameworks/js/FlexJS/src/org/apache/flex/events/ValueEvent.js
index 4db6f55..acf5328 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/events/ValueEvent.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/events/ValueEvent.js
@@ -12,7 +12,7 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.events.ValueEvent');
+goog.provide('org_apache_flex_events_ValueEvent');
 
 goog.require('goog.events.Event');
 
@@ -24,13 +24,13 @@ goog.require('goog.events.Event');
  * @param {string} type The event type.
  * @param {*} v The value.
  */
-org.apache.flex.events.ValueEvent = function(type, v) {
-  org.apache.flex.events.ValueEvent.base(this, 'constructor', type);
+org_apache_flex_events_ValueEvent = function(type, v) {
+  org_apache_flex_events_ValueEvent.base(this, 'constructor', type);
 
   this.type = type;
   this.value = v;
 };
-goog.inherits(org.apache.flex.events.ValueEvent,
+goog.inherits(org_apache_flex_events_ValueEvent,
     goog.events.Event);
 
 
@@ -39,16 +39,16 @@ goog.inherits(org.apache.flex.events.ValueEvent,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.events.ValueEvent.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_events_ValueEvent.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ValueEvent',
-                qName: 'org.apache.flex.events.ValueEvent' }] };
+                qName: 'org_apache_flex_events_ValueEvent' }] };
 
 
 /**
  * @expose
  * @param {string} type The event type.
  */
-org.apache.flex.events.ValueEvent.prototype.init = function(type) {
+org_apache_flex_events_ValueEvent.prototype.init = function(type) {
   this.type = type;
 };
 
@@ -57,13 +57,13 @@ org.apache.flex.events.ValueEvent.prototype.init = function(type) {
  * @expose
  * @type {string} type The event type.
  */
-org.apache.flex.events.ValueEvent.prototype.type = '';
+org_apache_flex_events_ValueEvent.prototype.type = '';
 
 
 /**
  * @expose
  * @type {*} value The old value.
  */
-org.apache.flex.events.ValueEvent.prototype.value = null;
+org_apache_flex_events_ValueEvent.prototype.value = null;
 
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/events/utils/MouseUtils.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/events/utils/MouseUtils.js b/frameworks/js/FlexJS/src/org/apache/flex/events/utils/MouseUtils.js
index 4d8048d..f628125 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/events/utils/MouseUtils.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/events/utils/MouseUtils.js
@@ -13,14 +13,14 @@
  */
 
 
-goog.provide('org.apache.flex.events.utils.MouseUtils');
+goog.provide('org_apache_flex_events_utils_MouseUtils');
 
 
 /**
  * @param {Object} event The event.
  * @return {Object} class instance associated with the event.target.
  */
-org.apache.flex.events.utils.MouseUtils.eventTarget = function(event) {
+org_apache_flex_events_utils_MouseUtils.eventTarget = function(event) {
   var target = event.target;
   return target.flexjs_wrapper;
 };
@@ -30,7 +30,7 @@ org.apache.flex.events.utils.MouseUtils.eventTarget = function(event) {
  * @param {Object} event The event.
  * @return {number} The x position of the mouse with respect to its parent.
  */
-org.apache.flex.events.utils.MouseUtils.localX = function(event) {
+org_apache_flex_events_utils_MouseUtils.localX = function(event) {
   return event.offsetX;
 };
 
@@ -39,7 +39,7 @@ org.apache.flex.events.utils.MouseUtils.localX = function(event) {
  * @param {Object} event The event.
  * @return {number} The y position of the mouse with respect to its parent.
  */
-org.apache.flex.events.utils.MouseUtils.localY = function(event) {
+org_apache_flex_events_utils_MouseUtils.localY = function(event) {
   return event.offsetY;
 };
 
@@ -48,7 +48,7 @@ org.apache.flex.events.utils.MouseUtils.localY = function(event) {
  * @param {Object} event The event.
  * @return {number} The x position of the mouse with respect to the screen.
  */
-org.apache.flex.events.utils.MouseUtils.globalX = function(event) {
+org_apache_flex_events_utils_MouseUtils.globalX = function(event) {
   return event.clientX;
 };
 
@@ -57,6 +57,6 @@ org.apache.flex.events.utils.MouseUtils.globalX = function(event) {
  * @param {Object} event The event.
  * @return {number} The y position of the mouse with respect to the screen.
  */
-org.apache.flex.events.utils.MouseUtils.globalY = function(event) {
+org_apache_flex_events_utils_MouseUtils.globalY = function(event) {
   return event.clientY;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/geom/Point.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/geom/Point.js b/frameworks/js/FlexJS/src/org/apache/flex/geom/Point.js
index aba6db8..bb0a030 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/geom/Point.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/geom/Point.js
@@ -12,7 +12,7 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.geom.Point');
+goog.provide('org_apache_flex_geom_Point');
 
 
 
@@ -21,7 +21,7 @@ goog.provide('org.apache.flex.geom.Point');
  * @param {number} x
  * @param {number} y
  */
-org.apache.flex.geom.Point = function(x, y) {
+org_apache_flex_geom_Point = function(x, y) {
 
   this.x = x;
 
@@ -35,9 +35,9 @@ org.apache.flex.geom.Point = function(x, y) {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.geom.Point.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_geom_Point.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'Point',
-                qName: 'org.apache.flex.geom.Point'}] };
+                qName: 'org_apache_flex_geom_Point'}] };
 
 
 /**
@@ -45,7 +45,7 @@ org.apache.flex.geom.Point.prototype.FLEXJS_CLASS_INFO =
  * The x coordinate.
  * @type {number} value The x coordinate.
  */
-org.apache.flex.geom.Point.prototype.x = 0;
+org_apache_flex_geom_Point.prototype.x = 0;
 
 
 /**
@@ -53,4 +53,4 @@ org.apache.flex.geom.Point.prototype.x = 0;
  * The y coordinate.
  * @type {number} value The y coordinate.
  */
-org.apache.flex.geom.Point.prototype.y = 0;
+org_apache_flex_geom_Point.prototype.y = 0;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/geom/Rectangle.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/geom/Rectangle.js b/frameworks/js/FlexJS/src/org/apache/flex/geom/Rectangle.js
index ccf92f7..5e7ebf6 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/geom/Rectangle.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/geom/Rectangle.js
@@ -12,7 +12,7 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.geom.Rectangle');
+goog.provide('org_apache_flex_geom_Rectangle');
 
 
 
@@ -23,7 +23,7 @@ goog.provide('org.apache.flex.geom.Rectangle');
  * @param {number} width
  * @param {number} height
  */
-org.apache.flex.geom.Rectangle = function(left, top, width, height) {
+org_apache_flex_geom_Rectangle = function(left, top, width, height) {
 
   this.left = left;
 
@@ -41,9 +41,9 @@ org.apache.flex.geom.Rectangle = function(left, top, width, height) {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.geom.Rectangle.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_geom_Rectangle.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'Rectangle',
-                qName: 'org.apache.flex.geom.Rectangle'}] };
+                qName: 'org_apache_flex_geom_Rectangle'}] };
 
 
 /**
@@ -51,7 +51,7 @@ org.apache.flex.geom.Rectangle.prototype.FLEXJS_CLASS_INFO =
  * The left coordinate.
  * @type {number} value The left coordinate.
  */
-org.apache.flex.geom.Rectangle.prototype.left = 0;
+org_apache_flex_geom_Rectangle.prototype.left = 0;
 
 
 /**
@@ -59,7 +59,7 @@ org.apache.flex.geom.Rectangle.prototype.left = 0;
  * The top coordinate.
  * @type {number} value The top coordinate.
  */
-org.apache.flex.geom.Rectangle.prototype.top = 0;
+org_apache_flex_geom_Rectangle.prototype.top = 0;
 
 
 /**
@@ -67,7 +67,7 @@ org.apache.flex.geom.Rectangle.prototype.top = 0;
  * The width coordinate.
  * @type {number} value The width coordinate.
  */
-org.apache.flex.geom.Rectangle.prototype.width = 0;
+org_apache_flex_geom_Rectangle.prototype.width = 0;
 
 
 /**
@@ -75,4 +75,4 @@ org.apache.flex.geom.Rectangle.prototype.width = 0;
  * The height coordinate.
  * @type {number} value The height coordinate.
  */
-org.apache.flex.geom.Rectangle.prototype.height = 9;
+org_apache_flex_geom_Rectangle.prototype.height = 9;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/Alert.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/Alert.js b/frameworks/js/FlexJS/src/org/apache/flex/html/Alert.js
index 74f9d0c..80d7ec0 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/Alert.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/Alert.js
@@ -12,25 +12,25 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.Alert');
+goog.provide('org_apache_flex_html_Alert');
 
-goog.require('org.apache.flex.core.UIBase');
-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.TitleBar');
+goog.require('org_apache_flex_core_UIBase');
+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_TitleBar');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.html.Container}
+ * @extends {org_apache_flex_html_Container}
  */
-org.apache.flex.html.Alert = function() {
-  org.apache.flex.html.Alert.base(this, 'constructor');
+org_apache_flex_html_Alert = function() {
+  org_apache_flex_html_Alert.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.html.Alert,
-    org.apache.flex.html.Container);
+goog.inherits(org_apache_flex_html_Alert,
+    org_apache_flex_html_Container);
 
 
 /**
@@ -38,55 +38,55 @@ goog.inherits(org.apache.flex.html.Alert,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.Alert.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_Alert.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'Alert',
-                qName: 'org.apache.flex.html.Alert'}] };
+                qName: 'org_apache_flex_html_Alert'}] };
 
 
 /**
  * @type {number} The value for the Yes button option.
  */
-org.apache.flex.html.Alert.YES = 0x000001;
+org_apache_flex_html_Alert.YES = 0x000001;
 
 
 /**
  * @type {number} The value for the No button option.
  */
-org.apache.flex.html.Alert.NO = 0x000002;
+org_apache_flex_html_Alert.NO = 0x000002;
 
 
 /**
  * @type {number} The value for the OK button option.
  */
-org.apache.flex.html.Alert.OK = 0x000004;
+org_apache_flex_html_Alert.OK = 0x000004;
 
 
 /**
  * @type {number} The value for the Cancel button option.
  */
-org.apache.flex.html.Alert.CANCEL = 0x000008;
+org_apache_flex_html_Alert.CANCEL = 0x000008;
 
 
 /**
  * @override
  */
-org.apache.flex.html.Alert.prototype.createElement =
+org_apache_flex_html_Alert.prototype.createElement =
     function() {
-  org.apache.flex.html.Alert.base(this, 'createElement');
+  org_apache_flex_html_Alert.base(this, 'createElement');
 
   this.element.className = 'Alert';
 
   // add in a title bar
-  this.titleBar = new org.apache.flex.html.TitleBar();
+  this.titleBar = new org_apache_flex_html_TitleBar();
   this.addElement(this.titleBar);
   this.titleBar.element.id = 'titleBar';
 
-  this.message = new org.apache.flex.html.Label();
+  this.message = new org_apache_flex_html_Label();
   this.addElement(this.message);
   this.message.element.id = 'message';
 
   // add a place for the buttons
-  this.buttonArea = new org.apache.flex.html.Container();
+  this.buttonArea = new org_apache_flex_html_Container();
   this.addElement(this.buttonArea);
   this.buttonArea.element.id = 'buttonArea';
 
@@ -100,10 +100,10 @@ org.apache.flex.html.Alert.prototype.createElement =
  * @param {string} title The message to be displayed in the title bar.
  * @param {number} flags The options for the buttons.
  */
-org.apache.flex.html.Alert.show =
+org_apache_flex_html_Alert.show =
     function(message, host, title, flags) {
 
-  var a = new org.apache.flex.html.Alert();
+  var a = new org_apache_flex_html_Alert();
   host.addElement(a);
   a.set_title(title);
   a.set_text(message);
@@ -119,7 +119,7 @@ org.apache.flex.html.Alert.show =
 /**
  * @return {string} The message to be displayed in the title bar.
  */
-org.apache.flex.html.Alert.prototype.get_title = function()
+org_apache_flex_html_Alert.prototype.get_title = function()
     {
   return this.titleBar.get_title();
 };
@@ -128,7 +128,7 @@ org.apache.flex.html.Alert.prototype.get_title = function()
 /**
  * @param {string} value The message to be displayed in the title bar.
  */
-org.apache.flex.html.Alert.prototype.set_title =
+org_apache_flex_html_Alert.prototype.set_title =
     function(value)
     {
   this.titleBar.set_title(value);
@@ -138,7 +138,7 @@ org.apache.flex.html.Alert.prototype.set_title =
 /**
  * @return {string} The message to be displayed.
  */
-org.apache.flex.html.Alert.prototype.get_text = function()
+org_apache_flex_html_Alert.prototype.get_text = function()
     {
   return this.message.get_text();
 };
@@ -147,7 +147,7 @@ org.apache.flex.html.Alert.prototype.get_text = function()
 /**
  * @param {string} value The message to be displayed.
  */
-org.apache.flex.html.Alert.prototype.set_text =
+org_apache_flex_html_Alert.prototype.set_text =
     function(value)
     {
   this.message.set_text(value);
@@ -157,7 +157,7 @@ org.apache.flex.html.Alert.prototype.set_text =
 /**
  * @return {number} The button options.
  */
-org.apache.flex.html.Alert.prototype.get_flags = function()
+org_apache_flex_html_Alert.prototype.get_flags = function()
     {
   return this.flags;
 };
@@ -166,35 +166,35 @@ org.apache.flex.html.Alert.prototype.get_flags = function()
 /**
  * @param {number} value The button options.
  */
-org.apache.flex.html.Alert.prototype.set_flags =
+org_apache_flex_html_Alert.prototype.set_flags =
     function(value)
     {
   this.flags = value;
 
   // add buttons based on flags
-  if (this.flags & org.apache.flex.html.Alert.OK) {
-    var ok = new org.apache.flex.html.TextButton();
+  if (this.flags & org_apache_flex_html_Alert.OK) {
+    var ok = new org_apache_flex_html_TextButton();
     this.buttonArea.addElement(ok);
     ok.set_text('OK');
     goog.events.listen(/** @type {EventTarget} */ (ok.element), 'click',
         goog.bind(this.dismissAlert, this));
   }
-  if (this.flags & org.apache.flex.html.Alert.CANCEL) {
-    var cancel = new org.apache.flex.html.TextButton();
+  if (this.flags & org_apache_flex_html_Alert.CANCEL) {
+    var cancel = new org_apache_flex_html_TextButton();
     this.buttonArea.addElement(cancel);
     cancel.set_text('Cancel');
     goog.events.listen(/** @type {EventTarget} */ (cancel.element), 'click',
         goog.bind(this.dismissAlert, this));
   }
-  if (this.flags & org.apache.flex.html.Alert.YES) {
-    var yes = new org.apache.flex.html.TextButton();
+  if (this.flags & org_apache_flex_html_Alert.YES) {
+    var yes = new org_apache_flex_html_TextButton();
     this.buttonArea.addElement(yes);
     yes.set_text('YES');
     goog.events.listen(/** @type {EventTarget} */ (yes.element), 'click',
         goog.bind(this.dismissAlert, this));
   }
-  if (this.flags & org.apache.flex.html.Alert.NO) {
-    var nob = new org.apache.flex.html.TextButton();
+  if (this.flags & org_apache_flex_html_Alert.NO) {
+    var nob = new org_apache_flex_html_TextButton();
     this.buttonArea.addElement(nob);
     nob.set_text('NO');
     goog.events.listen(/** @type {EventTarget} */ (nob.element), 'click',
@@ -206,7 +206,7 @@ org.apache.flex.html.Alert.prototype.set_flags =
 /**
  * @param {Object} event The event object.
  */
-org.apache.flex.html.Alert.prototype.dismissAlert =
+org_apache_flex_html_Alert.prototype.dismissAlert =
     function(event)
     {
   this.element.parentElement.removeChild(this.element);

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/Button.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/Button.js b/frameworks/js/FlexJS/src/org/apache/flex/html/Button.js
index 671c7d2..36db23a 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/Button.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/Button.js
@@ -12,21 +12,21 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.Button');
+goog.provide('org_apache_flex_html_Button');
 
-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.Button = function() {
-  org.apache.flex.html.Button.base(this, 'constructor');
+org_apache_flex_html_Button = function() {
+  org_apache_flex_html_Button.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.html.Button,
-    org.apache.flex.core.UIBase);
+goog.inherits(org_apache_flex_html_Button,
+    org_apache_flex_core_UIBase);
 
 
 /**
@@ -34,15 +34,15 @@ goog.inherits(org.apache.flex.html.Button,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.Button.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_Button.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'Button',
-                qName: 'org.apache.flex.html.Button'}] };
+                qName: 'org_apache_flex_html_Button'}] };
 
 
 /**
  * @override
  */
-org.apache.flex.html.Button.prototype.createElement =
+org_apache_flex_html_Button.prototype.createElement =
     function() {
   this.element = document.createElement('button');
   this.element.setAttribute('type', 'button');
@@ -50,8 +50,8 @@ org.apache.flex.html.Button.prototype.createElement =
   this.positioner = this.element;
   this.element.flexjs_wrapper = this;
 
-  if (org.apache.flex.core.ValuesManager.valuesImpl.getValue) {
-    var impl = org.apache.flex.core.ValuesManager.valuesImpl.
+  if (org_apache_flex_core_ValuesManager.valuesImpl.getValue) {
+    var impl = org_apache_flex_core_ValuesManager.valuesImpl.
         getValue(this, 'iStatesImpl');
   }
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/ButtonBar.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/ButtonBar.js b/frameworks/js/FlexJS/src/org/apache/flex/html/ButtonBar.js
index c7a6aa5..88c8808 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/ButtonBar.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/ButtonBar.js
@@ -12,47 +12,47 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.ButtonBar');
+goog.provide('org_apache_flex_html_ButtonBar');
 
-goog.require('org.apache.flex.core.ListBase');
-goog.require('org.apache.flex.html.List');
-goog.require('org.apache.flex.html.beads.DataItemRendererFactoryForArrayData');
-goog.require('org.apache.flex.html.beads.layouts.NonVirtualHorizontalLayout');
-goog.require('org.apache.flex.html.supportClasses.ButtonBarButtonItemRenderer');
+goog.require('org_apache_flex_core_ListBase');
+goog.require('org_apache_flex_html_List');
+goog.require('org_apache_flex_html_beads_DataItemRendererFactoryForArrayData');
+goog.require('org_apache_flex_html_beads_layouts_NonVirtualHorizontalLayout');
+goog.require('org_apache_flex_html_supportClasses_ButtonBarButtonItemRenderer');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.html.List}
+ * @extends {org_apache_flex_html_List}
  */
-org.apache.flex.html.ButtonBar = function() {
+org_apache_flex_html_ButtonBar = function() {
 
   //  this.model = new
-  //        org.apache.flex.html.beads.models.ArraySelectionModel();
+  //        org_apache_flex_html_beads_models_ArraySelectionModel();
   //  this.addBead(this.model);
 
-  org.apache.flex.html.ButtonBar.base(this, 'constructor');
+  org_apache_flex_html_ButtonBar.base(this, 'constructor');
 
   //  this.addBead(new
-  //        org.apache.flex.html.beads.ListView());
+  //        org_apache_flex_html_beads_ListView());
 
   //  this.addBead(new
-  //org.apache.flex.html.beads.layouts.NonVirtualHorizontalLayout());
+  //org_apache_flex_html_beads_layouts_NonVirtualHorizontalLayout());
 
   //  this.itemRendererFactory = new
-  //        org.apache.flex.html.beads.
+  //        org_apache_flex_html_beads_
   //        DataItemRendererFactoryForArrayData();
-  //  this.itemRendererFactory.set_itemRendererClass('org.apache.flex.html.' +
+  //  this.itemRendererFactory.set_itemRendererClass('org_apache_flex_html_' +
   //        'supportClasses.ButtonBarButtonItemRenderer');
   //  this.addBead(this.itemRendererFactory);
 
   //  this.addBead(new
-  //        org.apache.flex.html.beads.controllers.
+  //        org_apache_flex_html_beads_controllers_
   //        ListSingleSelectionMouseController());
 };
-goog.inherits(org.apache.flex.html.ButtonBar,
-    org.apache.flex.html.List);
+goog.inherits(org_apache_flex_html_ButtonBar,
+    org_apache_flex_html_List);
 
 
 /**
@@ -60,17 +60,17 @@ goog.inherits(org.apache.flex.html.ButtonBar,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.ButtonBar.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_ButtonBar.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ButtonBar',
-                qName: 'org.apache.flex.html.ButtonBar'}] };
+                qName: 'org_apache_flex_html_ButtonBar'}] };
 
 
 /**
  * @override
  */
-org.apache.flex.html.ButtonBar.prototype.createElement =
+org_apache_flex_html_ButtonBar.prototype.createElement =
     function() {
-  //org.apache.flex.html.ButtonBar.base(this, 'createElement');
+  //org_apache_flex_html_ButtonBar.base(this, 'createElement');
 
   this.element = document.createElement('div');
   this.element.style.overflow = 'auto';

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/CheckBox.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/CheckBox.js b/frameworks/js/FlexJS/src/org/apache/flex/html/CheckBox.js
index 3d7f3bb..8c542bd 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/CheckBox.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/CheckBox.js
@@ -12,21 +12,21 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.CheckBox');
+goog.provide('org_apache_flex_html_CheckBox');
 
-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.CheckBox = function() {
-  org.apache.flex.html.CheckBox.base(this, 'constructor');
+org_apache_flex_html_CheckBox = function() {
+  org_apache_flex_html_CheckBox.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.html.CheckBox,
-    org.apache.flex.core.UIBase);
+goog.inherits(org_apache_flex_html_CheckBox,
+    org_apache_flex_core_UIBase);
 
 
 /**
@@ -34,15 +34,15 @@ goog.inherits(org.apache.flex.html.CheckBox,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.CheckBox.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_CheckBox.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'CheckBox',
-                qName: 'org.apache.flex.html.CheckBox'}] };
+                qName: 'org_apache_flex_html_CheckBox'}] };
 
 
 /**
  * @override
  */
-org.apache.flex.html.CheckBox.prototype.createElement =
+org_apache_flex_html_CheckBox.prototype.createElement =
     function() {
   var cb;
 
@@ -65,7 +65,7 @@ org.apache.flex.html.CheckBox.prototype.createElement =
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.html.CheckBox.prototype.get_text = function() {
+org_apache_flex_html_CheckBox.prototype.get_text = function() {
   return this.element.childNodes.item(1).nodeValue;
 };
 
@@ -74,7 +74,7 @@ org.apache.flex.html.CheckBox.prototype.get_text = function() {
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.html.CheckBox.prototype.set_text =
+org_apache_flex_html_CheckBox.prototype.set_text =
     function(value) {
   this.element.childNodes.item(1).nodeValue = value;
 };
@@ -84,7 +84,7 @@ org.apache.flex.html.CheckBox.prototype.set_text =
  * @expose
  * @return {boolean} The selected getter.
  */
-org.apache.flex.html.CheckBox.prototype.get_selected =
+org_apache_flex_html_CheckBox.prototype.get_selected =
     function() {
   return this.element.childNodes.item(0).checked;
 };
@@ -94,7 +94,7 @@ org.apache.flex.html.CheckBox.prototype.get_selected =
  * @expose
  * @param {boolean} value The selected setter.
  */
-org.apache.flex.html.CheckBox.prototype.set_selected =
+org_apache_flex_html_CheckBox.prototype.set_selected =
     function(value) {
   this.element.childNodes.item(0).checked = value;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/CloseButton.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/CloseButton.js b/frameworks/js/FlexJS/src/org/apache/flex/html/CloseButton.js
index 9e3207e..cad273d 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/CloseButton.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/CloseButton.js
@@ -12,21 +12,21 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.CloseButton');
+goog.provide('org_apache_flex_html_CloseButton');
 
-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.CloseButton = function() {
-  org.apache.flex.html.CloseButton.base(this, 'constructor');
+org_apache_flex_html_CloseButton = function() {
+  org_apache_flex_html_CloseButton.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.html.CloseButton,
-    org.apache.flex.html.Button);
+goog.inherits(org_apache_flex_html_CloseButton,
+    org_apache_flex_html_Button);
 
 
 /**
@@ -34,17 +34,17 @@ goog.inherits(org.apache.flex.html.CloseButton,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.CloseButton.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_CloseButton.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'CloseButton',
-                qName: 'org.apache.flex.html.CloseButton'}] };
+                qName: 'org_apache_flex_html_CloseButton'}] };
 
 
 /**
  * @override
  */
-org.apache.flex.html.CloseButton.prototype.createElement =
+org_apache_flex_html_CloseButton.prototype.createElement =
     function() {
-  org.apache.flex.html.CloseButton.base(this, 'createElement');
+  org_apache_flex_html_CloseButton.base(this, 'createElement');
   this.element.innerHTML = 'x';
 
   this.element.style.padding = 0;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/ComboBox.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/ComboBox.js b/frameworks/js/FlexJS/src/org/apache/flex/html/ComboBox.js
index 9b7fb4d..72dbd53 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/ComboBox.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/ComboBox.js
@@ -12,21 +12,21 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.ComboBox');
+goog.provide('org_apache_flex_html_ComboBox');
 
-goog.require('org.apache.flex.core.ListBase');
+goog.require('org_apache_flex_core_ListBase');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.ListBase}
+ * @extends {org_apache_flex_core_ListBase}
  */
-org.apache.flex.html.ComboBox = function() {
-  org.apache.flex.html.ComboBox.base(this, 'constructor');
+org_apache_flex_html_ComboBox = function() {
+  org_apache_flex_html_ComboBox.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.html.ComboBox,
-    org.apache.flex.core.ListBase);
+goog.inherits(org_apache_flex_html_ComboBox,
+    org_apache_flex_core_ListBase);
 
 
 /**
@@ -34,15 +34,15 @@ goog.inherits(org.apache.flex.html.ComboBox,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.ComboBox.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_ComboBox.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ComboBox',
-                qName: 'org.apache.flex.html.ComboBox'}] };
+                qName: 'org_apache_flex_html_ComboBox'}] };
 
 
 /**
  * @override
  */
-org.apache.flex.html.ComboBox.prototype.createElement =
+org_apache_flex_html_ComboBox.prototype.createElement =
     function() {
   var button, input;
 
@@ -84,7 +84,7 @@ org.apache.flex.html.ComboBox.prototype.createElement =
  * @expose
  * @param {Object} event The event.
  */
-org.apache.flex.html.ComboBox.prototype.selectChanged =
+org_apache_flex_html_ComboBox.prototype.selectChanged =
     function(event) {
   var select;
 
@@ -103,7 +103,7 @@ org.apache.flex.html.ComboBox.prototype.selectChanged =
  * @expose
  * @param {Object=} opt_event The event.
  */
-org.apache.flex.html.ComboBox.prototype.dismissPopup =
+org_apache_flex_html_ComboBox.prototype.dismissPopup =
     function(opt_event) {
   // remove the popup if it already exists
   if (this.popup) {
@@ -117,7 +117,7 @@ org.apache.flex.html.ComboBox.prototype.dismissPopup =
  * @expose
  * @param {Object} event The event.
  */
-org.apache.flex.html.ComboBox.prototype.buttonClicked =
+org_apache_flex_html_ComboBox.prototype.buttonClicked =
     function(event) {
   /**
    * @type {Array.<string>}
@@ -185,7 +185,7 @@ org.apache.flex.html.ComboBox.prototype.buttonClicked =
  * @expose
  * @param {Array.<Object>} value The collection of data.
  */
-org.apache.flex.html.ComboBox.prototype.set_dataProvider =
+org_apache_flex_html_ComboBox.prototype.set_dataProvider =
     function(value) {
   this.dataProvider = value;
 };
@@ -195,7 +195,7 @@ org.apache.flex.html.ComboBox.prototype.set_dataProvider =
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.html.ComboBox.prototype.get_text = function() {
+org_apache_flex_html_ComboBox.prototype.get_text = function() {
   return this.element.childNodes.item(0).value;
 };
 
@@ -204,7 +204,7 @@ org.apache.flex.html.ComboBox.prototype.get_text = function() {
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.html.ComboBox.prototype.set_text =
+org_apache_flex_html_ComboBox.prototype.set_text =
     function(value) {
   this.element.childNodes.item(0).value = value;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/Container.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/Container.js b/frameworks/js/FlexJS/src/org/apache/flex/html/Container.js
index 44bc388..534d409 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/Container.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/Container.js
@@ -12,23 +12,23 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.Container');
+goog.provide('org_apache_flex_html_Container');
 
-goog.require('org.apache.flex.core.ContainerBase');
-goog.require('org.apache.flex.core.IContainer');
+goog.require('org_apache_flex_core_ContainerBase');
+goog.require('org_apache_flex_core_IContainer');
 
 
 
 /**
  * @constructor
- * @implements {org.apache.flex.core.IContainer}
- * @extends {org.apache.flex.core.ContainerBase}
+ * @implements {org_apache_flex_core_IContainer}
+ * @extends {org_apache_flex_core_ContainerBase}
  */
-org.apache.flex.html.Container = function() {
-  org.apache.flex.html.Container.base(this, 'constructor');
+org_apache_flex_html_Container = function() {
+  org_apache_flex_html_Container.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.html.Container,
-    org.apache.flex.core.ContainerBase);
+goog.inherits(org_apache_flex_html_Container,
+    org_apache_flex_core_ContainerBase);
 
 
 /**
@@ -36,16 +36,16 @@ goog.inherits(org.apache.flex.html.Container,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.Container.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_Container.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'Container',
-                qName: 'org.apache.flex.html.Container' }],
-      interfaces: [org.apache.flex.core.IContainer] };
+                qName: 'org_apache_flex_html_Container' }],
+      interfaces: [org_apache_flex_core_IContainer] };
 
 
 /**
  * @override
  */
-org.apache.flex.html.Container.prototype.createElement =
+org_apache_flex_html_Container.prototype.createElement =
     function() {
   var cb;
 
@@ -66,9 +66,9 @@ org.apache.flex.html.Container.prototype.createElement =
 /**
  * @override
  */
-org.apache.flex.html.Container.prototype.addElement =
+org_apache_flex_html_Container.prototype.addElement =
     function(child) {
-  org.apache.flex.html.Container.base(this, 'addElement', child);
+  org_apache_flex_html_Container.base(this, 'addElement', child);
   this.dispatchEvent('elementAdded');
 };
 
@@ -76,7 +76,7 @@ org.apache.flex.html.Container.prototype.addElement =
 /**
  * @expose
  */
-org.apache.flex.html.Container.prototype.childrenAdded =
+org_apache_flex_html_Container.prototype.childrenAdded =
     function() {
   this.dispatchEvent('childrenAdded');
 };
@@ -86,7 +86,7 @@ org.apache.flex.html.Container.prototype.childrenAdded =
  * @expose
  * @return {Array} the HTML DOM element children.
  */
-org.apache.flex.html.Container.prototype.internalChildren =
+org_apache_flex_html_Container.prototype.internalChildren =
     function() {
   return this.element.children;
 };
@@ -95,7 +95,7 @@ org.apache.flex.html.Container.prototype.internalChildren =
 /**
  * @return {Array} All of the children of the container.
  */
-org.apache.flex.html.Container.prototype.getChildren = function() {
+org_apache_flex_html_Container.prototype.getChildren = function() {
   var arr = this.element.children;
   var comparr = [];
   var n = arr.length;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/ControlBar.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/ControlBar.js b/frameworks/js/FlexJS/src/org/apache/flex/html/ControlBar.js
index 4518d08..2ccd9ad 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/ControlBar.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/ControlBar.js
@@ -12,22 +12,22 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.ControlBar');
+goog.provide('org_apache_flex_html_ControlBar');
 
-goog.require('org.apache.flex.html.Container');
+goog.require('org_apache_flex_html_Container');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.html.Container}
+ * @extends {org_apache_flex_html_Container}
  */
-org.apache.flex.html.ControlBar = function() {
-  org.apache.flex.html.ControlBar.base(this, 'constructor');
+org_apache_flex_html_ControlBar = function() {
+  org_apache_flex_html_ControlBar.base(this, 'constructor');
 
 };
-goog.inherits(org.apache.flex.html.ControlBar,
-    org.apache.flex.html.Container);
+goog.inherits(org_apache_flex_html_ControlBar,
+    org_apache_flex_html_Container);
 
 
 /**
@@ -35,15 +35,15 @@ goog.inherits(org.apache.flex.html.ControlBar,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.ControlBar.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_ControlBar.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ControlBar',
-                qName: 'org.apache.flex.html.ControlBar'}] };
+                qName: 'org_apache_flex_html_ControlBar'}] };
 
 
 /**
  * @override
  */
-org.apache.flex.html.ControlBar.prototype.createElement =
+org_apache_flex_html_ControlBar.prototype.createElement =
     function() {
 
   this.element = document.createElement('div');

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/DropDownList.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/DropDownList.js b/frameworks/js/FlexJS/src/org/apache/flex/html/DropDownList.js
index 6ecf321..cdf487a 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/DropDownList.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/DropDownList.js
@@ -12,23 +12,22 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.DropDownList');
+goog.provide('org_apache_flex_html_DropDownList');
 
-goog.require('org.apache.flex.core.ListBase');
+goog.require('org_apache_flex_core_ListBase');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.ListBase}
+ * @extends {org_apache_flex_core_ListBase}
  */
-org.apache.flex.html.DropDownList = function() {
-  org.apache.flex.html.DropDownList.base(this, 'constructor');
-  this.model = new org.apache.flex.html.beads.
-      models.ArraySelectionModel();
+org_apache_flex_html_DropDownList = function() {
+  org_apache_flex_html_DropDownList.base(this, 'constructor');
+  this.model = new org_apache_flex_html_beads_models_ArraySelectionModel();
 };
-goog.inherits(org.apache.flex.html.DropDownList,
-    org.apache.flex.core.ListBase);
+goog.inherits(org_apache_flex_html_DropDownList,
+    org_apache_flex_core_ListBase);
 
 
 /**
@@ -36,15 +35,15 @@ goog.inherits(org.apache.flex.html.DropDownList,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.DropDownList.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_DropDownList.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'DropDownList',
-                qName: 'org.apache.flex.html.DropDownList'}] };
+                qName: 'org_apache_flex_html_DropDownList'}] };
 
 
 /**
  * @override
  */
-org.apache.flex.html.DropDownList.prototype.
+org_apache_flex_html_DropDownList.prototype.
     createElement = function() {
   this.element = document.createElement('select');
   this.element.size = 1;
@@ -62,7 +61,7 @@ org.apache.flex.html.DropDownList.prototype.
  * @expose
  * @param {Object} value The new dataProvider.
  */
-org.apache.flex.html.DropDownList.prototype.
+org_apache_flex_html_DropDownList.prototype.
     set_dataProvider = function(value) {
   var dp, i, n, opt;
 
@@ -87,7 +86,7 @@ org.apache.flex.html.DropDownList.prototype.
 /**
  * @protected
  */
-org.apache.flex.html.DropDownList.prototype.changeHandler =
+org_apache_flex_html_DropDownList.prototype.changeHandler =
     function() {
   this.model.set_selectedIndex(this.element.selectedIndex);
   this.dispatchEvent('change');
@@ -98,7 +97,7 @@ org.apache.flex.html.DropDownList.prototype.changeHandler =
  * @expose
  * @param {number} value The new selected index.
  */
-org.apache.flex.html.DropDownList.prototype.
+org_apache_flex_html_DropDownList.prototype.
     set_selectedIndex = function(value) {
   this.model.set_selectedIndex(value);
   this.element.selectedIndex = value;
@@ -109,7 +108,7 @@ org.apache.flex.html.DropDownList.prototype.
  * @expose
  * @param {Object} value The new selected item.
  */
-org.apache.flex.html.DropDownList.prototype.
+org_apache_flex_html_DropDownList.prototype.
     set_selectedItem = function(value) {
   this.model.set_selectedItem(value);
   this.element.selectedIndex = this.get_selectedIndex();

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/HContainer.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/HContainer.js b/frameworks/js/FlexJS/src/org/apache/flex/html/HContainer.js
index 13b96e3..2e850f2 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/HContainer.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/HContainer.js
@@ -12,23 +12,23 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.HContainer');
+goog.provide('org_apache_flex_html_HContainer');
 
-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.HContainer = function() {
-  org.apache.flex.html.HContainer.base(this, 'constructor');
+org_apache_flex_html_HContainer = function() {
+  org_apache_flex_html_HContainer.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.html.HContainer,
-    org.apache.flex.html.Container);
+goog.inherits(org_apache_flex_html_HContainer,
+    org_apache_flex_html_Container);
 
 
 /**
@@ -36,7 +36,7 @@ goog.inherits(org.apache.flex.html.HContainer,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.HContainer.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_HContainer.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'HContainer',
-                qName: 'org.apache.flex.html.HContainer' }],
-      interfaces: [org.apache.flex.core.IContainer] };
+                qName: 'org_apache_flex_html_HContainer' }],
+      interfaces: [org_apache_flex_core_IContainer] };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/HRule.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/HRule.js b/frameworks/js/FlexJS/src/org/apache/flex/html/HRule.js
index 4d87be1..d778f61 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/HRule.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/HRule.js
@@ -12,25 +12,25 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.HRule');
+goog.provide('org_apache_flex_html_HRule');
 
-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.HRule = function() {
-  org.apache.flex.html.HRule.base(this, 'constructor');
+org_apache_flex_html_HRule = function() {
+  org_apache_flex_html_HRule.base(this, 'constructor');
 
   this.element = document.createElement('hr');
   this.positioner = this.element;
   this.element.flexjs_wrapper = this;
 };
-goog.inherits(org.apache.flex.html.HRule,
-    org.apache.flex.core.UIBase);
+goog.inherits(org_apache_flex_html_HRule,
+    org_apache_flex_core_UIBase);
 
 
 /**
@@ -38,7 +38,7 @@ goog.inherits(org.apache.flex.html.HRule,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.HRule.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_HRule.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'HRule',
-                qName: 'org.apache.flex.html.HRule' }] };
+                qName: 'org_apache_flex_html_HRule' }] };
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/Image.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/Image.js b/frameworks/js/FlexJS/src/org/apache/flex/html/Image.js
index 7cf3b1b..7d7b76c 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/Image.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/Image.js
@@ -12,23 +12,23 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.Image');
+goog.provide('org_apache_flex_html_Image');
 
-goog.require('org.apache.flex.core.UIBase');
-goog.require('org.apache.flex.html.beads.ImageView');
-goog.require('org.apache.flex.html.beads.models.ImageModel');
+goog.require('org_apache_flex_core_UIBase');
+goog.require('org_apache_flex_html_beads_ImageView');
+goog.require('org_apache_flex_html_beads_models_ImageModel');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.UIBase}
+ * @extends {org_apache_flex_core_UIBase}
  */
-org.apache.flex.html.Image = function() {
-  org.apache.flex.html.Image.base(this, 'constructor');
+org_apache_flex_html_Image = function() {
+  org_apache_flex_html_Image.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.html.Image,
-    org.apache.flex.core.UIBase);
+goog.inherits(org_apache_flex_html_Image,
+    org_apache_flex_core_UIBase);
 
 
 /**
@@ -36,9 +36,9 @@ goog.inherits(org.apache.flex.html.Image,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.Image.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_Image.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'Image',
-                qName: 'org.apache.flex.html.Image' }] };
+                qName: 'org_apache_flex_html_Image' }] };
 
 
 /**
@@ -46,7 +46,7 @@ org.apache.flex.html.Image.prototype.FLEXJS_CLASS_INFO =
  * @protected
  * @return {Object} The actual element to be parented.
  */
-org.apache.flex.html.Image.prototype.createElement =
+org_apache_flex_html_Image.prototype.createElement =
     function() {
 
   this.element = document.createElement('img');
@@ -55,12 +55,12 @@ org.apache.flex.html.Image.prototype.createElement =
   this.element.flexjs_wrapper = this;
 
   this.model = new
-          org.apache.flex.html.beads.models.ImageModel();
+          org_apache_flex_html_beads_models_ImageModel();
 
   this.addBead(this.model);
 
   this.addBead(new
-      org.apache.flex.html.beads.ImageView());
+      org_apache_flex_html_beads_ImageView());
 
   return this.element;
 };
@@ -70,7 +70,7 @@ org.apache.flex.html.Image.prototype.createElement =
  * @expose
  * @return {String} The source identifier for the Image.
  */
-org.apache.flex.html.Image.prototype.
+org_apache_flex_html_Image.prototype.
     get_source = function() {
   return this.model.get_source();
 };
@@ -80,7 +80,7 @@ org.apache.flex.html.Image.prototype.
  * @expose
  * @param {String} value The source identifier for the Image.
  */
-org.apache.flex.html.Image.prototype.
+org_apache_flex_html_Image.prototype.
     set_source = function(value) {
   this.model.set_source(value);
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/ImageAndTextButton.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/ImageAndTextButton.js b/frameworks/js/FlexJS/src/org/apache/flex/html/ImageAndTextButton.js
index 2e8d4c3..c9efb28 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/ImageAndTextButton.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/ImageAndTextButton.js
@@ -12,24 +12,24 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.ImageAndTextButton');
+goog.provide('org_apache_flex_html_ImageAndTextButton');
 
-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.ImageAndTextButton = function() {
-  org.apache.flex.html.ImageAndTextButton.base(this, 'constructor');
+org_apache_flex_html_ImageAndTextButton = function() {
+  org_apache_flex_html_ImageAndTextButton.base(this, 'constructor');
 
   this._text = '';
   this._src = '';
 };
-goog.inherits(org.apache.flex.html.ImageAndTextButton,
-    org.apache.flex.html.Button);
+goog.inherits(org_apache_flex_html_ImageAndTextButton,
+    org_apache_flex_html_Button);
 
 
 /**
@@ -37,15 +37,15 @@ goog.inherits(org.apache.flex.html.ImageAndTextButton,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.ImageAndTextButton.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_ImageAndTextButton.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ImageAndTextButton',
-                qName: 'org.apache.flex.html.ImageAndTextButton'}] };
+                qName: 'org_apache_flex_html_ImageAndTextButton'}] };
 
 
 /**
  * @override
  */
-org.apache.flex.html.ImageAndTextButton.prototype.createElement =
+org_apache_flex_html_ImageAndTextButton.prototype.createElement =
     function() {
   this.element = document.createElement('button');
   this.element.setAttribute('type', 'button');
@@ -53,8 +53,8 @@ org.apache.flex.html.ImageAndTextButton.prototype.createElement =
   this.positioner = this.element;
   this.element.flexjs_wrapper = this;
 
-  if (org.apache.flex.core.ValuesManager.valuesImpl.getValue) {
-    var impl = org.apache.flex.core.ValuesManager.valuesImpl.
+  if (org_apache_flex_core_ValuesManager.valuesImpl.getValue) {
+    var impl = org_apache_flex_core_ValuesManager.valuesImpl.
         getValue(this, 'iStatesImpl');
   }
 
@@ -66,7 +66,7 @@ org.apache.flex.html.ImageAndTextButton.prototype.createElement =
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.html.ImageAndTextButton.prototype.get_text = function() {
+org_apache_flex_html_ImageAndTextButton.prototype.get_text = function() {
   return this._text;
 };
 
@@ -75,7 +75,7 @@ org.apache.flex.html.ImageAndTextButton.prototype.get_text = function() {
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.html.ImageAndTextButton.prototype.set_text =
+org_apache_flex_html_ImageAndTextButton.prototype.set_text =
     function(value) {
   this._text = value;
   this.setInnerHTML();
@@ -86,7 +86,7 @@ org.apache.flex.html.ImageAndTextButton.prototype.set_text =
  * @expose
  * @return {string} The image url.
  */
-org.apache.flex.html.ImageAndTextButton.prototype.get_image = function() {
+org_apache_flex_html_ImageAndTextButton.prototype.get_image = function() {
   return this._src;
 };
 
@@ -95,7 +95,7 @@ org.apache.flex.html.ImageAndTextButton.prototype.get_image = function() {
  * @expose
  * @param {string} value The image url.
  */
-org.apache.flex.html.ImageAndTextButton.prototype.set_image =
+org_apache_flex_html_ImageAndTextButton.prototype.set_image =
     function(value) {
   this._src = value;
   this.setInnerHTML();
@@ -104,7 +104,7 @@ org.apache.flex.html.ImageAndTextButton.prototype.set_image =
 
 /**
  */
-org.apache.flex.html.ImageAndTextButton.prototype.setInnerHTML = function() {
+org_apache_flex_html_ImageAndTextButton.prototype.setInnerHTML = function() {
   var inner = '';
   if (this._src != null)
     inner += '<img src=\'' + this._src + '\'/>';

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/Label.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/Label.js b/frameworks/js/FlexJS/src/org/apache/flex/html/Label.js
index 97720ca..9375221 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/Label.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/Label.js
@@ -12,25 +12,25 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.Label');
+goog.provide('org_apache_flex_html_Label');
 
-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.Label = function() {
-  org.apache.flex.html.Label.base(this, 'constructor');
+org_apache_flex_html_Label = function() {
+  org_apache_flex_html_Label.base(this, 'constructor');
 
   this.element = document.createElement('span');
   this.positioner = this.element;
   this.element.flexjs_wrapper = this;
 };
-goog.inherits(org.apache.flex.html.Label,
-    org.apache.flex.core.UIBase);
+goog.inherits(org_apache_flex_html_Label,
+    org_apache_flex_core_UIBase);
 
 
 /**
@@ -38,16 +38,16 @@ goog.inherits(org.apache.flex.html.Label,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.Label.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_Label.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'Label',
-                qName: 'org.apache.flex.html.Label' }] };
+                qName: 'org_apache_flex_html_Label' }] };
 
 
 /**
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.html.Label.prototype.get_text = function() {
+org_apache_flex_html_Label.prototype.get_text = function() {
   return this.element.innerHTML;
 };
 
@@ -56,7 +56,7 @@ org.apache.flex.html.Label.prototype.get_text = function() {
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.html.Label.prototype.set_text = function(value) {
+org_apache_flex_html_Label.prototype.set_text = function(value) {
   this.element.innerHTML = value;
 };
 
@@ -65,7 +65,7 @@ org.apache.flex.html.Label.prototype.set_text = function(value) {
  * @expose
  * @return {string} The html getter.
  */
-org.apache.flex.html.Label.prototype.get_html = function() {
+org_apache_flex_html_Label.prototype.get_html = function() {
   return this.element.innerHTML;
 };
 
@@ -74,6 +74,6 @@ org.apache.flex.html.Label.prototype.get_html = function() {
  * @expose
  * @param {string} value The html setter.
  */
-org.apache.flex.html.Label.prototype.set_html = function(value) {
+org_apache_flex_html_Label.prototype.set_html = function(value) {
   this.element.innerHTML = value;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/List.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/List.js b/frameworks/js/FlexJS/src/org/apache/flex/html/List.js
index 70c0ad5..de2e274 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/List.js
+++ b/frameworks/js/FlexJS/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('mx.core.IFactory');
-goog.require('org.apache.flex.core.IDataProviderItemRendererMapper');
-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('mx_core_IFactory');
+goog.require('org_apache_flex_core_IDataProviderItemRendererMapper');
+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,16 +46,16 @@ 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' }] };
 
 
 /**
  * @expose
- * @return {mx.core.IFactory} The itemRenderer generator.
+ * @return {mx_core_IFactory} The itemRenderer generator.
  */
-org.apache.flex.html.List.prototype.get_itemRenderer =
+org_apache_flex_html_List.prototype.get_itemRenderer =
 function() {
   return this.itemRenderer_;
 };
@@ -63,9 +63,9 @@ function() {
 
 /**
  * @expose
- * @param {mx.core.IFactory} value The itemRenderer generator.
+ * @param {mx_core_IFactory} value The itemRenderer generator.
  */
-org.apache.flex.html.List.prototype.set_itemRenderer =
+org_apache_flex_html_List.prototype.set_itemRenderer =
 function(value) {
   this.itemRenderer_ = value;
 };
@@ -75,7 +75,7 @@ function(value) {
  * @expose
  * @return {String} The name of the field to use as a label.
  */
-org.apache.flex.html.List.prototype.get_labelField =
+org_apache_flex_html_List.prototype.get_labelField =
 function() {
   return this.get_model().get_labelField();
 };
@@ -85,7 +85,7 @@ function() {
  * @expose
  * @param {String} value The name of the field to use as a label.
  */
-org.apache.flex.html.List.prototype.set_labelField =
+org_apache_flex_html_List.prototype.set_labelField =
 function(value) {
   this.get_model().set_labelField(value);
 };
@@ -95,7 +95,7 @@ function(value) {
  * @expose
  * @return {number} The height of each row.
  */
-org.apache.flex.html.List.prototype.get_rowHeight =
+org_apache_flex_html_List.prototype.get_rowHeight =
 function() {
   return this.get_presentationModel().get_rowHeight();
 };
@@ -105,7 +105,7 @@ function() {
  * @expose
  * @param {number} value The height of each row.
  */
-org.apache.flex.html.List.prototype.set_rowHeight =
+org_apache_flex_html_List.prototype.set_rowHeight =
 function(value) {
   this.get_presentationModel().set_rowHeight(value);
 };
@@ -115,11 +115,11 @@ function(value) {
  * @expose
  * @return {Object} The model used to present some of the list's visual properties.
  */
-org.apache.flex.html.List.prototype.get_presentationModel =
+org_apache_flex_html_List.prototype.get_presentationModel =
 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;
@@ -129,9 +129,9 @@ function() {
 /**
  * @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.set_className('List');
 
   return this.element;
@@ -141,20 +141,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);
   }
@@ -166,10 +166,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.get_dataGroup();
   var items = null;
   if (dg.renderers) {
@@ -183,7 +183,7 @@ org.apache.flex.html.List.prototype.internalChildren =
  * @expose
  * @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) {


[02/12] git commit: [flex-asjs] [refs/heads/develop] - switching from org.apache.flex to org_apache_flex so GCC doesn't complain

Posted by ah...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/maps/google/Map.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/maps/google/Map.js b/frameworks/js/FlexJS/src/org/apache/flex/maps/google/Map.js
index a53b8f1..b2f49db 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/maps/google/Map.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/maps/google/Map.js
@@ -12,14 +12,14 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.maps.google.Map');
+goog.provide('org_apache_flex_maps_google_Map');
 
-goog.require('org.apache.flex.core.IBeadModel');
-goog.require('org.apache.flex.maps.google.Geometry');
-goog.require('org.apache.flex.maps.google.LatLng');
-goog.require('org.apache.flex.maps.google.Marker');
-goog.require('org.apache.flex.maps.google.Place');
-goog.require('org.apache.flex.maps.google.models.MapModel');
+goog.require('org_apache_flex_core_IBeadModel');
+goog.require('org_apache_flex_maps_google_Geometry');
+goog.require('org_apache_flex_maps_google_LatLng');
+goog.require('org_apache_flex_maps_google_Marker');
+goog.require('org_apache_flex_maps_google_Place');
+goog.require('org_apache_flex_maps_google_models_MapModel');
 
 
 // IMPORTANT:
@@ -30,14 +30,14 @@ goog.require('org.apache.flex.maps.google.models.MapModel');
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.UIBase}
+ * @extends {org_apache_flex_core_UIBase}
  */
-org.apache.flex.maps.google.Map = function() {
-  org.apache.flex.maps.google.Map.base(this, 'constructor');
+org_apache_flex_maps_google_Map = function() {
+  org_apache_flex_maps_google_Map.base(this, 'constructor');
   this.initialized = false;
 };
-goog.inherits(org.apache.flex.maps.google.Map,
-    org.apache.flex.core.UIBase);
+goog.inherits(org_apache_flex_maps_google_Map,
+    org_apache_flex_core_UIBase);
 
 
 /**
@@ -45,17 +45,17 @@ goog.inherits(org.apache.flex.maps.google.Map,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.maps.google.Map.prototype.
+org_apache_flex_maps_google_Map.prototype.
 FLEXJS_CLASS_INFO =
 { names: [{ name: 'Map',
-           qName: 'org.apache.flex.maps.google.Map' }],
+           qName: 'org_apache_flex_maps_google_Map' }],
     interfaces: [] };
 
 
 /**
  *
  */
-org.apache.flex.maps.google.Map.prototype.searchResults = null;
+org_apache_flex_maps_google_Map.prototype.searchResults = null;
 
 
 /**
@@ -63,10 +63,10 @@ org.apache.flex.maps.google.Map.prototype.searchResults = null;
  * @protected
  * @return {Object} The actual element to be parented.
  */
-org.apache.flex.maps.google.Map.prototype.createElement =
+org_apache_flex_maps_google_Map.prototype.createElement =
     function() {
 
-  var model = new org.apache.flex.maps.google.models.MapModel();
+  var model = new org_apache_flex_maps_google_models_MapModel();
   this.addBead(model);
 
   this.element = document.createElement('div');
@@ -83,7 +83,7 @@ org.apache.flex.maps.google.Map.prototype.createElement =
  * @expose
  * @param {String} value Google API dev token.
  */
-org.apache.flex.maps.google.Map.prototype.set_token = function(value) {
+org_apache_flex_maps_google_Map.prototype.set_token = function(value) {
   this.token = value;
 };
 
@@ -92,7 +92,7 @@ org.apache.flex.maps.google.Map.prototype.set_token = function(value) {
  * @expose
  * @return {Object} The marker that was last selected.
  */
-org.apache.flex.maps.google.Map.prototype.get_selectedMarker =
+org_apache_flex_maps_google_Map.prototype.get_selectedMarker =
 function() {
   return this._selectedMarker;
 };
@@ -100,7 +100,7 @@ function() {
 
 /**
  */
-org.apache.flex.maps.google.Map.prototype.finishInitalization = function() {
+org_apache_flex_maps_google_Map.prototype.finishInitalization = function() {
   this.loadMap(37.333, -121.900, 12);
   this.initialized = true;
   this.dispatchEvent('ready');
@@ -113,7 +113,7 @@ org.apache.flex.maps.google.Map.prototype.finishInitalization = function() {
  * @param {number} centerLong center longitude.
  * @param {number} zoom zoom level.
  */
-org.apache.flex.maps.google.Map.prototype.loadMap =
+org_apache_flex_maps_google_Map.prototype.loadMap =
     function(centerLat, centerLong, zoom) {
   if (!this.initialized) {
     this.currentCenter = new window['google']['maps']['LatLng'](centerLat, centerLong);
@@ -133,7 +133,7 @@ org.apache.flex.maps.google.Map.prototype.loadMap =
  * @expose
  * @param {Number} zoomLevel The level of magnification.
  */
-org.apache.flex.maps.google.Map.prototype.setZoom =
+org_apache_flex_maps_google_Map.prototype.setZoom =
     function(zoomLevel) {
   if (this.initialized) {
     this.map.setZoom(zoomLevel);
@@ -145,7 +145,7 @@ org.apache.flex.maps.google.Map.prototype.setZoom =
  * @expose
  * @param {string} address The new center of the map.
  */
-org.apache.flex.maps.google.Map.prototype.centerOnAddress = function(address) {
+org_apache_flex_maps_google_Map.prototype.centerOnAddress = function(address) {
   if (!this.geocoder) this.geocoder = new window['google']['maps']['Geocoder']();
   this.geocoder.geocode({ 'address': address}, goog.bind(this.positionHandler, this));
 };
@@ -155,7 +155,7 @@ org.apache.flex.maps.google.Map.prototype.centerOnAddress = function(address) {
  * @expose
  * @param {Object} location The new center of the map.
  */
-org.apache.flex.maps.google.Map.prototype.setCenter = function(location) {
+org_apache_flex_maps_google_Map.prototype.setCenter = function(location) {
   this.currentCenter = new window['google']['maps']['LatLng'](location.lat, location.lng);
   this.map.setCenter(this.currentCenter);
 };
@@ -164,7 +164,7 @@ org.apache.flex.maps.google.Map.prototype.setCenter = function(location) {
 /**
  * @expose
  */
-org.apache.flex.maps.google.Map.prototype.markCurrentLocation = function() {
+org_apache_flex_maps_google_Map.prototype.markCurrentLocation = function() {
   this.createMarker(this.currentCenter);
 };
 
@@ -173,7 +173,7 @@ org.apache.flex.maps.google.Map.prototype.markCurrentLocation = function() {
  * @expose
  * @param {string} address The address to locate and mark on the map.
  */
-org.apache.flex.maps.google.Map.prototype.markAddress =
+org_apache_flex_maps_google_Map.prototype.markAddress =
     function(address) {
   if (this.initialized) {
     if (!this.geocoder) this.geocoder = new window['google']['maps']['Geocoder']();
@@ -187,7 +187,7 @@ org.apache.flex.maps.google.Map.prototype.markAddress =
  * @param {Object} location A LatLng that denotes the position of the marker.
  * @return {Object} A marker object.
  */
-org.apache.flex.maps.google.Map.prototype.createMarker =
+org_apache_flex_maps_google_Map.prototype.createMarker =
     function(location) {
   var marker = new window['google']['maps']['Marker']({
     map: this.map,
@@ -202,7 +202,7 @@ org.apache.flex.maps.google.Map.prototype.createMarker =
  * @expose
  * @param {string} placeName A place to search for.
  */
-org.apache.flex.maps.google.Map.prototype.nearbySearch =
+org_apache_flex_maps_google_Map.prototype.nearbySearch =
     function(placeName) {
   if (this.markers == null) this.markers = [];
   this.service = new window['google']['maps']['places']['PlacesService'](this.map);
@@ -215,7 +215,7 @@ org.apache.flex.maps.google.Map.prototype.nearbySearch =
 /**
  * @expose
  */
-org.apache.flex.maps.google.Map.prototype.clearSearchResults =
+org_apache_flex_maps_google_Map.prototype.clearSearchResults =
 function() {
   if (this.markers) {
     for (var i = 0; i < this.markers.length; i++) {
@@ -230,9 +230,9 @@ function() {
  * @param {Object} marker The marker that was clicked.
  * @param {Object} event The mouse event for the marker click.
  */
-org.apache.flex.maps.google.Map.prototype.markerClicked =
+org_apache_flex_maps_google_Map.prototype.markerClicked =
 function(marker, event) {
-  var newMarker = new org.apache.flex.maps.google.Marker();
+  var newMarker = new org_apache_flex_maps_google_Marker();
   newMarker.position.lat = marker.position.lat();
   newMarker.position.lng = marker.position.lng();
   newMarker.title = marker.title;
@@ -240,7 +240,7 @@ function(marker, event) {
 
   this._selectedMarker = newMarker;
 
-  var newEvent = new org.apache.flex.events.Event('markerClicked');
+  var newEvent = new org_apache_flex_events_Event('markerClicked');
   newEvent.marker = newMarker;
   this.dispatchEvent(newEvent);
 };
@@ -250,7 +250,7 @@ function(marker, event) {
  * @param {Array} results The found location(s).
  * @param {string} status Status of the call.
  */
-org.apache.flex.maps.google.Map.prototype.positionHandler =
+org_apache_flex_maps_google_Map.prototype.positionHandler =
     function(results, status) {
   if (status == window['google']['maps']['GeocoderStatus']['OK']) {
     this.currentCenter = results[0]['geometry']['location'];
@@ -269,7 +269,7 @@ org.apache.flex.maps.google.Map.prototype.positionHandler =
  * @param {Array} results The found location(s).
  * @param {string} status Status of the call.
  */
-org.apache.flex.maps.google.Map.prototype.geoCodeHandler =
+org_apache_flex_maps_google_Map.prototype.geoCodeHandler =
     function(results, status) {
   if (status == window['google']['maps']['GeocoderStatus']['OK']) {
     this.currentCenter = results[0]['geometry']['location'];
@@ -288,12 +288,12 @@ org.apache.flex.maps.google.Map.prototype.geoCodeHandler =
  * @param {Array} results The result of the search.
  * @param {string} status Status of the search.
  */
-org.apache.flex.maps.google.Map.prototype.searchResultHandler =
+org_apache_flex_maps_google_Map.prototype.searchResultHandler =
 function(results, status) {
   this.searchResults = [];
   if (status == window['google']['maps']['places']['PlacesServiceStatus']['OK']) {
     for (var i = 0; i < results.length; i++) {
-      var place = new org.apache.flex.maps.google.Place();
+      var place = new org_apache_flex_maps_google_Place();
       place.geometry.location.lat = results[i]['geometry']['location']['lat'];
       place.geometry.location.lng = results[i]['geometry']['location']['lng'];
       place.icon = results[i]['icon'];
@@ -317,11 +317,11 @@ function(results, status) {
 /**
  * Handles changes in map center
  */
-org.apache.flex.maps.google.Map.prototype.centerChangeHandler =
+org_apache_flex_maps_google_Map.prototype.centerChangeHandler =
     function() {
   this.currentCenter = this.map['getCenter']();
 
-  var newEvent = new org.apache.flex.events.Event('centered');
+  var newEvent = new org_apache_flex_events_Event('centered');
   this.dispatchEvent(newEvent);
 };
 
@@ -329,11 +329,11 @@ org.apache.flex.maps.google.Map.prototype.centerChangeHandler =
 /**
  * Handles changes in map bounds
  */
-org.apache.flex.maps.google.Map.prototype.boundsChangeHandler =
+org_apache_flex_maps_google_Map.prototype.boundsChangeHandler =
     function() {
   this.currentCenter = this.map['getCenter']();
 
-  var newEvent = new org.apache.flex.events.Event('boundsChanged');
+  var newEvent = new org_apache_flex_events_Event('boundsChanged');
   this.dispatchEvent(newEvent);
 };
 
@@ -341,10 +341,10 @@ org.apache.flex.maps.google.Map.prototype.boundsChangeHandler =
 /**
  * Handles changes in map bounds
  */
-org.apache.flex.maps.google.Map.prototype.zoomChangeHandler =
+org_apache_flex_maps_google_Map.prototype.zoomChangeHandler =
     function() {
   this.currentCenter = this.map['getCenter']();
 
-  var newEvent = new org.apache.flex.events.Event('zoomChanged');
+  var newEvent = new org_apache_flex_events_Event('zoomChanged');
   this.dispatchEvent(newEvent);
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/maps/google/Marker.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/maps/google/Marker.js b/frameworks/js/FlexJS/src/org/apache/flex/maps/google/Marker.js
index 1332b24..36b14da 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/maps/google/Marker.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/maps/google/Marker.js
@@ -12,9 +12,9 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.maps.google.Marker');
+goog.provide('org_apache_flex_maps_google_Marker');
 
-goog.require('org.apache.flex.maps.google.LatLng');
+goog.require('org_apache_flex_maps_google_LatLng');
 
 
 
@@ -27,8 +27,8 @@ goog.require('org.apache.flex.maps.google.LatLng');
 /**
  * @constructor
  */
-org.apache.flex.maps.google.Marker = function() {
-  this.position = new org.apache.flex.maps.google.LatLng();
+org_apache_flex_maps_google_Marker = function() {
+  this.position = new org_apache_flex_maps_google_LatLng();
 };
 
 
@@ -37,27 +37,27 @@ org.apache.flex.maps.google.Marker = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.maps.google.Marker.prototype.
+org_apache_flex_maps_google_Marker.prototype.
 FLEXJS_CLASS_INFO =
 { names: [{ name: 'Marker',
-           qName: 'org.apache.flex.maps.google.Marker' }],
+           qName: 'org_apache_flex_maps_google_Marker' }],
     interfaces: [] };
 
 
 /**
  * @type {Object} The marker's location.
  */
-org.apache.flex.maps.google.Marker.prototype.position = null;
+org_apache_flex_maps_google_Marker.prototype.position = null;
 
 
 /**
  * @type {String} The title for the marker.
  */
-org.apache.flex.maps.google.Marker.prototype.title = null;
+org_apache_flex_maps_google_Marker.prototype.title = null;
 
 
 /**
  * @type {Object} The map to which the marker belongs.
  */
-org.apache.flex.maps.google.Marker.prototype.map = null;
+org_apache_flex_maps_google_Marker.prototype.map = null;
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/maps/google/Place.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/maps/google/Place.js b/frameworks/js/FlexJS/src/org/apache/flex/maps/google/Place.js
index 4aff636..482df0e 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/maps/google/Place.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/maps/google/Place.js
@@ -12,9 +12,9 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.maps.google.Place');
+goog.provide('org_apache_flex_maps_google_Place');
 
-goog.require('org.apache.flex.maps.google.Geometry');
+goog.require('org_apache_flex_maps_google_Geometry');
 
 
 // IMPORTANT:
@@ -26,8 +26,8 @@ goog.require('org.apache.flex.maps.google.Geometry');
 /**
  * @constructor
  */
-org.apache.flex.maps.google.Place = function() {
-  this.geometry = new org.apache.flex.maps.google.Geometry();
+org_apache_flex_maps_google_Place = function() {
+  this.geometry = new org_apache_flex_maps_google_Geometry();
 };
 
 
@@ -36,54 +36,54 @@ org.apache.flex.maps.google.Place = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.maps.google.Place.prototype.
+org_apache_flex_maps_google_Place.prototype.
 FLEXJS_CLASS_INFO =
 { names: [{ name: 'Place',
-           qName: 'org.apache.flex.maps.google.Place' }],
+           qName: 'org_apache_flex_maps_google_Place' }],
     interfaces: [] };
 
 
 /**
  * @type {Object} The current location
  */
-org.apache.flex.maps.google.Place.prototype.geometry = null;
+org_apache_flex_maps_google_Place.prototype.geometry = null;
 
 
 /**
  * @type {String} The icon representing the place.
  */
-org.apache.flex.maps.google.Place.prototype.icon = null;
+org_apache_flex_maps_google_Place.prototype.icon = null;
 
 
 /**
  * @type {String} A unique identifier for the place.
  */
-org.apache.flex.maps.google.Place.prototype.id = null;
+org_apache_flex_maps_google_Place.prototype.id = null;
 
 
 /**
  * @type {String} The name of the place.
  */
-org.apache.flex.maps.google.Place.prototype.name = null;
+org_apache_flex_maps_google_Place.prototype.name = null;
 
 
 /**
  * @type {String} A reference identifier.
  */
-org.apache.flex.maps.google.Place.prototype.reference = null;
+org_apache_flex_maps_google_Place.prototype.reference = null;
 
 
 /**
  * @type {String} A description of the area of the place.
  */
-org.apache.flex.maps.google.Place.prototype.vicinity = null;
+org_apache_flex_maps_google_Place.prototype.vicinity = null;
 
 
 /**
  * @override
  * @return {string} A description of the area of the place.
  */
-org.apache.flex.maps.google.Place.prototype.toString = function PlaceToString() {
+org_apache_flex_maps_google_Place.prototype.toString = function PlaceToString() {
   var results = '';
   if (this.name) results = this.name;
   if (this.vicinity) results += ' ' + this.vicinity;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/maps/google/beads/MapView.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/maps/google/beads/MapView.js b/frameworks/js/FlexJS/src/org/apache/flex/maps/google/beads/MapView.js
index c388802..5088712 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/maps/google/beads/MapView.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/maps/google/beads/MapView.js
@@ -14,14 +14,14 @@
 /* MapView isn't really the view, but is a bead used to trigger
    the loading of the map JS files */
 
-goog.provide('org.apache.flex.maps.google.beads.MapView');
+goog.provide('org_apache_flex_maps_google_beads_MapView');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.maps.google.beads.MapView = function() {
+org_apache_flex_maps_google_beads_MapView = function() {
 };
 
 
@@ -30,18 +30,18 @@ org.apache.flex.maps.google.beads.MapView = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.maps.google.beads.MapView.prototype.
+org_apache_flex_maps_google_beads_MapView.prototype.
 FLEXJS_CLASS_INFO =
 { names: [{ name: 'MapView',
-           qName: 'org.apache.flex.maps.google.beads.MapView' }],
-    interfaces: [org.apache.flex.core.IBeadView] };
+           qName: 'org_apache_flex_maps_google_beads_MapView' }],
+    interfaces: [org_apache_flex_core_IBeadView] };
 
 
 /**
  * @expose
  * @param {Object} value The new host.
  */
-org.apache.flex.maps.google.beads.MapView.prototype.set_strand =
+org_apache_flex_maps_google_beads_MapView.prototype.set_strand =
 function(value) {
 
   this.strand_ = value;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/maps/google/models/MapModel.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/maps/google/models/MapModel.js b/frameworks/js/FlexJS/src/org/apache/flex/maps/google/models/MapModel.js
index eff4856..3956ab5 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/maps/google/models/MapModel.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/maps/google/models/MapModel.js
@@ -12,10 +12,10 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.maps.google.models.MapModel');
+goog.provide('org_apache_flex_maps_google_models_MapModel');
 
-goog.require('org.apache.flex.core.IBeadModel');
-goog.require('org.apache.flex.events.EventDispatcher');
+goog.require('org_apache_flex_core_IBeadModel');
+goog.require('org_apache_flex_events_EventDispatcher');
 
 
 // IMPORTANT:
@@ -26,15 +26,15 @@ goog.require('org.apache.flex.events.EventDispatcher');
 
 /**
  * @constructor
- * @extends {org.apache.flex.events.EventDispatcher}
- * @implements {org.apache.flex.core.IBeadModel}
+ * @extends {org_apache_flex_events_EventDispatcher}
+ * @implements {org_apache_flex_core_IBeadModel}
  */
-org.apache.flex.maps.google.models.MapModel = function() {
-  org.apache.flex.maps.google.models.MapModel.base(this, 'constructor');
+org_apache_flex_maps_google_models_MapModel = function() {
+  org_apache_flex_maps_google_models_MapModel.base(this, 'constructor');
 };
 goog.inherits(
-    org.apache.flex.maps.google.models.MapModel,
-    org.apache.flex.events.EventDispatcher);
+    org_apache_flex_maps_google_models_MapModel,
+    org_apache_flex_events_EventDispatcher);
 
 
 /**
@@ -42,18 +42,18 @@ goog.inherits(
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.maps.google.models.MapModel.prototype.
+org_apache_flex_maps_google_models_MapModel.prototype.
 FLEXJS_CLASS_INFO =
 { names: [{ name: 'MapModel',
-           qName: 'org.apache.flex.maps.google.models.MapModel' }],
-    interfaces: [org.apache.flex.core.IBeadModel] };
+           qName: 'org_apache_flex_maps_google_models_MapModel' }],
+    interfaces: [org_apache_flex_core_IBeadModel] };
 
 
 /**
  * @expose
  * @param {Object} value The strand.
  */
-org.apache.flex.maps.google.models.MapModel.prototype.
+org_apache_flex_maps_google_models_MapModel.prototype.
     set_strand = function(value) {
   this.strand_ = value;
 };
@@ -63,7 +63,7 @@ org.apache.flex.maps.google.models.MapModel.prototype.
  * @expose
  * @return {Array} The search results list.
  */
-org.apache.flex.maps.google.models.MapModel.prototype.get_searchResults =
+org_apache_flex_maps_google_models_MapModel.prototype.get_searchResults =
 function() {
   return this._searchResults;
 };
@@ -73,7 +73,7 @@ function() {
  * @expose
  * @param {Array} value A list of search results.
  */
-org.apache.flex.maps.google.models.MapModel.prototype.set_searchResults =
+org_apache_flex_maps_google_models_MapModel.prototype.set_searchResults =
 function(value) {
   this._searchResults = value;
   this.dispatchEvent('searchResultsChanged');
@@ -84,7 +84,7 @@ function(value) {
  * @expose
  * @return {Number} Map zoom level.
  */
-org.apache.flex.maps.google.models.MapModel.prototype.get_zoom =
+org_apache_flex_maps_google_models_MapModel.prototype.get_zoom =
 function() {
   return this._zoom;
 };
@@ -94,7 +94,7 @@ function() {
  * @expose
  * @param {Number} value Map zoom level.
  */
-org.apache.flex.maps.google.models.MapModel.prototype.set_zoom =
+org_apache_flex_maps_google_models_MapModel.prototype.set_zoom =
 function(value) {
   this._zoom = value;
   this.dispatchEvent('zoomChanged');
@@ -105,7 +105,7 @@ function(value) {
  * @expose
  * @return {Object} The currently selected map Marker.
  */
-org.apache.flex.maps.google.models.MapModel.prototype.get_selectedMarker =
+org_apache_flex_maps_google_models_MapModel.prototype.get_selectedMarker =
 function() {
   return this._selectedMarker;
 };
@@ -115,7 +115,7 @@ function() {
  * @expose
  * @param {Object} value A marker to be made the selected marker.
  */
-org.apache.flex.maps.google.models.MapModel.prototype.set_selectedMarker =
+org_apache_flex_maps_google_models_MapModel.prototype.set_selectedMarker =
 function(value) {
   this._selectedMarker = value;
   this.dispatchEvent('selectedMarkerChanged');
@@ -126,7 +126,7 @@ function(value) {
  * @expose
  * @return {Object} The map's current center.
  */
-org.apache.flex.maps.google.models.MapModel.prototype.get_currentLocation =
+org_apache_flex_maps_google_models_MapModel.prototype.get_currentLocation =
 function() {
   return this._currentLocation;
 };
@@ -136,7 +136,7 @@ function() {
  * @expose
  * @param {Object} value The map's new current center.
  */
-org.apache.flex.maps.google.models.MapModel.prototype.set_currentLocation =
+org_apache_flex_maps_google_models_MapModel.prototype.set_currentLocation =
 function(value) {
   this._currentLocation = value;
   this.dispatchEvent('currentLocationChanged');

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/net/BinaryUploader.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/net/BinaryUploader.js b/frameworks/js/FlexJS/src/org/apache/flex/net/BinaryUploader.js
index 8cff850..14cfe9f 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/net/BinaryUploader.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/net/BinaryUploader.js
@@ -12,19 +12,19 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.net.BinaryUploader');
+goog.provide('org_apache_flex_net_BinaryUploader');
 
-goog.require('org.apache.flex.core.HTMLElementWrapper');
-goog.require('org.apache.flex.net.HTTPHeader');
+goog.require('org_apache_flex_core_HTMLElementWrapper');
+goog.require('org_apache_flex_net_HTTPHeader');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.HTMLElementWrapper}
+ * @extends {org_apache_flex_core_HTMLElementWrapper}
  */
-org.apache.flex.net.BinaryUploader = function() {
-  org.apache.flex.net.BinaryUploader .base(this, 'constructor');
+org_apache_flex_net_BinaryUploader = function() {
+  org_apache_flex_net_BinaryUploader .base(this, 'constructor');
 
   /**
    * @private
@@ -87,8 +87,8 @@ org.apache.flex.net.BinaryUploader = function() {
 
   this.element = new XMLHttpRequest();
 };
-goog.inherits(org.apache.flex.net.BinaryUploader,
-    org.apache.flex.core.HTMLElementWrapper);
+goog.inherits(org_apache_flex_net_BinaryUploader,
+    org_apache_flex_core_HTMLElementWrapper);
 
 
 /**
@@ -96,62 +96,62 @@ goog.inherits(org.apache.flex.net.BinaryUploader,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.net.BinaryUploader.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_net_BinaryUploader.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'BinaryUploader',
-                qName: 'org.apache.flex.net.BinaryUploader'}] };
+                qName: 'org_apache_flex_net_BinaryUploader'}] };
 
 
 /**
  * @expose
  * @type {string}
  */
-org.apache.flex.net.BinaryUploader.HTTP_METHOD_GET = 'GET';
+org_apache_flex_net_BinaryUploader.HTTP_METHOD_GET = 'GET';
 
 
 /**
  * @expose
  * @type {string}
  */
-org.apache.flex.net.BinaryUploader.HTTP_METHOD_POST = 'POST';
+org_apache_flex_net_BinaryUploader.HTTP_METHOD_POST = 'POST';
 
 
 /**
  * @expose
  * @type {string}
  */
-org.apache.flex.net.BinaryUploader.HTTP_METHOD_PUT = 'PUT';
+org_apache_flex_net_BinaryUploader.HTTP_METHOD_PUT = 'PUT';
 
 
 /**
  * @expose
  * @type {string}
  */
-org.apache.flex.net.BinaryUploader.HTTP_METHOD_DELETE = 'DELETE';
+org_apache_flex_net_BinaryUploader.HTTP_METHOD_DELETE = 'DELETE';
 
 
 /**
  * @expose
  * @return {string} value The data.
  */
-org.apache.flex.net.BinaryUploader.prototype.get_data = function() {
+org_apache_flex_net_BinaryUploader.prototype.get_data = function() {
   return this.element.responseText;
 };
 
 
 /**
  * @expose
- * @return {org.apache.flex.utils.BinaryData} value The binary Data.
+ * @return {org_apache_flex_utils_BinaryData} value The binary Data.
  */
-org.apache.flex.net.BinaryUploader.prototype.get_binaryData = function() {
+org_apache_flex_net_BinaryUploader.prototype.get_binaryData = function() {
   return this.binaryData_;
 };
 
 
 /**
  * @expose
- * @param {org.apache.flex.utils.BinaryData} value The binary Data.
+ * @param {org_apache_flex_utils_BinaryData} value The binary Data.
  */
-org.apache.flex.net.BinaryUploader.prototype.set_binaryData = function(value) {
+org_apache_flex_net_BinaryUploader.prototype.set_binaryData = function(value) {
   this.binaryData_ = value;
 };
 
@@ -160,7 +160,7 @@ org.apache.flex.net.BinaryUploader.prototype.set_binaryData = function(value) {
  * @expose
  * @return {string} value The contentType.
  */
-org.apache.flex.net.BinaryUploader.prototype.get_contentType = function() {
+org_apache_flex_net_BinaryUploader.prototype.get_contentType = function() {
   return this.contentType_;
 };
 
@@ -169,7 +169,7 @@ org.apache.flex.net.BinaryUploader.prototype.get_contentType = function() {
  * @expose
  * @param {string} value The contentType.
  */
-org.apache.flex.net.BinaryUploader.prototype.set_contentType = function(value) {
+org_apache_flex_net_BinaryUploader.prototype.set_contentType = function(value) {
   this.contentType_ = value;
 };
 
@@ -178,7 +178,7 @@ org.apache.flex.net.BinaryUploader.prototype.set_contentType = function(value) {
  * @expose
  * @return {Array} value The array of HTTPHeaders.
  */
-org.apache.flex.net.BinaryUploader.prototype.get_headers = function() {
+org_apache_flex_net_BinaryUploader.prototype.get_headers = function() {
   if (this.headers_ === 'undefined') {
     this.headers_ = [];
   }
@@ -191,7 +191,7 @@ org.apache.flex.net.BinaryUploader.prototype.get_headers = function() {
  * @expose
  * @param {Array} value The array of HTTPHeaders.
  */
-org.apache.flex.net.BinaryUploader.prototype.set_headers = function(value) {
+org_apache_flex_net_BinaryUploader.prototype.set_headers = function(value) {
   this.headers_ = value;
 };
 
@@ -200,7 +200,7 @@ org.apache.flex.net.BinaryUploader.prototype.set_headers = function(value) {
  * @expose
  * @return {string} value The method.
  */
-org.apache.flex.net.BinaryUploader.prototype.get_method = function() {
+org_apache_flex_net_BinaryUploader.prototype.get_method = function() {
   return this.method_;
 };
 
@@ -209,7 +209,7 @@ org.apache.flex.net.BinaryUploader.prototype.get_method = function() {
  * @expose
  * @param {string} value The method.
  */
-org.apache.flex.net.BinaryUploader.prototype.set_method = function(value) {
+org_apache_flex_net_BinaryUploader.prototype.set_method = function(value) {
   this.method_ = value;
 };
 
@@ -218,7 +218,7 @@ org.apache.flex.net.BinaryUploader.prototype.set_method = function(value) {
  * @expose
  * @return {Array} value The array of HTTPHeaders.
  */
-org.apache.flex.net.BinaryUploader.prototype.get_responseHeaders = function() {
+org_apache_flex_net_BinaryUploader.prototype.get_responseHeaders = function() {
   var allHeaders, c, hdr, i, n, part1, part2;
 
   if (typeof this.responseHeaders_ === 'undefined') {
@@ -231,7 +231,7 @@ org.apache.flex.net.BinaryUploader.prototype.get_responseHeaders = function() {
       part1 = hdr.substring(0, c);
       part2 = hdr.substring(c + 2);
       this.responseHeaders_[i] =
-          new org.apache.flex.net.HTTPHeader(part1, part2);
+          new org_apache_flex_net_HTTPHeader(part1, part2);
     }
   }
   return this.responseHeaders_;
@@ -242,7 +242,7 @@ org.apache.flex.net.BinaryUploader.prototype.get_responseHeaders = function() {
  * @expose
  * @return {string} value The url.
  */
-org.apache.flex.net.BinaryUploader.prototype.get_responseURL = function() {
+org_apache_flex_net_BinaryUploader.prototype.get_responseURL = function() {
   return this.responseURL_;
 };
 
@@ -251,7 +251,7 @@ org.apache.flex.net.BinaryUploader.prototype.get_responseURL = function() {
  * @expose
  * @return {Number} value The status.
  */
-org.apache.flex.net.BinaryUploader.prototype.get_status = function() {
+org_apache_flex_net_BinaryUploader.prototype.get_status = function() {
   return this.status_;
 };
 
@@ -260,7 +260,7 @@ org.apache.flex.net.BinaryUploader.prototype.get_status = function() {
  * @expose
  * @return {Number} value The timeout.
  */
-org.apache.flex.net.BinaryUploader.prototype.get_timeout = function() {
+org_apache_flex_net_BinaryUploader.prototype.get_timeout = function() {
   return this.timeout_;
 };
 
@@ -269,7 +269,7 @@ org.apache.flex.net.BinaryUploader.prototype.get_timeout = function() {
  * @expose
  * @param {Number} value The timeout.
  */
-org.apache.flex.net.BinaryUploader.prototype.set_timeout = function(value) {
+org_apache_flex_net_BinaryUploader.prototype.set_timeout = function(value) {
   this.timeout_ = value;
 };
 
@@ -278,7 +278,7 @@ org.apache.flex.net.BinaryUploader.prototype.set_timeout = function(value) {
  * @expose
  * @return {string} value The url.
  */
-org.apache.flex.net.BinaryUploader.prototype.get_url = function() {
+org_apache_flex_net_BinaryUploader.prototype.get_url = function() {
   return this.url_;
 };
 
@@ -287,7 +287,7 @@ org.apache.flex.net.BinaryUploader.prototype.get_url = function() {
  * @expose
  * @param {string} value The url to fetch.
  */
-org.apache.flex.net.BinaryUploader.prototype.set_url = function(value) {
+org_apache_flex_net_BinaryUploader.prototype.set_url = function(value) {
   this.url_ = value;
 };
 
@@ -295,7 +295,7 @@ org.apache.flex.net.BinaryUploader.prototype.set_url = function(value) {
 /**
  * @expose
  */
-org.apache.flex.net.BinaryUploader.prototype.send = function() {
+org_apache_flex_net_BinaryUploader.prototype.send = function() {
   var binaryData, header, i, n, sawContentType, url;
 
   this.element.onreadystatechange = goog.bind(this.progressHandler, this);
@@ -304,7 +304,7 @@ org.apache.flex.net.BinaryUploader.prototype.send = function() {
 
   binaryData = null;
   if (this.binaryData_ !== undefined) {
-    if (this.method_ === org.apache.flex.net.BinaryUploader.HTTP_METHOD_GET) {
+    if (this.method_ === org_apache_flex_net_BinaryUploader.HTTP_METHOD_GET) {
       if (url.indexOf('?') !== -1) {
         url += this.binaryData_.get_data();
       } else {
@@ -323,7 +323,7 @@ org.apache.flex.net.BinaryUploader.prototype.send = function() {
     n = this.headers_.length;
     for (i = 0; i < n; i++) {
       header = this.headers_[i];
-      if (header.name === org.apache.flex.net.HTTPHeader.CONTENT_TYPE) {
+      if (header.name === org_apache_flex_net_HTTPHeader.CONTENT_TYPE) {
         sawContentType = true;
       }
 
@@ -331,10 +331,10 @@ org.apache.flex.net.BinaryUploader.prototype.send = function() {
     }
   }
 
-  if (this.method_ !== org.apache.flex.net.BinaryUploader.HTTP_METHOD_GET &&
+  if (this.method_ !== org_apache_flex_net_BinaryUploader.HTTP_METHOD_GET &&
       !sawContentType && binaryData) {
     this.element.setRequestHeader(
-        org.apache.flex.net.HTTPHeader.CONTENT_TYPE, this.binaryType_);
+        org_apache_flex_net_HTTPHeader.CONTENT_TYPE, this.binaryType_);
   }
 
   if (binaryData) {
@@ -350,7 +350,7 @@ org.apache.flex.net.BinaryUploader.prototype.send = function() {
 /**
  * @protected
  */
-org.apache.flex.net.BinaryUploader.prototype.progressHandler = function() {
+org_apache_flex_net_BinaryUploader.prototype.progressHandler = function() {
   if (this.element.readyState === 2) {
     this.status_ = this.element.status;
     this.dispatchEvent('httpResponseStatus');
@@ -365,14 +365,14 @@ org.apache.flex.net.BinaryUploader.prototype.progressHandler = function() {
  * @expose
  * @type {string}
  */
-org.apache.flex.net.BinaryUploader.prototype.id = null;
+org_apache_flex_net_BinaryUploader.prototype.id = null;
 
 
 /**
  * @expose
  * @return {string} The id.
  */
-org.apache.flex.net.BinaryUploader.prototype.get_id = function() {
+org_apache_flex_net_BinaryUploader.prototype.get_id = function() {
   return this.id;
 };
 
@@ -381,7 +381,7 @@ org.apache.flex.net.BinaryUploader.prototype.get_id = function() {
  * @expose
  * @param {Object} value The new id.
  */
-org.apache.flex.net.BinaryUploader.prototype.set_id = function(value) {
+org_apache_flex_net_BinaryUploader.prototype.set_id = function(value) {
   if (this.id !== value) {
     this.id = value;
     this.dispatchEvent('idChanged');
@@ -393,7 +393,7 @@ org.apache.flex.net.BinaryUploader.prototype.set_id = function(value) {
  * @expose
  * @return {Array} The array of descriptors.
  */
-org.apache.flex.net.BinaryUploader.prototype.get_MXMLDescriptor = function() {
+org_apache_flex_net_BinaryUploader.prototype.get_MXMLDescriptor = function() {
   return null;
 };
 
@@ -402,7 +402,7 @@ org.apache.flex.net.BinaryUploader.prototype.get_MXMLDescriptor = function() {
  * @expose
  * @return {Array} The array of properties.
  */
-org.apache.flex.net.BinaryUploader.prototype.get_MXMLProperties = function() {
+org_apache_flex_net_BinaryUploader.prototype.get_MXMLProperties = function() {
   return null;
 };
 
@@ -411,7 +411,7 @@ org.apache.flex.net.BinaryUploader.prototype.get_MXMLProperties = function() {
  * @param {Object} document The MXML object.
  * @param {string} id The id for the instance.
  */
-org.apache.flex.net.BinaryUploader.prototype.setDocument =
+org_apache_flex_net_BinaryUploader.prototype.setDocument =
     function(document, id) {
   this.document = document;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/net/HTTPHeader.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/net/HTTPHeader.js b/frameworks/js/FlexJS/src/org/apache/flex/net/HTTPHeader.js
index c24420d..8eee6f2 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/net/HTTPHeader.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/net/HTTPHeader.js
@@ -12,7 +12,7 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.net.HTTPHeader');
+goog.provide('org_apache_flex_net_HTTPHeader');
 
 
 
@@ -21,7 +21,7 @@ goog.provide('org.apache.flex.net.HTTPHeader');
  * @param {string=} opt_name The name.
  * @param {string=} opt_value The value.
  */
-org.apache.flex.net.HTTPHeader = function(opt_name, opt_value) {
+org_apache_flex_net_HTTPHeader = function(opt_name, opt_value) {
   if (typeof opt_name !== 'undefined') {
     this.name = opt_name;
   }
@@ -37,27 +37,27 @@ org.apache.flex.net.HTTPHeader = function(opt_name, opt_value) {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.net.HTTPHeader.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_net_HTTPHeader.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'HTTPHeader',
-                qName: 'org.apache.flex.net.HTTPHeader'}] };
+                qName: 'org_apache_flex_net_HTTPHeader'}] };
 
 
 /**
  * @expose
  * @type {string}
  */
-org.apache.flex.net.HTTPHeader.CONTENT_TYPE = 'Content-type';
+org_apache_flex_net_HTTPHeader.CONTENT_TYPE = 'Content-type';
 
 
 /**
  * @expose
  * @type {?string}
  */
-org.apache.flex.net.HTTPHeader.prototype.value = null;
+org_apache_flex_net_HTTPHeader.prototype.value = null;
 
 
 /**
  * @expose
  * @type {?string}
  */
-org.apache.flex.net.HTTPHeader.prototype.name = null;
+org_apache_flex_net_HTTPHeader.prototype.name = null;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/net/HTTPService.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/net/HTTPService.js b/frameworks/js/FlexJS/src/org/apache/flex/net/HTTPService.js
index eaf5448..acefa66 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/net/HTTPService.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/net/HTTPService.js
@@ -12,19 +12,19 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.net.HTTPService');
+goog.provide('org_apache_flex_net_HTTPService');
 
-goog.require('org.apache.flex.core.HTMLElementWrapper');
-goog.require('org.apache.flex.net.HTTPHeader');
+goog.require('org_apache_flex_core_HTMLElementWrapper');
+goog.require('org_apache_flex_net_HTTPHeader');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.HTMLElementWrapper}
+ * @extends {org_apache_flex_core_HTMLElementWrapper}
  */
-org.apache.flex.net.HTTPService = function() {
-  org.apache.flex.net.HTTPService.base(this, 'constructor');
+org_apache_flex_net_HTTPService = function() {
+  org_apache_flex_net_HTTPService.base(this, 'constructor');
 
   /**
    * @private
@@ -93,8 +93,8 @@ org.apache.flex.net.HTTPService = function() {
 
   this.element = new XMLHttpRequest();
 };
-goog.inherits(org.apache.flex.net.HTTPService,
-    org.apache.flex.core.HTMLElementWrapper);
+goog.inherits(org_apache_flex_net_HTTPService,
+    org_apache_flex_core_HTMLElementWrapper);
 
 
 /**
@@ -102,44 +102,44 @@ goog.inherits(org.apache.flex.net.HTTPService,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.net.HTTPService.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_net_HTTPService.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'HTTPService',
-                qName: 'org.apache.flex.net.HTTPService'}] };
+                qName: 'org_apache_flex_net_HTTPService'}] };
 
 
 /**
  * @expose
  * @type {string}
  */
-org.apache.flex.net.HTTPService.HTTP_METHOD_GET = 'GET';
+org_apache_flex_net_HTTPService.HTTP_METHOD_GET = 'GET';
 
 
 /**
  * @expose
  * @type {string}
  */
-org.apache.flex.net.HTTPService.HTTP_METHOD_POST = 'POST';
+org_apache_flex_net_HTTPService.HTTP_METHOD_POST = 'POST';
 
 
 /**
  * @expose
  * @type {string}
  */
-org.apache.flex.net.HTTPService.HTTP_METHOD_PUT = 'PUT';
+org_apache_flex_net_HTTPService.HTTP_METHOD_PUT = 'PUT';
 
 
 /**
  * @expose
  * @type {string}
  */
-org.apache.flex.net.HTTPService.HTTP_METHOD_DELETE = 'DELETE';
+org_apache_flex_net_HTTPService.HTTP_METHOD_DELETE = 'DELETE';
 
 
 /**
  * @expose
  * @param {Array.<Object>} value The array of beads.
  */
-org.apache.flex.net.HTTPService.prototype.set_beads = function(value) {
+org_apache_flex_net_HTTPService.prototype.set_beads = function(value) {
   this.beads_ = value;
 };
 
@@ -148,7 +148,7 @@ org.apache.flex.net.HTTPService.prototype.set_beads = function(value) {
  * @expose
  * @return {string} value The data.
  */
-org.apache.flex.net.HTTPService.prototype.get_data = function() {
+org_apache_flex_net_HTTPService.prototype.get_data = function() {
   return this.element.responseText;
 };
 
@@ -157,7 +157,7 @@ org.apache.flex.net.HTTPService.prototype.get_data = function() {
  * @expose
  * @return {?string} value The contentData.
  */
-org.apache.flex.net.HTTPService.prototype.get_contentData = function() {
+org_apache_flex_net_HTTPService.prototype.get_contentData = function() {
   return this.contentData_;
 };
 
@@ -166,7 +166,7 @@ org.apache.flex.net.HTTPService.prototype.get_contentData = function() {
  * @expose
  * @param {string} value The contentData.
  */
-org.apache.flex.net.HTTPService.prototype.set_contentData = function(value) {
+org_apache_flex_net_HTTPService.prototype.set_contentData = function(value) {
   this.contentData_ = value;
 };
 
@@ -175,7 +175,7 @@ org.apache.flex.net.HTTPService.prototype.set_contentData = function(value) {
  * @expose
  * @return {string} value The contentType.
  */
-org.apache.flex.net.HTTPService.prototype.get_contentType = function() {
+org_apache_flex_net_HTTPService.prototype.get_contentType = function() {
   return this.contentType_;
 };
 
@@ -184,7 +184,7 @@ org.apache.flex.net.HTTPService.prototype.get_contentType = function() {
  * @expose
  * @param {string} value The contentType.
  */
-org.apache.flex.net.HTTPService.prototype.set_contentType = function(value) {
+org_apache_flex_net_HTTPService.prototype.set_contentType = function(value) {
   this.contentType_ = value;
 };
 
@@ -193,7 +193,7 @@ org.apache.flex.net.HTTPService.prototype.set_contentType = function(value) {
  * @expose
  * @return {Array} value The array of HTTPHeaders.
  */
-org.apache.flex.net.HTTPService.prototype.get_headers = function() {
+org_apache_flex_net_HTTPService.prototype.get_headers = function() {
   if (this.headers_ === undefined) {
     this.headers_ = [];
   }
@@ -206,7 +206,7 @@ org.apache.flex.net.HTTPService.prototype.get_headers = function() {
  * @expose
  * @param {Array} value The array of HTTPHeaders.
  */
-org.apache.flex.net.HTTPService.prototype.set_headers = function(value) {
+org_apache_flex_net_HTTPService.prototype.set_headers = function(value) {
   this.headers_ = value;
 };
 
@@ -215,7 +215,7 @@ org.apache.flex.net.HTTPService.prototype.set_headers = function(value) {
  * @expose
  * @return {string} value The method.
  */
-org.apache.flex.net.HTTPService.prototype.get_method = function() {
+org_apache_flex_net_HTTPService.prototype.get_method = function() {
   return this.method_;
 };
 
@@ -224,7 +224,7 @@ org.apache.flex.net.HTTPService.prototype.get_method = function() {
  * @expose
  * @param {string} value The method.
  */
-org.apache.flex.net.HTTPService.prototype.set_method = function(value) {
+org_apache_flex_net_HTTPService.prototype.set_method = function(value) {
   this.method_ = value;
 };
 
@@ -233,7 +233,7 @@ org.apache.flex.net.HTTPService.prototype.set_method = function(value) {
  * @expose
  * @return {Array} value The array of HTTPHeaders.
  */
-org.apache.flex.net.HTTPService.prototype.get_responseHeaders = function() {
+org_apache_flex_net_HTTPService.prototype.get_responseHeaders = function() {
   var allHeaders, c, hdr, i, n, part1, part2;
 
   if (typeof this.responseHeaders_ === 'undefined') {
@@ -246,7 +246,7 @@ org.apache.flex.net.HTTPService.prototype.get_responseHeaders = function() {
       part1 = hdr.substring(0, c);
       part2 = hdr.substring(c + 2);
       this.responseHeaders_[i] =
-          new org.apache.flex.net.HTTPHeader(part1, part2);
+          new org_apache_flex_net_HTTPHeader(part1, part2);
     }
   }
   return this.responseHeaders_;
@@ -257,7 +257,7 @@ org.apache.flex.net.HTTPService.prototype.get_responseHeaders = function() {
  * @expose
  * @return {?string} value The url.
  */
-org.apache.flex.net.HTTPService.prototype.get_responseURL = function() {
+org_apache_flex_net_HTTPService.prototype.get_responseURL = function() {
   return this.responseURL_;
 };
 
@@ -266,7 +266,7 @@ org.apache.flex.net.HTTPService.prototype.get_responseURL = function() {
  * @expose
  * @return {number} value The status.
  */
-org.apache.flex.net.HTTPService.prototype.get_status = function() {
+org_apache_flex_net_HTTPService.prototype.get_status = function() {
   return this.status_;
 };
 
@@ -275,7 +275,7 @@ org.apache.flex.net.HTTPService.prototype.get_status = function() {
  * @expose
  * @return {number} value The timeout.
  */
-org.apache.flex.net.HTTPService.prototype.get_timeout = function() {
+org_apache_flex_net_HTTPService.prototype.get_timeout = function() {
   return this.timeout_;
 };
 
@@ -284,7 +284,7 @@ org.apache.flex.net.HTTPService.prototype.get_timeout = function() {
  * @expose
  * @param {number} value The timeout.
  */
-org.apache.flex.net.HTTPService.prototype.set_timeout = function(value) {
+org_apache_flex_net_HTTPService.prototype.set_timeout = function(value) {
   this.timeout_ = value;
 };
 
@@ -293,7 +293,7 @@ org.apache.flex.net.HTTPService.prototype.set_timeout = function(value) {
  * @expose
  * @return {?string} value The url.
  */
-org.apache.flex.net.HTTPService.prototype.get_url = function() {
+org_apache_flex_net_HTTPService.prototype.get_url = function() {
   return this.url_;
 };
 
@@ -302,7 +302,7 @@ org.apache.flex.net.HTTPService.prototype.get_url = function() {
  * @expose
  * @param {string} value The url to fetch.
  */
-org.apache.flex.net.HTTPService.prototype.set_url = function(value) {
+org_apache_flex_net_HTTPService.prototype.set_url = function(value) {
   this.url_ = value;
 };
 
@@ -310,7 +310,7 @@ org.apache.flex.net.HTTPService.prototype.set_url = function(value) {
 /**
  * @expose
  */
-org.apache.flex.net.HTTPService.prototype.send = function() {
+org_apache_flex_net_HTTPService.prototype.send = function() {
   var contentData, header, i, n, sawContentType, url;
 
   if (this.strand == null && this.beads_) {
@@ -326,7 +326,7 @@ org.apache.flex.net.HTTPService.prototype.send = function() {
 
   contentData = null;
   if (this.contentData_ !== undefined) {
-    if (this.method_ === org.apache.flex.net.HTTPService.HTTP_METHOD_GET) {
+    if (this.method_ === org_apache_flex_net_HTTPService.HTTP_METHOD_GET) {
       if (url.indexOf('?') !== -1) {
         url += this.contentData_;
       } else {
@@ -345,7 +345,7 @@ org.apache.flex.net.HTTPService.prototype.send = function() {
     n = this.headers_.length;
     for (i = 0; i < n; i++) {
       header = this.headers_[i];
-      if (header.name === org.apache.flex.net.HTTPHeader.CONTENT_TYPE) {
+      if (header.name === org_apache_flex_net_HTTPHeader.CONTENT_TYPE) {
         sawContentType = true;
       }
 
@@ -353,10 +353,10 @@ org.apache.flex.net.HTTPService.prototype.send = function() {
     }
   }
 
-  if (this.method_ !== org.apache.flex.net.HTTPService.HTTP_METHOD_GET &&
+  if (this.method_ !== org_apache_flex_net_HTTPService.HTTP_METHOD_GET &&
       !sawContentType && contentData) {
     this.element.setRequestHeader(
-        org.apache.flex.net.HTTPHeader.CONTENT_TYPE, this.contentType_);
+        org_apache_flex_net_HTTPHeader.CONTENT_TYPE, this.contentType_);
   }
 
   if (contentData) {
@@ -372,7 +372,7 @@ org.apache.flex.net.HTTPService.prototype.send = function() {
 /**
  * @protected
  */
-org.apache.flex.net.HTTPService.prototype.progressHandler = function() {
+org_apache_flex_net_HTTPService.prototype.progressHandler = function() {
   if (this.element.readyState === 2) {
     this.status_ = this.element.status;
     this.dispatchEvent('httpResponseStatus');
@@ -387,14 +387,14 @@ org.apache.flex.net.HTTPService.prototype.progressHandler = function() {
  * @expose
  * @type {?string}
  */
-org.apache.flex.net.HTTPService.prototype.id = null;
+org_apache_flex_net_HTTPService.prototype.id = null;
 
 
 /**
  * @expose
  * @return {?string} The id.
  */
-org.apache.flex.net.HTTPService.prototype.get_id = function() {
+org_apache_flex_net_HTTPService.prototype.get_id = function() {
   return this.id;
 };
 
@@ -403,7 +403,7 @@ org.apache.flex.net.HTTPService.prototype.get_id = function() {
  * @expose
  * @param {string} value The new id.
  */
-org.apache.flex.net.HTTPService.prototype.set_id = function(value) {
+org_apache_flex_net_HTTPService.prototype.set_id = function(value) {
   if (this.id !== value) {
     this.id = value;
     this.dispatchEvent('idChanged');
@@ -415,7 +415,7 @@ org.apache.flex.net.HTTPService.prototype.set_id = function(value) {
  * @expose
  * @return {Array} The array of descriptors.
  */
-org.apache.flex.net.HTTPService.prototype.get_MXMLDescriptor = function() {
+org_apache_flex_net_HTTPService.prototype.get_MXMLDescriptor = function() {
   return null;
 };
 
@@ -424,7 +424,7 @@ org.apache.flex.net.HTTPService.prototype.get_MXMLDescriptor = function() {
  * @expose
  * @return {Array} The array of properties.
  */
-org.apache.flex.net.HTTPService.prototype.get_MXMLProperties = function() {
+org_apache_flex_net_HTTPService.prototype.get_MXMLProperties = function() {
   return null;
 };
 
@@ -433,7 +433,7 @@ org.apache.flex.net.HTTPService.prototype.get_MXMLProperties = function() {
  * @param {Object} document The MXML object.
  * @param {string} id The id for the instance.
  */
-org.apache.flex.net.HTTPService.prototype.setDocument = function(document, id) {
+org_apache_flex_net_HTTPService.prototype.setDocument = function(document, id) {
   this.document = document;
 };
 
@@ -442,7 +442,7 @@ org.apache.flex.net.HTTPService.prototype.setDocument = function(document, id) {
  * @expose
  * @param {Object} value The strand.
  */
-org.apache.flex.net.HTTPService.prototype.set_strand = function(value) {
+org_apache_flex_net_HTTPService.prototype.set_strand = function(value) {
   if (this.strand_ !== value) {
     this.strand_ = value;
   }

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/net/JSONInputParser.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/net/JSONInputParser.js b/frameworks/js/FlexJS/src/org/apache/flex/net/JSONInputParser.js
index e03201c..83a41d1 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/net/JSONInputParser.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/net/JSONInputParser.js
@@ -12,14 +12,14 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.net.JSONInputParser');
+goog.provide('org_apache_flex_net_JSONInputParser');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.net.JSONInputParser = function() {
+org_apache_flex_net_JSONInputParser = function() {
 };
 
 
@@ -28,9 +28,9 @@ org.apache.flex.net.JSONInputParser = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.net.JSONInputParser.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_net_JSONInputParser.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'JSONInputParser',
-                qName: 'org.apache.flex.net.JSONInputParser'}] };
+                qName: 'org_apache_flex_net_JSONInputParser'}] };
 
 
 /**
@@ -38,7 +38,7 @@ org.apache.flex.net.JSONInputParser.prototype.FLEXJS_CLASS_INFO =
  * @param {string} s The input string.
  * @return {Array.<string>} The Array of unparsed objects.
  */
-org.apache.flex.net.JSONInputParser.prototype.parseItems = function(s) {
+org_apache_flex_net_JSONInputParser.prototype.parseItems = function(s) {
   var c = s.indexOf('[');
   if (c != -1) {
     var c2 = s.lastIndexOf(']');

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/net/JSONItemConverter.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/net/JSONItemConverter.js b/frameworks/js/FlexJS/src/org/apache/flex/net/JSONItemConverter.js
index d405d0a..698b514 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/net/JSONItemConverter.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/net/JSONItemConverter.js
@@ -12,14 +12,14 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.net.JSONItemConverter');
+goog.provide('org_apache_flex_net_JSONItemConverter');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.net.JSONItemConverter = function() {
+org_apache_flex_net_JSONItemConverter = function() {
 };
 
 
@@ -28,9 +28,9 @@ org.apache.flex.net.JSONItemConverter = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.net.JSONItemConverter.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_net_JSONItemConverter.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'JSONItemConverter',
-                qName: 'org.apache.flex.net.JSONItemConverter'}] };
+                qName: 'org_apache_flex_net_JSONItemConverter'}] };
 
 
 /**
@@ -38,7 +38,7 @@ org.apache.flex.net.JSONItemConverter.prototype.FLEXJS_CLASS_INFO =
  * @param {string} s The input string.
  * @return {*} The object.
  */
-org.apache.flex.net.JSONItemConverter.prototype.convertItem = function(s) {
+org_apache_flex_net_JSONItemConverter.prototype.convertItem = function(s) {
   var c = s.indexOf('{)');
   if (c > 0)
     s = s.substring(c);
@@ -54,7 +54,7 @@ org.apache.flex.net.JSONItemConverter.prototype.convertItem = function(s) {
  * @param {string} propName The name of the property.
  * @return {Object} value The value of the property.
  */
-org.apache.flex.net.JSONItemConverter.prototype.getProperty =
+org_apache_flex_net_JSONItemConverter.prototype.getProperty =
     function(obj, propName) {
   if (typeof obj['get_' + propName] === 'function') {
     return obj['get_' + propName]();
@@ -69,7 +69,7 @@ org.apache.flex.net.JSONItemConverter.prototype.getProperty =
  * @param {string} propName The name of the property.
  * @param {Object} value The value of the property.
  */
-org.apache.flex.net.JSONItemConverter.prototype.setProperty =
+org_apache_flex_net_JSONItemConverter.prototype.setProperty =
 function(obj, propName, value) {
   if (typeof obj['set_' + propName] === 'function') {
     obj['set_' + propName](value);

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/net/dataConverters/LazyCollection.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/net/dataConverters/LazyCollection.js b/frameworks/js/FlexJS/src/org/apache/flex/net/dataConverters/LazyCollection.js
index 5330ce1..bd3db2a 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/net/dataConverters/LazyCollection.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/net/dataConverters/LazyCollection.js
@@ -12,18 +12,19 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.net.dataConverters.LazyCollection');
+goog.provide('org_apache_flex_net_dataConverters_LazyCollection');
 
-goog.require('org.apache.flex.events.EventDispatcher');
-goog.require('org.apache.flex.events.IEventDispatcher');
+goog.require('org_apache_flex_events_EventDispatcher');
+goog.require('org_apache_flex_events_IEventDispatcher');
 
 
 
 /**
  * @constructor
+ * @extends {org_apache_flex_events_EventDispatcher}
  */
-org.apache.flex.net.dataConverters.LazyCollection = function() {
-  org.apache.flex.net.dataConverters.LazyCollection.base(this, 'constructor');
+org_apache_flex_net_dataConverters_LazyCollection = function() {
+  org_apache_flex_net_dataConverters_LazyCollection.base(this, 'constructor');
   /**
    * @private
    * @type {Object}
@@ -55,7 +56,7 @@ org.apache.flex.net.dataConverters.LazyCollection = function() {
    */
   this.strand_ = null;
 };
-goog.inherits(org.apache.flex.net.dataConverters.LazyCollection, org.apache.flex.events.EventDispatcher);
+goog.inherits(org_apache_flex_net_dataConverters_LazyCollection, org_apache_flex_events_EventDispatcher);
 
 
 /**
@@ -63,17 +64,17 @@ goog.inherits(org.apache.flex.net.dataConverters.LazyCollection, org.apache.flex
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.net.dataConverters.LazyCollection.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_net_dataConverters_LazyCollection.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'LazyCollection',
-                qName: 'org.apache.flex.net.dataConverters.LazyCollection'}],
-      interfaces: [org.apache.flex.events.IEventDispatcher]};
+                qName: 'org_apache_flex_net_dataConverters_LazyCollection'}],
+      interfaces: [org_apache_flex_events_IEventDispatcher]};
 
 
 /**
  * @expose
  * @return {Object} value The input parser.
  */
-org.apache.flex.net.dataConverters.LazyCollection.prototype.get_inputParser =
+org_apache_flex_net_dataConverters_LazyCollection.prototype.get_inputParser =
     function() {
   return this.inputParser_;
 };
@@ -83,7 +84,7 @@ org.apache.flex.net.dataConverters.LazyCollection.prototype.get_inputParser =
  * @expose
  * @param {Object} value The input parser.
  */
-org.apache.flex.net.dataConverters.LazyCollection.prototype.set_inputParser =
+org_apache_flex_net_dataConverters_LazyCollection.prototype.set_inputParser =
     function(value) {
   this.inputParser_ = value;
 };
@@ -93,7 +94,7 @@ org.apache.flex.net.dataConverters.LazyCollection.prototype.set_inputParser =
  * @expose
  * @return {Object} value The input parser.
  */
-org.apache.flex.net.dataConverters.LazyCollection.prototype.get_itemConverter =
+org_apache_flex_net_dataConverters_LazyCollection.prototype.get_itemConverter =
     function() {
   return this.itemConverter_;
 };
@@ -103,7 +104,7 @@ org.apache.flex.net.dataConverters.LazyCollection.prototype.get_itemConverter =
  * @expose
  * @param {Object} value The input parser.
  */
-org.apache.flex.net.dataConverters.LazyCollection.prototype.set_itemConverter =
+org_apache_flex_net_dataConverters_LazyCollection.prototype.set_itemConverter =
     function(value) {
   this.itemConverter_ = value;
 };
@@ -113,14 +114,14 @@ org.apache.flex.net.dataConverters.LazyCollection.prototype.set_itemConverter =
  * @expose
  * @type {string}
  */
-org.apache.flex.net.dataConverters.LazyCollection.prototype.id = '';
+org_apache_flex_net_dataConverters_LazyCollection.prototype.id = '';
 
 
 /**
  * @expose
  * @return {string} The id.
  */
-org.apache.flex.net.dataConverters.LazyCollection.prototype.get_id =
+org_apache_flex_net_dataConverters_LazyCollection.prototype.get_id =
     function() {
   return this.id;
 };
@@ -130,7 +131,7 @@ org.apache.flex.net.dataConverters.LazyCollection.prototype.get_id =
  * @expose
  * @param {string} value The new id.
  */
-org.apache.flex.net.dataConverters.LazyCollection.prototype.set_id =
+org_apache_flex_net_dataConverters_LazyCollection.prototype.set_id =
     function(value) {
   if (this.id !== value) {
     this.id = value;
@@ -143,7 +144,7 @@ org.apache.flex.net.dataConverters.LazyCollection.prototype.set_id =
  * @expose
  * @param {Object} value The new host.
  */
-org.apache.flex.net.dataConverters.LazyCollection.prototype.set_strand =
+org_apache_flex_net_dataConverters_LazyCollection.prototype.set_strand =
     function(value) {
   if (this.strand_ !== value) {
     this.strand_ = value;
@@ -156,7 +157,7 @@ org.apache.flex.net.dataConverters.LazyCollection.prototype.set_strand =
 /**
  * @protected
  */
-org.apache.flex.net.dataConverters.LazyCollection.prototype.completeHandler =
+org_apache_flex_net_dataConverters_LazyCollection.prototype.completeHandler =
     function() {
   var results = this.strand_.get_data();
   this.rawData_ = this.inputParser_.parseItems(results);
@@ -170,7 +171,7 @@ org.apache.flex.net.dataConverters.LazyCollection.prototype.completeHandler =
  * @param {number} index The index in the collection.
  * @return {Object} An item in the collection.
  */
-org.apache.flex.net.dataConverters.LazyCollection.prototype.getItemAt =
+org_apache_flex_net_dataConverters_LazyCollection.prototype.getItemAt =
     function(index) {
   if (this.data_[index] === undefined) {
     this.data_[index] =
@@ -185,7 +186,7 @@ org.apache.flex.net.dataConverters.LazyCollection.prototype.getItemAt =
  * @expose
  * @return {string} The number of items in the collection.
  */
-org.apache.flex.net.dataConverters.LazyCollection.prototype.get_length =
+org_apache_flex_net_dataConverters_LazyCollection.prototype.get_length =
     function() {
   return this.rawData_ ? this.rawData_.length : 0;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/svg/TextButton.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/svg/TextButton.js b/frameworks/js/FlexJS/src/org/apache/flex/svg/TextButton.js
index 56206ba..1300f5f 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/svg/TextButton.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/svg/TextButton.js
@@ -12,21 +12,21 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.svg.TextButton');
+goog.provide('org_apache_flex_svg_TextButton');
 
-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.svg.TextButton = function() {
-  org.apache.flex.svg.TextButton.base(this, 'constructor');
+org_apache_flex_svg_TextButton = function() {
+  org_apache_flex_svg_TextButton.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.svg.TextButton,
-    org.apache.flex.core.UIBase);
+goog.inherits(org_apache_flex_svg_TextButton,
+    org_apache_flex_core_UIBase);
 
 
 /**
@@ -34,15 +34,15 @@ goog.inherits(org.apache.flex.svg.TextButton,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.svg.TextButton.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_svg_TextButton.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'TextButton',
-                qName: 'org.apache.flex.svg.TextButton'}] };
+                qName: 'org_apache_flex_svg_TextButton'}] };
 
 
 /**
  * @override
  */
-org.apache.flex.svg.TextButton.prototype.createElement =
+org_apache_flex_svg_TextButton.prototype.createElement =
     function() {
   this.element = document.createElement('embed');
   this.element.setAttribute('src', 'org/apache/flex/svg/assets/TextButton_Skin.svg');
@@ -56,7 +56,7 @@ org.apache.flex.svg.TextButton.prototype.createElement =
 /**
  * @override
  */
-org.apache.flex.svg.TextButton.prototype.finalizeElement =
+org_apache_flex_svg_TextButton.prototype.finalizeElement =
     function() {
   var listenersArray;
   if (goog.events.hasListener(this.element, goog.events.EventType.CLICK)) {
@@ -78,7 +78,7 @@ org.apache.flex.svg.TextButton.prototype.finalizeElement =
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.svg.TextButton.prototype.get_text =
+org_apache_flex_svg_TextButton.prototype.get_text =
     function() {
   return this.element.getAttribute('label');
 };
@@ -88,7 +88,7 @@ org.apache.flex.svg.TextButton.prototype.get_text =
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.svg.TextButton.prototype.set_text =
+org_apache_flex_svg_TextButton.prototype.set_text =
     function(value) {
   this.element.setAttribute('label', value);
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/utils/BinaryData.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/utils/BinaryData.js b/frameworks/js/FlexJS/src/org/apache/flex/utils/BinaryData.js
index 10e04e9..0bf23b5 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/utils/BinaryData.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/utils/BinaryData.js
@@ -12,14 +12,14 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.utils.BinaryData');
+goog.provide('org_apache_flex_utils_BinaryData');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.utils.BinaryData = function() {
+org_apache_flex_utils_BinaryData = function() {
 
   /**
    * @private
@@ -41,16 +41,16 @@ org.apache.flex.utils.BinaryData = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.utils.BinaryData.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_utils_BinaryData.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'BinaryData',
-                qName: 'org.apache.flex.utils.BinaryData'}] };
+                qName: 'org_apache_flex_utils_BinaryData'}] };
 
 
 /**
  * @expose
  * @return {Object} The platform-specific data.
  */
-org.apache.flex.utils.BinaryData.prototype.get_data = function() {
+org_apache_flex_utils_BinaryData.prototype.get_data = function() {
   return this.data_;
 };
 
@@ -59,7 +59,7 @@ org.apache.flex.utils.BinaryData.prototype.get_data = function() {
  * @expose
  * @param {number} b The byte to write.
  */
-org.apache.flex.utils.BinaryData.prototype.writeByte = function(b) {
+org_apache_flex_utils_BinaryData.prototype.writeByte = function(b) {
   var view;
 
   this.growBuffer(1);
@@ -74,7 +74,7 @@ org.apache.flex.utils.BinaryData.prototype.writeByte = function(b) {
  * @expose
  * @param {number} s The 16-bit integer to write.
  */
-org.apache.flex.utils.BinaryData.prototype.writeShort = function(s) {
+org_apache_flex_utils_BinaryData.prototype.writeShort = function(s) {
   var view;
 
   this.growBuffer(2);
@@ -89,7 +89,7 @@ org.apache.flex.utils.BinaryData.prototype.writeShort = function(s) {
  * @expose
  * @param {number} num The 32-bit integer to write.
  */
-org.apache.flex.utils.BinaryData.prototype.writeInt = function(num) {
+org_apache_flex_utils_BinaryData.prototype.writeInt = function(num) {
   var view;
 
   this.growBuffer(4);
@@ -104,7 +104,7 @@ org.apache.flex.utils.BinaryData.prototype.writeInt = function(num) {
  * @expose
  * @param {number} num The 32-bit unsigned integer to write.
  */
-org.apache.flex.utils.BinaryData.prototype.writeUnsignedInt =
+org_apache_flex_utils_BinaryData.prototype.writeUnsignedInt =
     function(num) {
   var view;
 
@@ -120,7 +120,7 @@ org.apache.flex.utils.BinaryData.prototype.writeUnsignedInt =
  * @expose
  * @return {number} The byte that was read.
  */
-org.apache.flex.utils.BinaryData.prototype.readByte = function() {
+org_apache_flex_utils_BinaryData.prototype.readByte = function() {
   var view;
 
   view = new Int8Array(this.data_, this.position_, 1);
@@ -133,7 +133,7 @@ org.apache.flex.utils.BinaryData.prototype.readByte = function() {
  * @expose
  * @return {number} The 16-bit integer that was read.
  */
-org.apache.flex.utils.BinaryData.prototype.readShort = function() {
+org_apache_flex_utils_BinaryData.prototype.readShort = function() {
   var view;
 
   view = new Int16Array(this.data_, this.position_, 1);
@@ -146,7 +146,7 @@ org.apache.flex.utils.BinaryData.prototype.readShort = function() {
  * @expose
  * @return {number} The 32-bit integer that was read.
  */
-org.apache.flex.utils.BinaryData.prototype.readInteger = function() {
+org_apache_flex_utils_BinaryData.prototype.readInteger = function() {
   var view;
 
   view = new Int32Array(this.data_, this.position_, 1);
@@ -159,7 +159,7 @@ org.apache.flex.utils.BinaryData.prototype.readInteger = function() {
  * @expose
  * @return {number} The 32-bit unsigned integer that was read.
  */
-org.apache.flex.utils.BinaryData.prototype.readUnsignedInteger =
+org_apache_flex_utils_BinaryData.prototype.readUnsignedInteger =
     function() {
   var view;
 
@@ -173,7 +173,7 @@ org.apache.flex.utils.BinaryData.prototype.readUnsignedInteger =
  * @expose
  * @return {number} The offset to write to or read from.
  */
-org.apache.flex.utils.BinaryData.prototype.get_position = function() {
+org_apache_flex_utils_BinaryData.prototype.get_position = function() {
   return this.position_;
 };
 
@@ -182,7 +182,7 @@ org.apache.flex.utils.BinaryData.prototype.get_position = function() {
  * @expose
  * @param {number} value The offset to write to or read from.
  */
-org.apache.flex.utils.BinaryData.prototype.set_position = function(value) {
+org_apache_flex_utils_BinaryData.prototype.set_position = function(value) {
   this.position_ = value;
 };
 
@@ -191,7 +191,7 @@ org.apache.flex.utils.BinaryData.prototype.set_position = function(value) {
  * @expose
  * @return {number} The offset to write to or read from.
  */
-org.apache.flex.utils.BinaryData.prototype.get_length = function() {
+org_apache_flex_utils_BinaryData.prototype.get_length = function() {
   return this.data_.byteLength;
 };
 
@@ -200,7 +200,7 @@ org.apache.flex.utils.BinaryData.prototype.get_length = function() {
  * @expose
  * @return {number} The number of bytes that can still be read.
  */
-org.apache.flex.utils.BinaryData.prototype.get_bytesAvailable = function() {
+org_apache_flex_utils_BinaryData.prototype.get_bytesAvailable = function() {
   return this.data_.byteLength - this.position_;
 };
 
@@ -209,7 +209,7 @@ org.apache.flex.utils.BinaryData.prototype.get_bytesAvailable = function() {
  * @expose
  * @param {number} extra The number of bytes to add to the buffer.
  */
-org.apache.flex.utils.BinaryData.prototype.growBuffer = function(extra) {
+org_apache_flex_utils_BinaryData.prototype.growBuffer = function(extra) {
   var newBuffer, newView, view, i, n;
 
   if (this.position_ >= this.data_.byteLength)

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/utils/EffectTimer.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/utils/EffectTimer.js b/frameworks/js/FlexJS/src/org/apache/flex/utils/EffectTimer.js
index 1ed7592..79d9d68 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/utils/EffectTimer.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/utils/EffectTimer.js
@@ -12,22 +12,22 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.utils.EffectTimer');
+goog.provide('org_apache_flex_utils_EffectTimer');
 
-goog.require('org.apache.flex.core.IEffectTimer');
-goog.require('org.apache.flex.core.ValuesManager');
-goog.require('org.apache.flex.events.EventDispatcher');
-goog.require('org.apache.flex.events.ValueEvent');
+goog.require('org_apache_flex_core_IEffectTimer');
+goog.require('org_apache_flex_core_ValuesManager');
+goog.require('org_apache_flex_events_EventDispatcher');
+goog.require('org_apache_flex_events_ValueEvent');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.events.EventDispatcher}
+ * @extends {org_apache_flex_events_EventDispatcher}
  * @suppress {checkTypes}
  */
-org.apache.flex.utils.EffectTimer = function() {
-  org.apache.flex.utils.EffectTimer.base(this, 'constructor');
+org_apache_flex_utils_EffectTimer = function() {
+  org_apache_flex_utils_EffectTimer.base(this, 'constructor');
 
   /**
    * @protected
@@ -39,12 +39,12 @@ org.apache.flex.utils.EffectTimer = function() {
    * @protected
    * @type {number}
    */
-  this._delay = org.apache.flex.core.ValuesManager.valuesImpl.getValue(this,
+  this._delay = org_apache_flex_core_ValuesManager.valuesImpl.getValue(this,
                                                         'effectTimerInterval');
 
 };
-goog.inherits(org.apache.flex.utils.EffectTimer,
-    org.apache.flex.events.EventDispatcher);
+goog.inherits(org_apache_flex_utils_EffectTimer,
+    org_apache_flex_events_EventDispatcher);
 
 
 /**
@@ -52,17 +52,17 @@ goog.inherits(org.apache.flex.utils.EffectTimer,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.utils.EffectTimer.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_utils_EffectTimer.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'EffectTimer',
-               qName: 'org.apache.flex.utils.EffectTimer'}],
-        interfaces: [org.apache.flex.core.IEffectTimer] };
+               qName: 'org_apache_flex_utils_EffectTimer'}],
+        interfaces: [org_apache_flex_core_IEffectTimer] };
 
 
 /**
  * @expose
  * Stops the timer.
  */
-org.apache.flex.utils.EffectTimer.prototype.stop = function() {
+org_apache_flex_utils_EffectTimer.prototype.stop = function() {
   clearInterval(this.timerInterval);
   this.timerInterval = -1;
 };
@@ -73,7 +73,7 @@ org.apache.flex.utils.EffectTimer.prototype.stop = function() {
  * Starts the timer.
  * @return {number} The start time.
  */
-org.apache.flex.utils.EffectTimer.prototype.start = function() {
+org_apache_flex_utils_EffectTimer.prototype.start = function() {
   this.timerInterval =
       setInterval(goog.bind(this.timerHandler, this), this._delay);
   var d = new Date();
@@ -84,10 +84,10 @@ org.apache.flex.utils.EffectTimer.prototype.start = function() {
 /**
  * @protected
  */
-org.apache.flex.utils.EffectTimer.prototype.timerHandler =
+org_apache_flex_utils_EffectTimer.prototype.timerHandler =
     function() {
   var d = new Date();
-  this.dispatchEvent(new org.apache.flex.events.ValueEvent('update', d.getTime()));
+  this.dispatchEvent(new org_apache_flex_events_ValueEvent('update', d.getTime()));
 
 };
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/utils/Language.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/utils/Language.js b/frameworks/js/FlexJS/src/org/apache/flex/utils/Language.js
index e88f6a4..d697751 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/utils/Language.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/utils/Language.js
@@ -12,14 +12,14 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.utils.Language');
+goog.provide('org_apache_flex_utils_Language');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.utils.Language = function() {
+org_apache_flex_utils_Language = function() {
 };
 
 
@@ -28,9 +28,9 @@ org.apache.flex.utils.Language = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.utils.Language.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_utils_Language.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'Language',
-                qName: 'org.apache.flex.utils.Language'}] };
+                qName: 'org_apache_flex_utils_Language'}] };
 
 
 /**
@@ -46,12 +46,12 @@ org.apache.flex.utils.Language.prototype.FLEXJS_CLASS_INFO =
  * @return {?} Returns the lefthand operand if it is of the
  *             type of the righthand operand, otherwise null.
  */
-org.apache.flex.utils.Language.as = function(leftOperand, rightOperand, opt_coercion) {
+org_apache_flex_utils_Language.as = function(leftOperand, rightOperand, opt_coercion) {
   var error, itIs, message;
 
   opt_coercion = (opt_coercion !== undefined) ? opt_coercion : false;
 
-  itIs = org.apache.flex.utils.Language.is(leftOperand, rightOperand);
+  itIs = org_apache_flex_utils_Language.is(leftOperand, rightOperand);
 
   if (!itIs && opt_coercion) {
     message = 'Type Coercion failed';
@@ -74,7 +74,7 @@ org.apache.flex.utils.Language.as = function(leftOperand, rightOperand, opt_coer
  * @param {?} value The value to be cast.
  * @return {number}
  */
-org.apache.flex.utils.Language._int = function(value) {
+org_apache_flex_utils_Language._int = function(value) {
   return value >> 0;
 };
 
@@ -89,7 +89,7 @@ org.apache.flex.utils.Language._int = function(value) {
  *     binary operator in AS3.
  * @return {boolean}
  */
-org.apache.flex.utils.Language.is = function(leftOperand, rightOperand) {
+org_apache_flex_utils_Language.is = function(leftOperand, rightOperand) {
   var checkInterfaces, superClass;
 
   if (!leftOperand)
@@ -157,7 +157,7 @@ org.apache.flex.utils.Language.is = function(leftOperand, rightOperand) {
  * @expose
  * @param {string=} opt_value The message to be written to the console.
  */
-org.apache.flex.utils.Language.trace = function(opt_value) {
+org_apache_flex_utils_Language.trace = function(opt_value) {
   var theConsole;
 
   opt_value = (opt_value !== undefined) ? opt_value : '';
@@ -184,7 +184,7 @@ org.apache.flex.utils.Language.trace = function(opt_value) {
  * @param {?} value The value to be cast.
  * @return {number}
  */
-org.apache.flex.utils.Language.uint = function(value) {
+org_apache_flex_utils_Language.uint = function(value) {
   return value >>> 0;
 };
 
@@ -197,7 +197,7 @@ org.apache.flex.utils.Language.uint = function(value) {
  * @param {string} prop The name of a property.
  * @return {number}
  */
-org.apache.flex.utils.Language.preincrement = function(obj, prop) {
+org_apache_flex_utils_Language.preincrement = function(obj, prop) {
   var value = obj['get_' + prop]() + 1;
   obj['set_' + prop](value);
   return value;
@@ -212,7 +212,7 @@ org.apache.flex.utils.Language.preincrement = function(obj, prop) {
  * @param {string} prop The name of a property.
  * @return {number}
  */
-org.apache.flex.utils.Language.predecrement = function(obj, prop) {
+org_apache_flex_utils_Language.predecrement = function(obj, prop) {
   var value = obj['get_' + prop]() - 1;
   obj['set_' + prop](value);
   return value;
@@ -227,7 +227,7 @@ org.apache.flex.utils.Language.predecrement = function(obj, prop) {
  * @param {string} prop The name of a property.
  * @return {number}
  */
-org.apache.flex.utils.Language.postincrement = function(obj, prop) {
+org_apache_flex_utils_Language.postincrement = function(obj, prop) {
   var value = obj['get_' + prop]();
   obj['set_' + prop](value + 1);
   return value;
@@ -242,7 +242,7 @@ org.apache.flex.utils.Language.postincrement = function(obj, prop) {
  * @param {string} prop The name of a property.
  * @return {number}
  */
-org.apache.flex.utils.Language.postdecrement = function(obj, prop) {
+org_apache_flex_utils_Language.postdecrement = function(obj, prop) {
   var value = obj['get_' + prop]();
   obj['set_' + prop](value + 1);
   return value;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/utils/MXMLDataInterpreter.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/utils/MXMLDataInterpreter.js b/frameworks/js/FlexJS/src/org/apache/flex/utils/MXMLDataInterpreter.js
index edb40c3..95f95da 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/utils/MXMLDataInterpreter.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/utils/MXMLDataInterpreter.js
@@ -12,14 +12,14 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.utils.MXMLDataInterpreter');
+goog.provide('org_apache_flex_utils_MXMLDataInterpreter');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.utils.MXMLDataInterpreter = function() {
+org_apache_flex_utils_MXMLDataInterpreter = function() {
 };
 
 
@@ -28,9 +28,9 @@ org.apache.flex.utils.MXMLDataInterpreter = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.utils.MXMLDataInterpreter.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_utils_MXMLDataInterpreter.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'MXMLDataInterpreter',
-                qName: 'org.apache.flex.utils.MXMLDataInterpreter'}] };
+                qName: 'org_apache_flex_utils_MXMLDataInterpreter'}] };
 
 
 /**
@@ -38,7 +38,7 @@ org.apache.flex.utils.MXMLDataInterpreter.prototype.FLEXJS_CLASS_INFO =
  * @param {Array} data The data array.
  * @return {Object} The generated object.
  */
-org.apache.flex.utils.MXMLDataInterpreter.generateMXMLObject =
+org_apache_flex_utils_MXMLDataInterpreter.generateMXMLObject =
     function(document, data) {
   var assignComp, Cls, comp, generateMXMLArray, generateMXMLObject, i, id, j, m,
       name, simple, value;
@@ -48,12 +48,12 @@ org.apache.flex.utils.MXMLDataInterpreter.generateMXMLObject =
   comp = new Cls();
 
   generateMXMLArray =
-      org.apache.flex.utils.MXMLDataInterpreter.generateMXMLArray;
+      org_apache_flex_utils_MXMLDataInterpreter.generateMXMLArray;
   generateMXMLObject =
-      org.apache.flex.utils.MXMLDataInterpreter.generateMXMLObject;
+      org_apache_flex_utils_MXMLDataInterpreter.generateMXMLObject;
 
   if (comp.addBead)
-    org.apache.flex.utils.MXMLDataInterpreter.initializeStrandBasedObject(document, null, comp, data, i);
+    org_apache_flex_utils_MXMLDataInterpreter.initializeStrandBasedObject(document, null, comp, data, i);
   else {
     m = data[i++]; // num props
     for (j = 0; j < m; j++) {
@@ -109,7 +109,7 @@ org.apache.flex.utils.MXMLDataInterpreter.generateMXMLObject =
  * @param {Array} data The data array.
  * @return {Array} The generated array.
  */
-org.apache.flex.utils.MXMLDataInterpreter.generateMXMLArray =
+org_apache_flex_utils_MXMLDataInterpreter.generateMXMLArray =
     function(document, parent, data) {
   var comps = [];
 
@@ -119,7 +119,7 @@ org.apache.flex.utils.MXMLDataInterpreter.generateMXMLArray =
     var cls = data[i++];
     var comp = new cls();
 
-    i = org.apache.flex.utils.MXMLDataInterpreter.initializeStrandBasedObject(document, parent, comp, data, i);
+    i = org_apache_flex_utils_MXMLDataInterpreter.initializeStrandBasedObject(document, parent, comp, data, i);
 
     comps.push(comp);
   }
@@ -136,15 +136,15 @@ org.apache.flex.utils.MXMLDataInterpreter.generateMXMLArray =
  * @param {number} i The offset into data.
  * @return {number} The new offset into the data.
  */
-org.apache.flex.utils.MXMLDataInterpreter.initializeStrandBasedObject =
+org_apache_flex_utils_MXMLDataInterpreter.initializeStrandBasedObject =
     function(document, parent, comp, data, i) {
   var bead, beadOffset, beads, children, Cls, generateMXMLArray,
       generateMXMLObject, id, j, k, l, m, n, name, self, simple, value, dispatchBeadsAdded;
 
   generateMXMLArray =
-      org.apache.flex.utils.MXMLDataInterpreter.generateMXMLArray;
+      org_apache_flex_utils_MXMLDataInterpreter.generateMXMLArray;
   generateMXMLObject =
-      org.apache.flex.utils.MXMLDataInterpreter.generateMXMLObject;
+      org_apache_flex_utils_MXMLDataInterpreter.generateMXMLObject;
 
   id = null;
 
@@ -270,14 +270,14 @@ org.apache.flex.utils.MXMLDataInterpreter.initializeStrandBasedObject =
   if (children && comp['setMXMLDescriptor']) {
     comp['setMXMLDescriptor'](document, children);
   }
-  if (parent && org.apache.flex.utils.Language.is(comp,
-      org.apache.flex.core.IUIBase)) {
+  if (parent && org_apache_flex_utils_Language.is(comp,
+      org_apache_flex_core_IUIBase)) {
     parent.addElement(comp);
   }
 
   if (children) {
     if (!comp['setMXMLDescriptor']) {
-      self = org.apache.flex.utils.MXMLDataInterpreter;
+      self = org_apache_flex_utils_MXMLDataInterpreter;
       self.generateMXMLInstances(
             document, comp, children);
       if (typeof comp.childrenAdded === 'function')
@@ -311,10 +311,10 @@ org.apache.flex.utils.MXMLDataInterpreter.initializeStrandBasedObject =
  * @param {Object} parent The parent object.
  * @param {Array} data The data array.
  */
-org.apache.flex.utils.MXMLDataInterpreter.generateMXMLInstances =
+org_apache_flex_utils_MXMLDataInterpreter.generateMXMLInstances =
     function(document, parent, data) {
   if (data) {
-    org.apache.flex.utils.MXMLDataInterpreter.generateMXMLArray(
+    org_apache_flex_utils_MXMLDataInterpreter.generateMXMLArray(
         document, parent, data);
   }
 };
@@ -325,7 +325,7 @@ org.apache.flex.utils.MXMLDataInterpreter.generateMXMLInstances =
  * @param {Object} host The MXML object.
  * @param {Array} data The data array.
  */
-org.apache.flex.utils.MXMLDataInterpreter.generateMXMLProperties =
+org_apache_flex_utils_MXMLDataInterpreter.generateMXMLProperties =
     function(host, data) {
   var bead, beadOffset, beads, generateMXMLArray, generateMXMLObject, i, id, j,
       k, l, m, name, simple, value;
@@ -338,9 +338,9 @@ org.apache.flex.utils.MXMLDataInterpreter.generateMXMLProperties =
   id = null;
 
   generateMXMLArray =
-      org.apache.flex.utils.MXMLDataInterpreter.generateMXMLArray;
+      org_apache_flex_utils_MXMLDataInterpreter.generateMXMLArray;
   generateMXMLObject =
-      org.apache.flex.utils.MXMLDataInterpreter.generateMXMLObject;
+      org_apache_flex_utils_MXMLDataInterpreter.generateMXMLObject;
 
   m = data[i++]; // num props
   beadOffset = i + (m - 1) * 3;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/utils/MixinManager.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/utils/MixinManager.js b/frameworks/js/FlexJS/src/org/apache/flex/utils/MixinManager.js
index 445ddbe..875fbe6 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/utils/MixinManager.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/utils/MixinManager.js
@@ -12,17 +12,17 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.utils.MixinManager');
+goog.provide('org_apache_flex_utils_MixinManager');
 
 
 
 /**
  * @constructor
- * @implements {org.apache.flex.core.IBead}
+ * @implements {org_apache_flex_core_IBead}
  * Initialize mixins.
  * Compiler may not be generating list of mixins right now.
  */
-org.apache.flex.utils.MixinManager = function() {
+org_apache_flex_utils_MixinManager = function() {
 };
 
 
@@ -31,17 +31,17 @@ org.apache.flex.utils.MixinManager = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.utils.MixinManager.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_utils_MixinManager.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'MixinManager',
-                qName: 'org.apache.flex.utils.MixinManager'}],
-     interfaces: [org.apache.flex.core.IBead]};
+                qName: 'org_apache_flex_utils_MixinManager'}],
+     interfaces: [org_apache_flex_core_IBead]};
 
 
 /**
  * @expose
  * @param {Object} value The new host.
  */
-org.apache.flex.utils.MixinManager.prototype.set_strand =
+org_apache_flex_utils_MixinManager.prototype.set_strand =
 function(value) {
   this.strand_ = value;
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/utils/PointUtils.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/utils/PointUtils.js b/frameworks/js/FlexJS/src/org/apache/flex/utils/PointUtils.js
index 6c03884..0d6ea8d 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/utils/PointUtils.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/utils/PointUtils.js
@@ -12,16 +12,16 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.utils.PointUtils');
+goog.provide('org_apache_flex_utils_PointUtils');
 
-goog.require('org.apache.flex.geom.Point');
+goog.require('org_apache_flex_geom_Point');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.utils.PointUtils = function() {
+org_apache_flex_utils_PointUtils = function() {
 };
 
 
@@ -30,18 +30,18 @@ org.apache.flex.utils.PointUtils = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.utils.PointUtils.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_utils_PointUtils.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'PointUtils',
-                qName: 'org.apache.flex.utils.PointUtils' }] };
+                qName: 'org_apache_flex_utils_PointUtils' }] };
 
 
 /**
  * @expose
- * @param {org.apache.flex.geom.Point} point The Point to be converted.
+ * @param {org_apache_flex_geom_Point} point The Point to be converted.
  * @param {Object} local The object used as reference.
- * @return {org.apache.flex.geom.Point} The converted Point.
+ * @return {org_apache_flex_geom_Point} The converted Point.
  */
-org.apache.flex.utils.PointUtils.globalToLocal =
+org_apache_flex_utils_PointUtils.globalToLocal =
     function(point, local) {
   var x = point.x, y = point.y;
   var element = local.element;
@@ -57,17 +57,17 @@ org.apache.flex.utils.PointUtils.globalToLocal =
     }
   }
   while (element);
-  return new org.apache.flex.geom.Point(x, y);
+  return new org_apache_flex_geom_Point(x, y);
 };
 
 
 /**
  * @expose
- * @param {org.apache.flex.geom.Point} point The Point to be converted.
+ * @param {org_apache_flex_geom_Point} point The Point to be converted.
  * @param {Object} local The object used as reference.
- * @return {org.apache.flex.geom.Point} The converted Point.
+ * @return {org_apache_flex_geom_Point} The converted Point.
  */
-org.apache.flex.utils.PointUtils.localToGlobal =
+org_apache_flex_utils_PointUtils.localToGlobal =
     function(point, local) {
   var x = point.x, y = point.y;
   var element = local.element;
@@ -83,5 +83,5 @@ org.apache.flex.utils.PointUtils.localToGlobal =
     }
   }
   while (element);
-  return new org.apache.flex.geom.Point(x, y);
+  return new org_apache_flex_geom_Point(x, y);
 };


[07/12] git commit: [flex-asjs] [refs/heads/develop] - switching from org.apache.flex to org_apache_flex so GCC doesn't complain

Posted by ah...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/ViewBaseDataBinding.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/ViewBaseDataBinding.js b/frameworks/js/FlexJS/src/org/apache/flex/core/ViewBaseDataBinding.js
index e9c2be9..2380e40 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/ViewBaseDataBinding.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/ViewBaseDataBinding.js
@@ -12,21 +12,21 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.ViewBaseDataBinding');
+goog.provide('org_apache_flex_core_ViewBaseDataBinding');
 
-goog.require('org.apache.flex.binding.ConstantBinding');
-goog.require('org.apache.flex.binding.GenericBinding');
-goog.require('org.apache.flex.binding.PropertyWatcher');
-goog.require('org.apache.flex.binding.SimpleBinding');
-goog.require('org.apache.flex.events.Event');
-goog.require('org.apache.flex.events.ValueChangeEvent');
+goog.require('org_apache_flex_binding_ConstantBinding');
+goog.require('org_apache_flex_binding_GenericBinding');
+goog.require('org_apache_flex_binding_PropertyWatcher');
+goog.require('org_apache_flex_binding_SimpleBinding');
+goog.require('org_apache_flex_events_Event');
+goog.require('org_apache_flex_events_ValueChangeEvent');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.core.ViewBaseDataBinding = function() {
+org_apache_flex_core_ViewBaseDataBinding = function() {
 
   /**
    * @private
@@ -48,16 +48,16 @@ org.apache.flex.core.ViewBaseDataBinding = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.ViewBaseDataBinding.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_ViewBaseDataBinding.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ViewBaseDataBinding',
-                qName: 'org.apache.flex.core.ViewBaseDataBinding'}] };
+                qName: 'org_apache_flex_core_ViewBaseDataBinding'}] };
 
 
 /**
  * @expose
  * @param {Object} value The new host.
  */
-org.apache.flex.core.ViewBaseDataBinding.prototype.set_strand =
+org_apache_flex_core_ViewBaseDataBinding.prototype.set_strand =
     function(value) {
   if (this.strand_ !== value) {
     this.strand_ = value;
@@ -71,7 +71,7 @@ org.apache.flex.core.ViewBaseDataBinding.prototype.set_strand =
  * @protected
  * @param {Object} event The event.
  */
-org.apache.flex.core.ViewBaseDataBinding.prototype.initCompleteHandler =
+org_apache_flex_core_ViewBaseDataBinding.prototype.initCompleteHandler =
     function(event) {
 
   var prop;
@@ -112,7 +112,7 @@ org.apache.flex.core.ViewBaseDataBinding.prototype.initCompleteHandler =
           fieldWatcher = childMap[binding.source[1]];
           if (typeof(fieldWatcher.eventNames) == 'string')
           {
-            sb = new org.apache.flex.binding.SimpleBinding();
+            sb = new org_apache_flex_binding_SimpleBinding();
             sb.destinationPropertyName =
                 binding.destination[1];
             sb.eventName = fieldWatcher.eventNames;
@@ -141,7 +141,7 @@ org.apache.flex.core.ViewBaseDataBinding.prototype.initCompleteHandler =
           else if (fieldWatcher.eventNames == null)
           {
             var cb;
-            cb = org.apache.flex.binding.ConstantBinding;
+            cb = org_apache_flex_binding_ConstantBinding;
             cb = new cb();
             cb.destinationPropertyName =
                 binding.destination[1];
@@ -174,7 +174,7 @@ org.apache.flex.core.ViewBaseDataBinding.prototype.initCompleteHandler =
       fieldWatcher = watchers.watcherMap[binding.source];
       if (typeof(fieldWatcher.eventNames) == 'string')
       {
-        sb = new org.apache.flex.binding.SimpleBinding();
+        sb = new org_apache_flex_binding_SimpleBinding();
         sb.destinationPropertyName = binding.destination[1];
         sb.eventName = fieldWatcher.eventNames;
         sb.sourcePropertyName = binding.source;
@@ -211,9 +211,9 @@ org.apache.flex.core.ViewBaseDataBinding.prototype.initCompleteHandler =
  * @param {number} index The offset in the Binding database.
  * @param {Object} watchers The database of Watchers.
  */
-org.apache.flex.core.ViewBaseDataBinding.prototype.makeGenericBinding =
+org_apache_flex_core_ViewBaseDataBinding.prototype.makeGenericBinding =
     function(binding, index, watchers) {
-  var gb = new org.apache.flex.binding.GenericBinding();
+  var gb = new org_apache_flex_binding_GenericBinding();
   gb.setDocument(this.strand_);
   gb.destinationData = binding.destination;
   gb.destinationFunction = binding.destFunc;
@@ -229,7 +229,7 @@ org.apache.flex.core.ViewBaseDataBinding.prototype.makeGenericBinding =
  * @param {Object} watchers The array of Watchers.
  * @param {Object} parentWatcher The parent Watcher or null if top.
  */
-org.apache.flex.core.ViewBaseDataBinding.prototype.setupWatchers =
+org_apache_flex_core_ViewBaseDataBinding.prototype.setupWatchers =
     function(gb, index, watchers, parentWatcher) {
   var i, n;
   n = watchers.length;
@@ -243,7 +243,7 @@ org.apache.flex.core.ViewBaseDataBinding.prototype.setupWatchers =
       {
         case 'property':
           {
-            var pw = new org.apache.flex.binding.PropertyWatcher(
+            var pw = new org_apache_flex_binding_PropertyWatcher(
                 this,
                 watcher.propertyName,
                 watcher.eventNames,
@@ -275,7 +275,7 @@ org.apache.flex.core.ViewBaseDataBinding.prototype.setupWatchers =
  * @param {Object} bindingData The watcher data to decode.
  * @return {Object} The watcher tree structure.
  */
-org.apache.flex.core.ViewBaseDataBinding.prototype.decodeWatcher =
+org_apache_flex_core_ViewBaseDataBinding.prototype.decodeWatcher =
     function(bindingData) {
   var watcherMap = {};
   var watchers = [];
@@ -342,9 +342,9 @@ org.apache.flex.core.ViewBaseDataBinding.prototype.decodeWatcher =
 
 /**
  * @protected
- * @param {org.apache.flex.events.ValueChangeEvent} event The event.
+ * @param {org_apache_flex_events_ValueChangeEvent} event The event.
  */
-org.apache.flex.core.ViewBaseDataBinding.prototype.deferredBindingsHandler =
+org_apache_flex_core_ViewBaseDataBinding.prototype.deferredBindingsHandler =
     function(event) {
   var p;
   var destination;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Circle.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Circle.js b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Circle.js
index 205b9a9..7a7b47f 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Circle.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Circle.js
@@ -12,18 +12,18 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.graphics.Circle');
+goog.provide('org_apache_flex_core_graphics_Circle');
 
-goog.require('org.apache.flex.core.graphics.GraphicShape');
+goog.require('org_apache_flex_core_graphics_GraphicShape');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.graphics.GraphicShape}
+ * @extends {org_apache_flex_core_graphics_GraphicShape}
  */
-org.apache.flex.core.graphics.Circle = function() {
-  org.apache.flex.core.graphics.Circle.base(this, 'constructor');
+org_apache_flex_core_graphics_Circle = function() {
+  org_apache_flex_core_graphics_Circle.base(this, 'constructor');
 
    /**
    * @private
@@ -31,8 +31,8 @@ org.apache.flex.core.graphics.Circle = function() {
    */
   this.radius_ = 0;
 };
-goog.inherits(org.apache.flex.core.graphics.Circle,
-    org.apache.flex.core.graphics.GraphicShape);
+goog.inherits(org_apache_flex_core_graphics_Circle,
+    org_apache_flex_core_graphics_GraphicShape);
 
 
 /**
@@ -40,16 +40,16 @@ goog.inherits(org.apache.flex.core.graphics.Circle,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.graphics.Circle.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_graphics_Circle.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'Circle',
-                qName: 'org.apache.flex.core.graphics.Circle' }] };
+                qName: 'org_apache_flex_core_graphics_Circle' }] };
 
 
 /**
  * @expose
  * @param {number} v The radius of the circle.
  */
-org.apache.flex.core.graphics.Circle.prototype.set_radius = function(v) {
+org_apache_flex_core_graphics_Circle.prototype.set_radius = function(v) {
   this.radius_ = v;
 };
 
@@ -58,7 +58,7 @@ org.apache.flex.core.graphics.Circle.prototype.set_radius = function(v) {
  * @expose
  * @return {number} The radius of the circle.
  */
-org.apache.flex.core.graphics.Circle.prototype.get_radius = function() {
+org_apache_flex_core_graphics_Circle.prototype.get_radius = function() {
   return this.radius_;
 };
 
@@ -69,7 +69,7 @@ org.apache.flex.core.graphics.Circle.prototype.get_radius = function() {
  * @param {number} y The y location of the center of the circle.
  * @param {number} radius The radius of the circle.
  */
-org.apache.flex.core.graphics.Circle.prototype.drawCircle = function(x, y, radius) {
+org_apache_flex_core_graphics_Circle.prototype.drawCircle = function(x, y, radius) {
     var style = this.getStyleStr();
     var circle = document.createElementNS('http://www.w3.org/2000/svg', 'ellipse');
     circle.flexjs_wrapper = this;
@@ -98,6 +98,6 @@ org.apache.flex.core.graphics.Circle.prototype.drawCircle = function(x, y, radiu
 /**
  * @override
  */
-org.apache.flex.core.graphics.Circle.prototype.draw = function() {
+org_apache_flex_core_graphics_Circle.prototype.draw = function() {
     this.drawCircle(this.get_x(), this.get_y(), this.get_radius());
-  };
\ No newline at end of file
+  };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Ellipse.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Ellipse.js b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Ellipse.js
index 9ce333a..1cd5d18 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Ellipse.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Ellipse.js
@@ -12,22 +12,22 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.graphics.Ellipse');
+goog.provide('org_apache_flex_core_graphics_Ellipse');
 
-goog.require('org.apache.flex.core.graphics.GraphicShape');
+goog.require('org_apache_flex_core_graphics_GraphicShape');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.graphics.GraphicShape}
+ * @extends {org_apache_flex_core_graphics_GraphicShape}
  */
-org.apache.flex.core.graphics.Ellipse = function() {
-  org.apache.flex.core.graphics.Ellipse.base(this, 'constructor');
+org_apache_flex_core_graphics_Ellipse = function() {
+  org_apache_flex_core_graphics_Ellipse.base(this, 'constructor');
 
 };
-goog.inherits(org.apache.flex.core.graphics.Ellipse,
-    org.apache.flex.core.graphics.GraphicShape);
+goog.inherits(org_apache_flex_core_graphics_Ellipse,
+    org_apache_flex_core_graphics_GraphicShape);
 
 
 /**
@@ -35,9 +35,9 @@ goog.inherits(org.apache.flex.core.graphics.Ellipse,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.graphics.Ellipse.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_graphics_Ellipse.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'Ellipse',
-                qName: 'org.apache.flex.core.graphics.Ellipse' }] };
+                qName: 'org_apache_flex_core_graphics_Ellipse' }] };
 
 
 /**
@@ -47,7 +47,7 @@ org.apache.flex.core.graphics.Ellipse.prototype.FLEXJS_CLASS_INFO =
  * @param {number} width The width of the ellipse.
  * @param {number} height The height of the ellipse.
  */
-org.apache.flex.core.graphics.Ellipse.prototype.drawEllipse = function(x, y, width, height) {
+org_apache_flex_core_graphics_Ellipse.prototype.drawEllipse = function(x, y, width, height) {
     var style = this.getStyleStr();
     var ellipse = document.createElementNS('http://www.w3.org/2000/svg', 'ellipse');
     ellipse.flexjs_wrapper = this;
@@ -75,6 +75,6 @@ org.apache.flex.core.graphics.Ellipse.prototype.drawEllipse = function(x, y, wid
 /**
  * @override
 */
-org.apache.flex.core.graphics.Ellipse.prototype.draw = function() {
+org_apache_flex_core_graphics_Ellipse.prototype.draw = function() {
     this.drawEllipse(this.get_x(), this.get_y(), this.get_width(), this.get_height());
-  };
\ No newline at end of file
+  };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GradientBase.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GradientBase.js b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GradientBase.js
index 66873b6..5d7ce32 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GradientBase.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GradientBase.js
@@ -13,21 +13,21 @@
  */
 
 /**
- * org.apache.flex.core.graphics.GradientBase
+ * org_apache_flex_core_graphics_GradientBase
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.graphics.GradientBase');
+goog.provide('org_apache_flex_core_graphics_GradientBase');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.core.graphics.GradientBase = function() {
+org_apache_flex_core_graphics_GradientBase = function() {
 };
 
 
@@ -35,40 +35,40 @@ org.apache.flex.core.graphics.GradientBase = function() {
  * @protected
  * @type {Array}
  */
-org.apache.flex.core.graphics.GradientBase.prototype.colors = [];
+org_apache_flex_core_graphics_GradientBase.prototype.colors = [];
 
 
 /**
  * @protected
  * @type {Array}
  */
-org.apache.flex.core.graphics.GradientBase.prototype.ratios = [];
+org_apache_flex_core_graphics_GradientBase.prototype.ratios = [];
 
 
 /**
  * @protected
  * @type {Array}
  */
-org.apache.flex.core.graphics.GradientBase.prototype.alphas = [];
+org_apache_flex_core_graphics_GradientBase.prototype.alphas = [];
 
 
 /**
  * @type {Array}
  */
-org.apache.flex.core.graphics.GradientBase.prototype._entries = [];
+org_apache_flex_core_graphics_GradientBase.prototype._entries = [];
 
 
 /**
  * @type {number}
  */
-org.apache.flex.core.graphics.GradientBase.prototype._rotation = 0.0;
+org_apache_flex_core_graphics_GradientBase.prototype._rotation = 0.0;
 
 
 /**
  * @expose
  * @return {Array}
  */
-org.apache.flex.core.graphics.GradientBase.prototype.get_entries = function() {
+org_apache_flex_core_graphics_GradientBase.prototype.get_entries = function() {
   return this._entries;
 };
 
@@ -77,7 +77,7 @@ org.apache.flex.core.graphics.GradientBase.prototype.get_entries = function() {
  * @expose
  * @param {Array} value
  */
-org.apache.flex.core.graphics.GradientBase.prototype.set_entries = function(value) {
+org_apache_flex_core_graphics_GradientBase.prototype.set_entries = function(value) {
   this._entries = value;
 };
 
@@ -91,7 +91,7 @@ org.apache.flex.core.graphics.GradientBase.prototype.set_entries = function(valu
  *  to occur from right to left, rather than from left to right.
  * @return {number}
  */
-org.apache.flex.core.graphics.GradientBase.prototype.get_rotation = function() {
+org_apache_flex_core_graphics_GradientBase.prototype.get_rotation = function() {
   return this._rotation;
 };
 
@@ -100,7 +100,7 @@ org.apache.flex.core.graphics.GradientBase.prototype.get_rotation = function() {
  * @expose
  * @param {number} value
  */
-org.apache.flex.core.graphics.GradientBase.prototype.set_rotation = function(value) {
+org_apache_flex_core_graphics_GradientBase.prototype.set_rotation = function(value) {
   this._rotation = value;
 };
 
@@ -108,14 +108,14 @@ org.apache.flex.core.graphics.GradientBase.prototype.set_rotation = function(val
 /**
  * @type {number}
  */
-org.apache.flex.core.graphics.GradientBase.prototype._x = 0;
+org_apache_flex_core_graphics_GradientBase.prototype._x = 0;
 
 
 /**
  * @expose
  * @return {number}
  */
-org.apache.flex.core.graphics.GradientBase.prototype.get_x = function() {
+org_apache_flex_core_graphics_GradientBase.prototype.get_x = function() {
   return this._x;
 };
 
@@ -124,7 +124,7 @@ org.apache.flex.core.graphics.GradientBase.prototype.get_x = function() {
  * @expose
  * @param {number} value
  */
-org.apache.flex.core.graphics.GradientBase.prototype.set_x = function(value) {
+org_apache_flex_core_graphics_GradientBase.prototype.set_x = function(value) {
   this._x = value;
 };
 
@@ -132,14 +132,14 @@ org.apache.flex.core.graphics.GradientBase.prototype.set_x = function(value) {
 /**
  * @type {number}
  */
-org.apache.flex.core.graphics.GradientBase.prototype._y = 0;
+org_apache_flex_core_graphics_GradientBase.prototype._y = 0;
 
 
 /**
  * @expose
  * @param {number} value
  */
-org.apache.flex.core.graphics.GradientBase.prototype.set_y = function(value) {
+org_apache_flex_core_graphics_GradientBase.prototype.set_y = function(value) {
   this._y = value;
 };
 
@@ -148,7 +148,7 @@ org.apache.flex.core.graphics.GradientBase.prototype.set_y = function(value) {
  * @expose
  * @return {number}
  */
-org.apache.flex.core.graphics.GradientBase.prototype.get_y = function() {
+org_apache_flex_core_graphics_GradientBase.prototype.get_y = function() {
   return this._y;
 };
 
@@ -157,7 +157,7 @@ org.apache.flex.core.graphics.GradientBase.prototype.get_y = function() {
  * @expose
  * @return {string} A new gradient id value.
  */
-org.apache.flex.core.graphics.GradientBase.prototype.get_newId = function() {
+org_apache_flex_core_graphics_GradientBase.prototype.get_newId = function() {
   return 'gradient' + String(Math.floor((Math.random() * 100000) + 1));
 };
 
@@ -167,6 +167,6 @@ org.apache.flex.core.graphics.GradientBase.prototype.get_newId = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.graphics.GradientBase.prototype.FLEXJS_CLASS_INFO = {
-    names: [{ name: 'GradientBase', qName: 'org.apache.flex.core.graphics.GradientBase'}]
+org_apache_flex_core_graphics_GradientBase.prototype.FLEXJS_CLASS_INFO = {
+    names: [{ name: 'GradientBase', qName: 'org_apache_flex_core_graphics_GradientBase'}]
   };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GradientEntry.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GradientEntry.js b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GradientEntry.js
index 68cd762..df85483 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GradientEntry.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GradientEntry.js
@@ -13,14 +13,14 @@
  */
 
 /**
- * org.apache.flex.core.graphics.GradientEntry
+ * org_apache_flex_core_graphics_GradientEntry
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.graphics.GradientEntry');
+goog.provide('org_apache_flex_core_graphics_GradientEntry');
 
 
 
@@ -30,7 +30,7 @@ goog.provide('org.apache.flex.core.graphics.GradientEntry');
  * @param {number} color
  * @param {number} ratio
  */
-org.apache.flex.core.graphics.GradientEntry = function(alpha, color, ratio) {
+org_apache_flex_core_graphics_GradientEntry = function(alpha, color, ratio) {
   this._alpha = alpha;
   this._color = color;
   this._ratio = ratio;
@@ -40,26 +40,26 @@ org.apache.flex.core.graphics.GradientEntry = function(alpha, color, ratio) {
 /**
  * @type {number}
  */
-org.apache.flex.core.graphics.GradientEntry.prototype._alpha = 1.0;
+org_apache_flex_core_graphics_GradientEntry.prototype._alpha = 1.0;
 
 
 /**
  * @type {number}
  */
-org.apache.flex.core.graphics.GradientEntry.prototype._color = 0x000000;
+org_apache_flex_core_graphics_GradientEntry.prototype._color = 0x000000;
 
 
 /**
  * @type {number}
  */
-org.apache.flex.core.graphics.GradientEntry.prototype._ratio = 0x000000;
+org_apache_flex_core_graphics_GradientEntry.prototype._ratio = 0x000000;
 
 
 /**
  * @expose
  * @return {number}
  */
-org.apache.flex.core.graphics.GradientEntry.prototype.get_alpha = function() {
+org_apache_flex_core_graphics_GradientEntry.prototype.get_alpha = function() {
   return this._alpha;
 };
 
@@ -68,7 +68,7 @@ org.apache.flex.core.graphics.GradientEntry.prototype.get_alpha = function() {
  * @expose
  * @param {number} value
  */
-org.apache.flex.core.graphics.GradientEntry.prototype.set_alpha = function(value) {
+org_apache_flex_core_graphics_GradientEntry.prototype.set_alpha = function(value) {
   var /** @type {number} */ oldValue = this._alpha;
   if (value != oldValue) {
     this._alpha = value;
@@ -80,7 +80,7 @@ org.apache.flex.core.graphics.GradientEntry.prototype.set_alpha = function(value
  * @expose
  * @return {number}
  */
-org.apache.flex.core.graphics.GradientEntry.prototype.get_color = function() {
+org_apache_flex_core_graphics_GradientEntry.prototype.get_color = function() {
   return this._color;
 };
 
@@ -89,7 +89,7 @@ org.apache.flex.core.graphics.GradientEntry.prototype.get_color = function() {
  * @expose
  * @param {number} value
  */
-org.apache.flex.core.graphics.GradientEntry.prototype.set_color = function(value) {
+org_apache_flex_core_graphics_GradientEntry.prototype.set_color = function(value) {
   var /** @type {number} */ oldValue = this._color;
   if (value != oldValue) {
     this._color = value;
@@ -101,7 +101,7 @@ org.apache.flex.core.graphics.GradientEntry.prototype.set_color = function(value
  * @expose
  * @return {number}
  */
-org.apache.flex.core.graphics.GradientEntry.prototype.get_ratio = function() {
+org_apache_flex_core_graphics_GradientEntry.prototype.get_ratio = function() {
   return this._ratio;
 };
 
@@ -110,25 +110,25 @@ org.apache.flex.core.graphics.GradientEntry.prototype.get_ratio = function() {
  * @expose
  * @param {number} value
  */
-org.apache.flex.core.graphics.GradientEntry.prototype.set_ratio = function(value) {
+org_apache_flex_core_graphics_GradientEntry.prototype.set_ratio = function(value) {
   this._ratio = value;
 };
 
 
 /**
  * @expose
- * @param {org.apache.flex.core.graphics.GraphicShape} s
+ * @param {org_apache_flex_core_graphics_GraphicShape} s
  */
-org.apache.flex.core.graphics.GradientEntry.prototype.begin = function(s) {
+org_apache_flex_core_graphics_GradientEntry.prototype.begin = function(s) {
   s.get_graphics().beginFill(this.get_color(), this.get_alpha());
 };
 
 
 /**
  * @expose
- * @param {org.apache.flex.core.graphics.GraphicShape} s
+ * @param {org_apache_flex_core_graphics_GraphicShape} s
  */
-org.apache.flex.core.graphics.GradientEntry.prototype.end = function(s) {
+org_apache_flex_core_graphics_GradientEntry.prototype.end = function(s) {
   s.get_graphics().endFill();
 };
 
@@ -138,6 +138,6 @@ org.apache.flex.core.graphics.GradientEntry.prototype.end = function(s) {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.graphics.GradientEntry.prototype.FLEXJS_CLASS_INFO = {
-    names: [{ name: 'GradientEntry', qName: 'org.apache.flex.core.graphics.GradientEntry'}]
+org_apache_flex_core_graphics_GradientEntry.prototype.FLEXJS_CLASS_INFO = {
+    names: [{ name: 'GradientEntry', qName: 'org_apache_flex_core_graphics_GradientEntry'}]
   };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GraphicShape.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GraphicShape.js b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GraphicShape.js
index 2707d80..fd4526f 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GraphicShape.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GraphicShape.js
@@ -12,30 +12,30 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.graphics.GraphicShape');
-goog.require('org.apache.flex.core.UIBase');
-goog.require('org.apache.flex.core.graphics.SolidColor');
-goog.require('org.apache.flex.core.graphics.SolidColorStroke');
+goog.provide('org_apache_flex_core_graphics_GraphicShape');
+goog.require('org_apache_flex_core_UIBase');
+goog.require('org_apache_flex_core_graphics_SolidColor');
+goog.require('org_apache_flex_core_graphics_SolidColorStroke');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.UIBase}
+ * @extends {org_apache_flex_core_UIBase}
  */
-org.apache.flex.core.graphics.GraphicShape = function() {
+org_apache_flex_core_graphics_GraphicShape = function() {
 
-  org.apache.flex.core.graphics.GraphicShape.base(this, 'constructor');
+  org_apache_flex_core_graphics_GraphicShape.base(this, 'constructor');
 
   /**
    * @private
-   * @type {org.apache.flex.core.graphics.IFill}
+   * @type {org_apache_flex_core_graphics_IFill}
    */
   this.fill_ = null;
 
   /**
    * @private
-   * @type {org.apache.flex.core.graphics.IStroke}
+   * @type {org_apache_flex_core_graphics_IStroke}
    */
   this.stroke_ = null;
 
@@ -74,8 +74,8 @@ org.apache.flex.core.graphics.GraphicShape = function() {
   this.element.offsetParent = null;
   this.positioner = this.element;
 };
-goog.inherits(org.apache.flex.core.graphics.GraphicShape,
-    org.apache.flex.core.UIBase);
+goog.inherits(org_apache_flex_core_graphics_GraphicShape,
+    org_apache_flex_core_UIBase);
 
 
 /**
@@ -83,42 +83,42 @@ goog.inherits(org.apache.flex.core.graphics.GraphicShape,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.graphics.GraphicShape.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_graphics_GraphicShape.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'GraphicShape',
-                qName: 'org.apache.flex.core.graphics.GraphicShape' }] };
+                qName: 'org_apache_flex_core_graphics_GraphicShape' }] };
 
 
 /**
  * @expose
- * @return {org.apache.flex.core.graphics.IFill} The fill object.
+ * @return {org_apache_flex_core_graphics_IFill} The fill object.
  */
-org.apache.flex.core.graphics.GraphicShape.prototype.get_fill = function() {
+org_apache_flex_core_graphics_GraphicShape.prototype.get_fill = function() {
   return this.fill_;
 };
 
 
 /**
- * @param {org.apache.flex.core.graphics.IFill} value The fill object.
+ * @param {org_apache_flex_core_graphics_IFill} value The fill object.
  */
-org.apache.flex.core.graphics.GraphicShape.prototype.set_fill = function(value) {
+org_apache_flex_core_graphics_GraphicShape.prototype.set_fill = function(value) {
   this.fill_ = value;
 };
 
 
 /**
  * @expose
- * @return {org.apache.flex.core.graphics.IStroke} The stroke object.
+ * @return {org_apache_flex_core_graphics_IStroke} The stroke object.
  */
-org.apache.flex.core.graphics.GraphicShape.prototype.get_stroke = function() {
+org_apache_flex_core_graphics_GraphicShape.prototype.get_stroke = function() {
   return this.stroke_;
 };
 
 
 /**
  * @expose
- * @param {org.apache.flex.core.graphics.IStroke} value The stroke object.
+ * @param {org_apache_flex_core_graphics_IStroke} value The stroke object.
  */
-org.apache.flex.core.graphics.GraphicShape.prototype.set_stroke = function(value) {
+org_apache_flex_core_graphics_GraphicShape.prototype.set_stroke = function(value) {
   this.stroke_ = value;
 };
 
@@ -126,7 +126,7 @@ org.apache.flex.core.graphics.GraphicShape.prototype.set_stroke = function(value
 /**
  *
  */
-org.apache.flex.core.graphics.GraphicShape.prototype.addedToParent = function() {
+org_apache_flex_core_graphics_GraphicShape.prototype.addedToParent = function() {
   this.draw();
   this.element.style.overflow = 'visible';
   /*
@@ -141,7 +141,7 @@ org.apache.flex.core.graphics.GraphicShape.prototype.addedToParent = function()
 /**
  * This is where the drawing methods get called from.
  */
-org.apache.flex.core.graphics.GraphicShape.prototype.draw = function() {
+org_apache_flex_core_graphics_GraphicShape.prototype.draw = function() {
   //Overwrite in subclass
 };
 
@@ -150,7 +150,7 @@ org.apache.flex.core.graphics.GraphicShape.prototype.draw = function() {
  * @expose
  * @return {string} The style attribute.
  */
-org.apache.flex.core.graphics.GraphicShape.prototype.getStyleStr = function() {
+org_apache_flex_core_graphics_GraphicShape.prototype.getStyleStr = function() {
   var fillStr;
   if (this.get_fill())
   {
@@ -182,7 +182,7 @@ org.apache.flex.core.graphics.GraphicShape.prototype.getStyleStr = function() {
  * @param {number} y Y position.
  * @param {Object} bbox The bounding box of the svg element.
  */
-org.apache.flex.core.graphics.GraphicShape.prototype.resize = function(x, y, bbox) {
+org_apache_flex_core_graphics_GraphicShape.prototype.resize = function(x, y, bbox) {
   var width = Math.max(this.get_width(), bbox.width);
   var height = Math.max(this.get_height(), bbox.height);
 
@@ -203,7 +203,7 @@ org.apache.flex.core.graphics.GraphicShape.prototype.resize = function(x, y, bbo
  * @param {number} xOffset offset from x position.
  * @param {number} yOffset offset from y position.
  */
-org.apache.flex.core.graphics.GraphicShape.prototype.setPosition = function(x, y, xOffset, yOffset) {
+org_apache_flex_core_graphics_GraphicShape.prototype.setPosition = function(x, y, xOffset, yOffset) {
   this.x_ = x;
   this.y_ = y;
   this.xOffset_ = xOffset;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GraphicsContainer.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GraphicsContainer.js b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GraphicsContainer.js
index c6d7d30..7db0225 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GraphicsContainer.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/GraphicsContainer.js
@@ -12,20 +12,20 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.graphics.GraphicsContainer');
+goog.provide('org_apache_flex_core_graphics_GraphicsContainer');
 
-goog.require('org.apache.flex.core.graphics.GraphicShape');
+goog.require('org_apache_flex_core_graphics_GraphicShape');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.graphics.GraphicShape}
+ * @extends {org_apache_flex_core_graphics_GraphicShape}
  */
-org.apache.flex.core.graphics.GraphicsContainer = function() {
-  org.apache.flex.core.graphics.GraphicsContainer.base(this, 'constructor');
+org_apache_flex_core_graphics_GraphicsContainer = function() {
+  org_apache_flex_core_graphics_GraphicsContainer.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.core.graphics.GraphicsContainer, org.apache.flex.core.graphics.GraphicShape);
+goog.inherits(org_apache_flex_core_graphics_GraphicsContainer, org_apache_flex_core_graphics_GraphicShape);
 
 
 /**
@@ -33,16 +33,16 @@ goog.inherits(org.apache.flex.core.graphics.GraphicsContainer, org.apache.flex.c
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.graphics.GraphicsContainer.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_graphics_GraphicsContainer.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'GraphicsContainer',
-      qName: 'org.apache.flex.core.graphics.GraphicsContainer'}] };
+      qName: 'org_apache_flex_core_graphics_GraphicsContainer'}] };
 
 
 /**
  * @expose
  * @return {number} The number of child elements.
  */
-org.apache.flex.core.graphics.GraphicsContainer.prototype.get_numChildren = function() {
+org_apache_flex_core_graphics_GraphicsContainer.prototype.get_numChildren = function() {
     return this.internalChildren().length;
   };
 
@@ -50,7 +50,7 @@ org.apache.flex.core.graphics.GraphicsContainer.prototype.get_numChildren = func
 /**
  * @expose
  */
-org.apache.flex.core.graphics.GraphicsContainer.prototype.removeAllElements = function() {
+org_apache_flex_core_graphics_GraphicsContainer.prototype.removeAllElements = function() {
   var svg = this.element;
   while (svg.lastChild) {
     svg.removeChild(svg.lastChild);
@@ -61,8 +61,8 @@ org.apache.flex.core.graphics.GraphicsContainer.prototype.removeAllElements = fu
 /**
  * @override
  */
-org.apache.flex.core.graphics.GraphicsContainer.prototype.set_width = function(value) {
-  org.apache.flex.core.graphics.GraphicsContainer.base(this, 'set_width', value);
+org_apache_flex_core_graphics_GraphicsContainer.prototype.set_width = function(value) {
+  org_apache_flex_core_graphics_GraphicsContainer.base(this, 'set_width', value);
   this.element.setAttribute('width', String(value) + 'px');
   this.element.style.width = String(value) + 'px';
 };
@@ -71,8 +71,8 @@ org.apache.flex.core.graphics.GraphicsContainer.prototype.set_width = function(v
 /**
  * @override
  */
-org.apache.flex.core.graphics.GraphicsContainer.prototype.set_height = function(value) {
-  org.apache.flex.core.graphics.GraphicsContainer.base(this, 'set_height', value);
+org_apache_flex_core_graphics_GraphicsContainer.prototype.set_height = function(value) {
+  org_apache_flex_core_graphics_GraphicsContainer.base(this, 'set_height', value);
   this.element.setAttribute('height', String(value) + 'px');
   this.element.style.height = String(value) + 'px';
 };
@@ -81,8 +81,8 @@ org.apache.flex.core.graphics.GraphicsContainer.prototype.set_height = function(
 /**
  * @override
  */
-org.apache.flex.core.graphics.GraphicsContainer.prototype.set_x = function(value) {
-  org.apache.flex.core.graphics.GraphicsContainer.base(this, 'set_x', value);
+org_apache_flex_core_graphics_GraphicsContainer.prototype.set_x = function(value) {
+  org_apache_flex_core_graphics_GraphicsContainer.base(this, 'set_x', value);
   this.element.setAttribute('x', String(value) + 'px');
   this.element.style.position = 'absolute';
   this.element.style.left = String(value) + 'px';
@@ -93,8 +93,8 @@ org.apache.flex.core.graphics.GraphicsContainer.prototype.set_x = function(value
 /**
  * @override
  */
-org.apache.flex.core.graphics.GraphicsContainer.prototype.set_y = function(value) {
-  org.apache.flex.core.graphics.GraphicsContainer.base(this, 'set_y', value);
+org_apache_flex_core_graphics_GraphicsContainer.prototype.set_y = function(value) {
+  org_apache_flex_core_graphics_GraphicsContainer.base(this, 'set_y', value);
   this.element.setAttribute('y', String(value) + 'px');
   this.element.style.position = 'absolute';
   this.element.style.top = String(value) + 'px';
@@ -109,7 +109,7 @@ org.apache.flex.core.graphics.GraphicsContainer.prototype.set_y = function(value
  * @param {number} width The width of the rectangle.
  * @param {number} height The height of the rectangle.
  */
-org.apache.flex.core.graphics.GraphicsContainer.prototype.drawRect = function(x, y, width, height) {
+org_apache_flex_core_graphics_GraphicsContainer.prototype.drawRect = function(x, y, width, height) {
   var style = this.getStyleStr();
   var rect = document.createElementNS('http://www.w3.org/2000/svg', 'rect');
   rect.flexjs_wrapper = this;
@@ -132,7 +132,7 @@ org.apache.flex.core.graphics.GraphicsContainer.prototype.drawRect = function(x,
  * @param {number} width The width of the ellipse.
  * @param {number} height The height of the ellipse.
  */
-org.apache.flex.core.graphics.GraphicsContainer.prototype.drawEllipse = function(x, y, width, height) {
+org_apache_flex_core_graphics_GraphicsContainer.prototype.drawEllipse = function(x, y, width, height) {
   var style = this.getStyleStr();
   var ellipse = document.createElementNS('http://www.w3.org/2000/svg', 'ellipse');
   ellipse.flexjs_wrapper = this;
@@ -154,7 +154,7 @@ org.apache.flex.core.graphics.GraphicsContainer.prototype.drawEllipse = function
  * @param {number} y The y location of the center of the circle.
  * @param {number} radius The radius of the circle.
  */
-org.apache.flex.core.graphics.GraphicsContainer.prototype.drawCircle = function(x, y, radius) {
+org_apache_flex_core_graphics_GraphicsContainer.prototype.drawCircle = function(x, y, radius) {
   var style = this.getStyleStr();
   var circle = document.createElementNS('http://www.w3.org/2000/svg', 'ellipse');
   circle.flexjs_wrapper = this;
@@ -180,7 +180,7 @@ org.apache.flex.core.graphics.GraphicsContainer.prototype.drawCircle = function(
  *  If the segment command is upper-case, the parameters are absolute values.
  *  If the segment command is lower-case, the parameters are relative values.
  */
-org.apache.flex.core.graphics.GraphicsContainer.prototype.drawPath = function(data) {
+org_apache_flex_core_graphics_GraphicsContainer.prototype.drawPath = function(data) {
   var style = this.getStyleStr();
   var path = document.createElementNS('http://www.w3.org/2000/svg', 'path');
   path.flexjs_wrapper = this;
@@ -199,7 +199,7 @@ org.apache.flex.core.graphics.GraphicsContainer.prototype.drawPath = function(da
  * @param {number} x The x position of the text.
  * @param {number} y The y position of the text.
  */
-org.apache.flex.core.graphics.GraphicsContainer.prototype.drawText = function(value, x, y) {
+org_apache_flex_core_graphics_GraphicsContainer.prototype.drawText = function(value, x, y) {
   var style = this.getStyleStr();
   var text = document.createElementNS('http://www.w3.org/2000/svg', 'text');
   text.flexjs_wrapper = this;
@@ -218,13 +218,13 @@ org.apache.flex.core.graphics.GraphicsContainer.prototype.drawText = function(va
 /**
  * @expose
  */
-org.apache.flex.core.graphics.GraphicsContainer.prototype.drawLine = function() {
+org_apache_flex_core_graphics_GraphicsContainer.prototype.drawLine = function() {
 };
 
 
 /**
  * @expose
  */
-org.apache.flex.core.graphics.GraphicsContainer.prototype.drawPolygon = function() {
+org_apache_flex_core_graphics_GraphicsContainer.prototype.drawPolygon = function() {
 };
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/IFill.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/IFill.js b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/IFill.js
index e4c9f9f..ac572d7 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/IFill.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/IFill.js
@@ -17,7 +17,7 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.graphics.IFill');
+goog.provide('org_apache_flex_core_graphics_IFill');
 
 
 
@@ -26,7 +26,7 @@ goog.provide('org.apache.flex.core.graphics.IFill');
  *
  * @interface
  */
-org.apache.flex.core.graphics.IFill = function() {
+org_apache_flex_core_graphics_IFill = function() {
 };
 
 
@@ -35,18 +35,18 @@ org.apache.flex.core.graphics.IFill = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.graphics.IFill.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_graphics_IFill.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'IFill',
-                qName: 'org.apache.flex.core.graphics.IFill' }] };
+                qName: 'org_apache_flex_core_graphics_IFill' }] };
 
 
 /**
  * addFillAttrib()
  *
  * @expose
- * @param {org.apache.flex.core.graphics.GraphicShape} value The GraphicShape object on which the fill must be added.
+ * @param {org_apache_flex_core_graphics_GraphicShape} value The GraphicShape object on which the fill must be added.
  * @return {string} The fill style attribute.
  */
-org.apache.flex.core.graphics.IFill.prototype.addFillAttrib =
+org_apache_flex_core_graphics_IFill.prototype.addFillAttrib =
     function(value) {};
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/IStroke.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/IStroke.js b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/IStroke.js
index 52acfb1..398b4e6 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/IStroke.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/IStroke.js
@@ -17,7 +17,7 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.graphics.IStroke');
+goog.provide('org_apache_flex_core_graphics_IStroke');
 
 
 
@@ -26,7 +26,7 @@ goog.provide('org.apache.flex.core.graphics.IStroke');
  *
  * @interface
  */
-org.apache.flex.core.graphics.IStroke = function() {
+org_apache_flex_core_graphics_IStroke = function() {
 };
 
 
@@ -35,18 +35,18 @@ org.apache.flex.core.graphics.IStroke = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.graphics.IStroke.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_graphics_IStroke.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'IStroke',
-                qName: 'org.apache.flex.core.graphics.IStroke' }] };
+                qName: 'org_apache_flex_core_graphics_IStroke' }] };
 
 
 /**
  * addStrokeAttrib()
  *
  * @expose
- * @param {org.apache.flex.core.graphics.GraphicShape} value The GraphicShape object on which the stroke must be added.
+ * @param {org_apache_flex_core_graphics_GraphicShape} value The GraphicShape object on which the stroke must be added.
  * @return {string} The stroke style attribute.
  */
-org.apache.flex.core.graphics.IStroke.prototype.addStrokeAttrib =
+org_apache_flex_core_graphics_IStroke.prototype.addStrokeAttrib =
     function(value) {};
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Line.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Line.js b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Line.js
index abfbd4e..9cb54a3 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Line.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Line.js
@@ -12,22 +12,22 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.graphics.Line');
+goog.provide('org_apache_flex_core_graphics_Line');
 
-goog.require('org.apache.flex.core.graphics.GraphicShape');
+goog.require('org_apache_flex_core_graphics_GraphicShape');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.graphics.GraphicShape}
+ * @extends {org_apache_flex_core_graphics_GraphicShape}
  */
-org.apache.flex.core.graphics.Line = function() {
-  org.apache.flex.core.graphics.Line.base(this, 'constructor');
+org_apache_flex_core_graphics_Line = function() {
+  org_apache_flex_core_graphics_Line.base(this, 'constructor');
 
 };
-goog.inherits(org.apache.flex.core.graphics.Line,
-    org.apache.flex.core.graphics.GraphicShape);
+goog.inherits(org_apache_flex_core_graphics_Line,
+    org_apache_flex_core_graphics_GraphicShape);
 
 
 /**
@@ -35,9 +35,9 @@ goog.inherits(org.apache.flex.core.graphics.Line,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.graphics.Line.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_graphics_Line.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'Line',
-                qName: 'org.apache.flex.core.graphics.Line' }] };
+                qName: 'org_apache_flex_core_graphics_Line' }] };
 
 
 /**
@@ -47,7 +47,7 @@ org.apache.flex.core.graphics.Line.prototype.FLEXJS_CLASS_INFO =
  *  @param {number} x2 The x2 attribute defines the end of the line on the x-axis.
  *  @param {number} y2 The y2 attribute defines the end of the line on the y-axis.
  */
-org.apache.flex.core.graphics.Line.prototype.drawLine = function(x1, y1, x2, y2) {
+org_apache_flex_core_graphics_Line.prototype.drawLine = function(x1, y1, x2, y2) {
     var style = this.getStyleStr();
     var line = document.createElementNS('http://www.w3.org/2000/svg', 'line');
     line.flexjs_wrapper = this;
@@ -70,7 +70,7 @@ org.apache.flex.core.graphics.Line.prototype.drawLine = function(x1, y1, x2, y2)
  * @param {number} y Y position.
  * @param {Object} bbox The bounding box of the svg element.
  */
-org.apache.flex.core.graphics.Line.prototype.resize = function(x, y, bbox) {
+org_apache_flex_core_graphics_Line.prototype.resize = function(x, y, bbox) {
   this.element.setAttribute('width', String(bbox.width) + 'px');
   this.element.setAttribute('height', String(bbox.height) + 'px');
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/LinearGradient.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/LinearGradient.js b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/LinearGradient.js
index a8b2a45..c5eaec5 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/LinearGradient.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/LinearGradient.js
@@ -13,40 +13,40 @@
  */
 
 /**
- * org.apache.flex.core.graphics.LinearGradient
+ * org_apache_flex_core_graphics_LinearGradient
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.graphics.LinearGradient');
-goog.require('org.apache.flex.core.graphics.GradientBase');
+goog.provide('org_apache_flex_core_graphics_LinearGradient');
+goog.require('org_apache_flex_core_graphics_GradientBase');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.graphics.GradientBase}
- * @implements {org.apache.flex.core.graphics.IFill}
+ * @extends {org_apache_flex_core_graphics_GradientBase}
+ * @implements {org_apache_flex_core_graphics_IFill}
  */
-org.apache.flex.core.graphics.LinearGradient = function() {
-  org.apache.flex.core.graphics.LinearGradient.base(this, 'constructor');
+org_apache_flex_core_graphics_LinearGradient = function() {
+  org_apache_flex_core_graphics_LinearGradient.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.core.graphics.LinearGradient, org.apache.flex.core.graphics.GradientBase);
+goog.inherits(org_apache_flex_core_graphics_LinearGradient, org_apache_flex_core_graphics_GradientBase);
 
 
 /**
  * @type {number}
  */
-org.apache.flex.core.graphics.LinearGradient.prototype._scaleX = 1.0;
+org_apache_flex_core_graphics_LinearGradient.prototype._scaleX = 1.0;
 
 
 /**
  * @expose
  * @return {number}
  */
-org.apache.flex.core.graphics.LinearGradient.prototype.get_scaleX = function() {
+org_apache_flex_core_graphics_LinearGradient.prototype.get_scaleX = function() {
   return this._scaleX;
 };
 
@@ -55,7 +55,7 @@ org.apache.flex.core.graphics.LinearGradient.prototype.get_scaleX = function() {
  * @expose
  * @param {number} value
  */
-org.apache.flex.core.graphics.LinearGradient.prototype.set_scaleX = function(value) {
+org_apache_flex_core_graphics_LinearGradient.prototype.set_scaleX = function(value) {
   this._scaleX = value;
 };
 
@@ -64,10 +64,10 @@ org.apache.flex.core.graphics.LinearGradient.prototype.set_scaleX = function(val
  * addFillAttrib()
  *
  * @expose
- * @param {org.apache.flex.core.graphics.GraphicShape} value The GraphicShape object on which the fill must be added.
+ * @param {org_apache_flex_core_graphics_GraphicShape} value The GraphicShape object on which the fill must be added.
  * @return {string}
  */
-org.apache.flex.core.graphics.LinearGradient.prototype.addFillAttrib = function(value) {
+org_apache_flex_core_graphics_LinearGradient.prototype.addFillAttrib = function(value) {
   //Create and add a linear gradient def
   var svgNS = value.element.namespaceURI;
   var grad = document.createElementNS(svgNS, 'linearGradient');
@@ -122,7 +122,7 @@ org.apache.flex.core.graphics.LinearGradient.prototype.addFillAttrib = function(
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.graphics.LinearGradient.prototype.FLEXJS_CLASS_INFO = {
-    names: [{ name: 'LinearGradient', qName: 'org.apache.flex.core.graphics.LinearGradient'}],
-    interfaces: [org.apache.flex.core.graphics.IFill]
+org_apache_flex_core_graphics_LinearGradient.prototype.FLEXJS_CLASS_INFO = {
+    names: [{ name: 'LinearGradient', qName: 'org_apache_flex_core_graphics_LinearGradient'}],
+    interfaces: [org_apache_flex_core_graphics_IFill]
   };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Path.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Path.js b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Path.js
index d986a16..1490de9 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Path.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Path.js
@@ -12,18 +12,18 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.graphics.Path');
+goog.provide('org_apache_flex_core_graphics_Path');
 
-goog.require('org.apache.flex.core.graphics.GraphicShape');
+goog.require('org_apache_flex_core_graphics_GraphicShape');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.graphics.GraphicShape}
+ * @extends {org_apache_flex_core_graphics_GraphicShape}
  */
-org.apache.flex.core.graphics.Path = function() {
-  org.apache.flex.core.graphics.Path.base(this, 'constructor');
+org_apache_flex_core_graphics_Path = function() {
+  org_apache_flex_core_graphics_Path.base(this, 'constructor');
 
    /**
    * @private
@@ -31,8 +31,8 @@ org.apache.flex.core.graphics.Path = function() {
    */
   this.data_ = '';
 };
-goog.inherits(org.apache.flex.core.graphics.Path,
-    org.apache.flex.core.graphics.GraphicShape);
+goog.inherits(org_apache_flex_core_graphics_Path,
+    org_apache_flex_core_graphics_GraphicShape);
 
 
 /**
@@ -40,16 +40,16 @@ goog.inherits(org.apache.flex.core.graphics.Path,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.graphics.Path.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_graphics_Path.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'Path',
-                qName: 'org.apache.flex.core.graphics.Path' }] };
+                qName: 'org_apache_flex_core_graphics_Path' }] };
 
 
 /**
  * @expose
  * @param {string} v The string representation of the path data.
  */
-org.apache.flex.core.graphics.Path.prototype.set_data = function(v) {
+org_apache_flex_core_graphics_Path.prototype.set_data = function(v) {
   this.data_ = v;
 };
 
@@ -58,7 +58,7 @@ org.apache.flex.core.graphics.Path.prototype.set_data = function(v) {
  * @expose
  * @return {string} The string representation of the path data.
  */
-org.apache.flex.core.graphics.Path.prototype.get_data = function() {
+org_apache_flex_core_graphics_Path.prototype.get_data = function() {
   return this.data_;
 };
 
@@ -75,7 +75,7 @@ org.apache.flex.core.graphics.Path.prototype.get_data = function() {
  *  If the segment command is upper-case, the parameters are absolute values.
  *  If the segment command is lower-case, the parameters are relative values.
  */
-org.apache.flex.core.graphics.Path.prototype.drawPath = function(x, y, data) {
+org_apache_flex_core_graphics_Path.prototype.drawPath = function(x, y, data) {
     if (data == null || data.length === 0) return;
     var style = this.getStyleStr();
     var path = document.createElementNS('http://www.w3.org/2000/svg', 'path');
@@ -99,6 +99,6 @@ org.apache.flex.core.graphics.Path.prototype.drawPath = function(x, y, data) {
  /**
   * @override
   */
-org.apache.flex.core.graphics.Path.prototype.draw = function() {
+org_apache_flex_core_graphics_Path.prototype.draw = function() {
     this.drawPath(this.get_x(), this.get_y(), this.get_data());
   };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Rect.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Rect.js b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Rect.js
index 33392c8..f145b63 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Rect.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Rect.js
@@ -12,22 +12,22 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.graphics.Rect');
+goog.provide('org_apache_flex_core_graphics_Rect');
 
-goog.require('org.apache.flex.core.graphics.GraphicShape');
+goog.require('org_apache_flex_core_graphics_GraphicShape');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.graphics.GraphicShape}
+ * @extends {org_apache_flex_core_graphics_GraphicShape}
  */
-org.apache.flex.core.graphics.Rect = function() {
-  org.apache.flex.core.graphics.Rect.base(this, 'constructor');
+org_apache_flex_core_graphics_Rect = function() {
+  org_apache_flex_core_graphics_Rect.base(this, 'constructor');
 
 };
-goog.inherits(org.apache.flex.core.graphics.Rect,
-    org.apache.flex.core.graphics.GraphicShape);
+goog.inherits(org_apache_flex_core_graphics_Rect,
+    org_apache_flex_core_graphics_GraphicShape);
 
 
 /**
@@ -35,9 +35,9 @@ goog.inherits(org.apache.flex.core.graphics.Rect,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.graphics.Rect.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_graphics_Rect.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'Rect',
-                qName: 'org.apache.flex.core.graphics.Rect' }] };
+                qName: 'org_apache_flex_core_graphics_Rect' }] };
 
 
 /**
@@ -47,7 +47,7 @@ org.apache.flex.core.graphics.Rect.prototype.FLEXJS_CLASS_INFO =
  * @param {number} width The width of the rectangle.
  * @param {number} height The height of the rectangle.
  */
-org.apache.flex.core.graphics.Rect.prototype.drawRect = function(x, y, width, height) {
+org_apache_flex_core_graphics_Rect.prototype.drawRect = function(x, y, width, height) {
     var style = this.getStyleStr();
     var rect = document.createElementNS('http://www.w3.org/2000/svg', 'rect');
     rect.flexjs_wrapper = this;
@@ -75,6 +75,6 @@ org.apache.flex.core.graphics.Rect.prototype.drawRect = function(x, y, width, he
 /**
  * @override
 */
-org.apache.flex.core.graphics.Rect.prototype.draw = function() {
+org_apache_flex_core_graphics_Rect.prototype.draw = function() {
     this.drawRect(this.get_x(), this.get_y(), this.get_width(), this.get_height());
-  };
\ No newline at end of file
+  };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/SolidColor.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/SolidColor.js b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/SolidColor.js
index 31a5045..43079b7 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/SolidColor.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/SolidColor.js
@@ -12,16 +12,16 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.graphics.SolidColor');
-goog.require('org.apache.flex.core.graphics.IFill');
+goog.provide('org_apache_flex_core_graphics_SolidColor');
+goog.require('org_apache_flex_core_graphics_IFill');
 
 
 
 /**
  * @constructor
- * @implements {org.apache.flex.core.graphics.IFill}
+ * @implements {org_apache_flex_core_graphics_IFill}
  */
-org.apache.flex.core.graphics.SolidColor = function() {
+org_apache_flex_core_graphics_SolidColor = function() {
 
   /**
    * @private
@@ -43,17 +43,17 @@ org.apache.flex.core.graphics.SolidColor = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.graphics.SolidColor.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_graphics_SolidColor.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'SolidColor',
-                qName: 'org.apache.flex.core.graphics.SolidColor' }],
-                interfaces: [org.apache.flex.core.graphics.IFill] };
+                qName: 'org_apache_flex_core_graphics_SolidColor' }],
+                interfaces: [org_apache_flex_core_graphics_IFill] };
 
 
 /**
  * @expose
  * @return {number} color.
  */
-org.apache.flex.core.graphics.SolidColor.prototype.get_color = function() {
+org_apache_flex_core_graphics_SolidColor.prototype.get_color = function() {
   return this.color_;
 };
 
@@ -61,7 +61,7 @@ org.apache.flex.core.graphics.SolidColor.prototype.get_color = function() {
 /**
  * @param {number} value color.
  */
-org.apache.flex.core.graphics.SolidColor.prototype.set_color = function(value) {
+org_apache_flex_core_graphics_SolidColor.prototype.set_color = function(value) {
   this.color_ = value;
 };
 
@@ -70,7 +70,7 @@ org.apache.flex.core.graphics.SolidColor.prototype.set_color = function(value) {
  * @expose
  * @return {number} alpha.
  */
-org.apache.flex.core.graphics.SolidColor.prototype.get_alpha = function() {
+org_apache_flex_core_graphics_SolidColor.prototype.get_alpha = function() {
   return this.alpha_;
 };
 
@@ -78,7 +78,7 @@ org.apache.flex.core.graphics.SolidColor.prototype.get_alpha = function() {
 /**
  * @param {number} value alpha.
  */
-org.apache.flex.core.graphics.SolidColor.prototype.set_alpha = function(value) {
+org_apache_flex_core_graphics_SolidColor.prototype.set_alpha = function(value) {
   this.alpha_ = value;
 };
 
@@ -87,10 +87,10 @@ org.apache.flex.core.graphics.SolidColor.prototype.set_alpha = function(value) {
  * addFillAttrib()
  *
  * @expose
- * @param {org.apache.flex.core.graphics.GraphicShape} value The GraphicShape object on which the fill must be added.
+ * @param {org_apache_flex_core_graphics_GraphicShape} value The GraphicShape object on which the fill must be added.
  * @return {string}
  */
-org.apache.flex.core.graphics.SolidColor.prototype.addFillAttrib = function(value) {
+org_apache_flex_core_graphics_SolidColor.prototype.addFillAttrib = function(value) {
   var color = Number(this.get_color()).toString(16);
   if (color.length == 1) color = '00' + color;
   if (color.length == 2) color = '00' + color;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/SolidColorStroke.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/SolidColorStroke.js b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/SolidColorStroke.js
index 5b40304..f6465eb 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/SolidColorStroke.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/SolidColorStroke.js
@@ -12,17 +12,17 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.graphics.SolidColorStroke');
-goog.require('org.apache.flex.core.graphics.IStroke');
+goog.provide('org_apache_flex_core_graphics_SolidColorStroke');
+goog.require('org_apache_flex_core_graphics_IStroke');
 
 
 
 /**
  * @constructor
- * @implements {org.apache.flex.core.graphics.IStroke}
+ * @implements {org_apache_flex_core_graphics_IStroke}
  *
  */
-org.apache.flex.core.graphics.SolidColorStroke = function() {
+org_apache_flex_core_graphics_SolidColorStroke = function() {
 
   /**
    * @private
@@ -50,16 +50,16 @@ org.apache.flex.core.graphics.SolidColorStroke = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.graphics.SolidColorStroke.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_graphics_SolidColorStroke.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'SolidColorStroke',
-                qName: 'org.apache.flex.core.graphics.SolidColorStroke' }] };
+                qName: 'org_apache_flex_core_graphics_SolidColorStroke' }] };
 
 
 /**
  * @expose
  * @return {number} color.
  */
-org.apache.flex.core.graphics.SolidColorStroke.prototype.get_color = function() {
+org_apache_flex_core_graphics_SolidColorStroke.prototype.get_color = function() {
   return this.color_;
 };
 
@@ -67,7 +67,7 @@ org.apache.flex.core.graphics.SolidColorStroke.prototype.get_color = function()
 /**
  * @param {number} value color.
  */
-org.apache.flex.core.graphics.SolidColorStroke.prototype.set_color = function(value) {
+org_apache_flex_core_graphics_SolidColorStroke.prototype.set_color = function(value) {
   this.color_ = value;
 };
 
@@ -76,7 +76,7 @@ org.apache.flex.core.graphics.SolidColorStroke.prototype.set_color = function(va
  * @expose
  * @return {number} alpha.
  */
-org.apache.flex.core.graphics.SolidColorStroke.prototype.get_alpha = function() {
+org_apache_flex_core_graphics_SolidColorStroke.prototype.get_alpha = function() {
   return this.alpha_;
 };
 
@@ -84,7 +84,7 @@ org.apache.flex.core.graphics.SolidColorStroke.prototype.get_alpha = function()
 /**
  * @param {number} value alpha.
  */
-org.apache.flex.core.graphics.SolidColorStroke.prototype.set_alpha = function(value) {
+org_apache_flex_core_graphics_SolidColorStroke.prototype.set_alpha = function(value) {
   this.alpha_ = value;
 };
 
@@ -93,7 +93,7 @@ org.apache.flex.core.graphics.SolidColorStroke.prototype.set_alpha = function(va
  * @expose
  * @return {number} weight.
  */
-org.apache.flex.core.graphics.SolidColorStroke.prototype.get_weight = function() {
+org_apache_flex_core_graphics_SolidColorStroke.prototype.get_weight = function() {
   return this.weight_;
 };
 
@@ -101,7 +101,7 @@ org.apache.flex.core.graphics.SolidColorStroke.prototype.get_weight = function()
 /**
  * @param {number} value weight.
  */
-org.apache.flex.core.graphics.SolidColorStroke.prototype.set_weight = function(value) {
+org_apache_flex_core_graphics_SolidColorStroke.prototype.set_weight = function(value) {
   this.weight_ = value;
 };
 
@@ -110,10 +110,10 @@ org.apache.flex.core.graphics.SolidColorStroke.prototype.set_weight = function(v
  * addStrokeAttrib()
  *
  * @expose
- * @param {org.apache.flex.core.graphics.GraphicShape} value The GraphicShape object on which the stroke must be added.
+ * @param {org_apache_flex_core_graphics_GraphicShape} value The GraphicShape object on which the stroke must be added.
  * @return {string}
  */
-org.apache.flex.core.graphics.SolidColorStroke.prototype.addStrokeAttrib = function(value) {
+org_apache_flex_core_graphics_SolidColorStroke.prototype.addStrokeAttrib = function(value) {
     var strokeColor = Number(this.get_color()).toString(16);
     if (strokeColor.length == 1) strokeColor = '00' + strokeColor;
     if (strokeColor.length == 2) strokeColor = '00' + strokeColor;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Text.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Text.js b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Text.js
index adffeaa..80afbda 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Text.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/graphics/Text.js
@@ -12,22 +12,22 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.graphics.Text');
+goog.provide('org_apache_flex_core_graphics_Text');
 
-goog.require('org.apache.flex.core.graphics.GraphicShape');
+goog.require('org_apache_flex_core_graphics_GraphicShape');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.graphics.GraphicShape}
+ * @extends {org_apache_flex_core_graphics_GraphicShape}
  */
-org.apache.flex.core.graphics.Text = function() {
-  org.apache.flex.core.graphics.Text.base(this, 'constructor');
+org_apache_flex_core_graphics_Text = function() {
+  org_apache_flex_core_graphics_Text.base(this, 'constructor');
 
 };
-goog.inherits(org.apache.flex.core.graphics.Text,
-    org.apache.flex.core.graphics.GraphicShape);
+goog.inherits(org_apache_flex_core_graphics_Text,
+    org_apache_flex_core_graphics_GraphicShape);
 
 
 /**
@@ -35,9 +35,9 @@ goog.inherits(org.apache.flex.core.graphics.Text,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.graphics.Text.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_graphics_Text.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'Rect',
-                qName: 'org.apache.flex.core.graphics.Text' }] };
+                qName: 'org_apache_flex_core_graphics_Text' }] };
 
 
 /**
@@ -46,7 +46,7 @@ org.apache.flex.core.graphics.Text.prototype.FLEXJS_CLASS_INFO =
  * @param {number} x The x position of the top-left corner of the rectangle.
  * @param {number} y The y position of the top-left corner.
  */
-org.apache.flex.core.graphics.Text.prototype.drawText = function(value, x, y) {
+org_apache_flex_core_graphics_Text.prototype.drawText = function(value, x, y) {
     var style = this.getStyleStr();
     var text = document.createElementNS('http://www.w3.org/2000/svg', 'text');
     text.flexjs_wrapper = this;
@@ -65,6 +65,6 @@ org.apache.flex.core.graphics.Text.prototype.drawText = function(value, x, y) {
 /**
  * @override
 */
-org.apache.flex.core.graphics.Text.prototype.draw = function() {
+org_apache_flex_core_graphics_Text.prototype.draw = function() {
 
-};
\ No newline at end of file
+};

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/createjs/Application.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/createjs/Application.js b/frameworks/js/FlexJS/src/org/apache/flex/createjs/Application.js
index 9fe4a46..6dba7eb 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/createjs/Application.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/createjs/Application.js
@@ -26,63 +26,63 @@
 // end createjs
 // ------------------------------------------------------------------
 
-goog.provide('org.apache.flex.createjs.Application');
+goog.provide('org_apache_flex_createjs_Application');
 
-goog.require('org.apache.flex.core.HTMLElementWrapper');
-goog.require('org.apache.flex.utils.MXMLDataInterpreter');
+goog.require('org_apache_flex_core_HTMLElementWrapper');
+goog.require('org_apache_flex_utils_MXMLDataInterpreter');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.HTMLElementWrapper}
+ * @extends {org_apache_flex_core_HTMLElementWrapper}
  */
-org.apache.flex.createjs.Application = function() {
-  org.apache.flex.createjs.Application.base(this, 'constructor');
+org_apache_flex_createjs_Application = function() {
+  org_apache_flex_createjs_Application.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.createjs.Application,
-    org.apache.flex.core.HTMLElementWrapper);
+goog.inherits(org_apache_flex_createjs_Application,
+    org_apache_flex_core_HTMLElementWrapper);
 
 
 /**
  * @expose
  * @type {Object}
  */
-org.apache.flex.createjs.Application.prototype.controller = null;
+org_apache_flex_createjs_Application.prototype.controller = null;
 
 
 /**
  * @expose
- * @type {org.apache.flex.createjs.core.ViewBase}
+ * @type {org_apache_flex_createjs_core_ViewBase}
  */
-org.apache.flex.createjs.Application.prototype.initialView = null;
+org_apache_flex_createjs_Application.prototype.initialView = null;
 
 
 /**
  * @expose
  * @type {createjs.Stage}
  */
-org.apache.flex.createjs.Application.prototype.stage = null;
+org_apache_flex_createjs_Application.prototype.stage = null;
 
 
 /**
  * @expose
- * @type {org.apache.flex.events.EventDispatcher}
+ * @type {org_apache_flex_events_EventDispatcher}
  */
-org.apache.flex.createjs.Application.prototype.model = null;
+org_apache_flex_createjs_Application.prototype.model = null;
 
 
 /**
  * @expose
- * @type {org.apache.flex.core.SimpleValuesImpl}
+ * @type {org_apache_flex_core_SimpleValuesImpl}
  */
-org.apache.flex.createjs.Application.prototype.valuesImpl = null;
+org_apache_flex_createjs_Application.prototype.valuesImpl = null;
 
 
 /**
  * @expose
  */
-org.apache.flex.createjs.Application.prototype.start = function() {
+org_apache_flex_createjs_Application.prototype.start = function() {
   var body;
 
   // For createjs, the application is the same as the canvas
@@ -98,7 +98,7 @@ org.apache.flex.createjs.Application.prototype.start = function() {
 
   this.stage = new createjs.Stage('flexjsCanvas');
 
-  org.apache.flex.utils.MXMLDataInterpreter.generateMXMLProperties(this,
+  org_apache_flex_utils_MXMLDataInterpreter.generateMXMLProperties(this,
       this.get_MXMLProperties());
 
   this.dispatchEvent('initialize');
@@ -113,7 +113,7 @@ org.apache.flex.createjs.Application.prototype.start = function() {
 /**
  * @param {Object} c The child element.
  */
-org.apache.flex.createjs.core.Application.prototype.addElement =
+org_apache_flex_createjs_core_Application.prototype.addElement =
     function(c) {
   this.stage.addChild(c.element);
   c.addedToParent();

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/createjs/CheckBox.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/createjs/CheckBox.js b/frameworks/js/FlexJS/src/org/apache/flex/createjs/CheckBox.js
index f4fcc0c..bd7f0dc 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/createjs/CheckBox.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/createjs/CheckBox.js
@@ -12,35 +12,35 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.createjs.CheckBox');
+goog.provide('org_apache_flex_createjs_CheckBox');
 
-goog.require('org.apache.flex.createjs.core.UIBase');
+goog.require('org_apache_flex_createjs_core_UIBase');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.createjs.core.UIBase}
+ * @extends {org_apache_flex_createjs_core_UIBase}
  */
-org.apache.flex.createjs.CheckBox = function() {
-  org.apache.flex.createjs.CheckBox.base(this, 'constructor');
+org_apache_flex_createjs_CheckBox = function() {
+  org_apache_flex_createjs_CheckBox.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.createjs.CheckBox,
-    org.apache.flex.createjs.core.UIBase);
+goog.inherits(org_apache_flex_createjs_CheckBox,
+    org_apache_flex_createjs_core_UIBase);
 
 
 /**
  * @expose
  * @type {Object}
  */
-org.apache.flex.createjs.CheckBox.prototype.checkMark = null;
+org_apache_flex_createjs_CheckBox.prototype.checkMark = null;
 
 
 /**
  * @expose
  * @type {Object}
  */
-org.apache.flex.createjs.CheckBox.prototype.checkMarkBackground =
+org_apache_flex_createjs_CheckBox.prototype.checkMarkBackground =
     null;
 
 
@@ -48,13 +48,13 @@ org.apache.flex.createjs.CheckBox.prototype.checkMarkBackground =
  * @expose
  * @type {Object}
  */
-org.apache.flex.createjs.CheckBox.prototype.checkBoxLabel = null;
+org_apache_flex_createjs_CheckBox.prototype.checkBoxLabel = null;
 
 
 /**
  * @override
  */
-org.apache.flex.createjs.CheckBox.prototype.createElement =
+org_apache_flex_createjs_CheckBox.prototype.createElement =
     function() {
   this.checkMarkBackground = new createjs.Shape();
   this.checkMarkBackground.name = 'checkmarkbackground';
@@ -97,7 +97,7 @@ org.apache.flex.createjs.CheckBox.prototype.createElement =
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.createjs.CheckBox.prototype.get_text =
+org_apache_flex_createjs_CheckBox.prototype.get_text =
     function() {
   return this.checkBoxLabel.text;
 };
@@ -107,7 +107,7 @@ org.apache.flex.createjs.CheckBox.prototype.get_text =
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.createjs.CheckBox.prototype.set_text =
+org_apache_flex_createjs_CheckBox.prototype.set_text =
     function(value) {
   this.checkBoxLabel.text = value;
 };
@@ -117,7 +117,7 @@ org.apache.flex.createjs.CheckBox.prototype.set_text =
  * @expose
  * @return {bool} The selected getter.
  */
-org.apache.flex.createjs.CheckBox.prototype.get_selected =
+org_apache_flex_createjs_CheckBox.prototype.get_selected =
     function() {
   return this.selected;
 };
@@ -127,7 +127,7 @@ org.apache.flex.createjs.CheckBox.prototype.get_selected =
  * @expose
  * @param {bool} value The selected setter.
  */
-org.apache.flex.createjs.CheckBox.prototype.set_selected =
+org_apache_flex_createjs_CheckBox.prototype.set_selected =
     function(value) {
   this.checkMark.visible = this.selected = value;
   this.element.getStage().update();
@@ -138,7 +138,7 @@ org.apache.flex.createjs.CheckBox.prototype.set_selected =
  * @expose
  * @param {string|Object|goog.events.Event} event The event.
  */
-org.apache.flex.createjs.CheckBox.prototype.clickHandler =
+org_apache_flex_createjs_CheckBox.prototype.clickHandler =
     function(event) {
   this.set_selected(!this.get_selected());
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/createjs/Label.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/createjs/Label.js b/frameworks/js/FlexJS/src/org/apache/flex/createjs/Label.js
index 406087d..3cb9867 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/createjs/Label.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/createjs/Label.js
@@ -12,29 +12,29 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.createjs.Label');
+goog.provide('org_apache_flex_createjs_Label');
 
-goog.require('org.apache.flex.createjs.core.UIBase');
+goog.require('org_apache_flex_createjs_core_UIBase');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.createjs.core.UIBase}
+ * @extends {org_apache_flex_createjs_core_UIBase}
  */
-org.apache.flex.createjs.Label = function() {
-  org.apache.flex.createjs.core.UIBase.call(this);
+org_apache_flex_createjs_Label = function() {
+  org_apache_flex_createjs_core_UIBase.call(this);
 };
-goog.inherits(org.apache.flex.createjs.Label,
-    org.apache.flex.createjs.core.UIBase);
+goog.inherits(org_apache_flex_createjs_Label,
+    org_apache_flex_createjs_core_UIBase);
 
 
 /**
  * @override
  */
-org.apache.flex.createjs.Label.prototype.createElement =
+org_apache_flex_createjs_Label.prototype.createElement =
     function(p) {
-  org.apache.flex.createjs.Label.base(this, 'createElement');
+  org_apache_flex_createjs_Label.base(this, 'createElement');
 
   this.element = new createjs.Text('default text', '20px Arial', '#ff7700');
   this.element.x = 0;
@@ -51,7 +51,7 @@ org.apache.flex.createjs.Label.prototype.createElement =
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.createjs.Label.prototype.get_text = function() {
+org_apache_flex_createjs_Label.prototype.get_text = function() {
   return this.element.text;
 };
 
@@ -60,7 +60,7 @@ org.apache.flex.createjs.Label.prototype.get_text = function() {
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.createjs.Label.prototype.set_text =
+org_apache_flex_createjs_Label.prototype.set_text =
     function(value) {
   this.element.text = value;
   this.element.getStage().update();

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/createjs/TextButton.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/createjs/TextButton.js b/frameworks/js/FlexJS/src/org/apache/flex/createjs/TextButton.js
index 5ac4f21..691edca 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/createjs/TextButton.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/createjs/TextButton.js
@@ -12,42 +12,42 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.createjs.TextButton');
+goog.provide('org_apache_flex_createjs_TextButton');
 
-goog.require('org.apache.flex.createjs.core.UIBase');
+goog.require('org_apache_flex_createjs_core_UIBase');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.createjs.core.UIBase}
+ * @extends {org_apache_flex_createjs_core_UIBase}
  */
-org.apache.flex.createjs.TextButton = function() {
-  org.apache.flex.createjs.core.UIBase.call(this);
+org_apache_flex_createjs_TextButton = function() {
+  org_apache_flex_createjs_core_UIBase.call(this);
 };
-goog.inherits(org.apache.flex.createjs.TextButton,
-    org.apache.flex.createjs.core.UIBase);
+goog.inherits(org_apache_flex_createjs_TextButton,
+    org_apache_flex_createjs_core_UIBase);
 
 
 /**
  * @expose
  * @type {Object}
  */
-org.apache.flex.createjs.TextButton.prototype.buttonLabel = null;
+org_apache_flex_createjs_TextButton.prototype.buttonLabel = null;
 
 
 /**
  * @expose
  * @type {Object}
  */
-org.apache.flex.createjs.TextButton.prototype.buttonBackground =
+org_apache_flex_createjs_TextButton.prototype.buttonBackground =
     null;
 
 
 /**
  * @override
  */
-org.apache.flex.createjs.TextButton.prototype.createElement =
+org_apache_flex_createjs_TextButton.prototype.createElement =
     function(p) {
 
   this.buttonBackground = new createjs.Shape();
@@ -79,7 +79,7 @@ org.apache.flex.createjs.TextButton.prototype.createElement =
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.createjs.TextButton.prototype.get_text =
+org_apache_flex_createjs_TextButton.prototype.get_text =
     function() {
   return this.buttonLabel.text;
 };
@@ -89,7 +89,7 @@ org.apache.flex.createjs.TextButton.prototype.get_text =
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.createjs.TextButton.prototype.set_text =
+org_apache_flex_createjs_TextButton.prototype.set_text =
     function(value) {
   this.buttonLabel.text = value;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/createjs/core/UIBase.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/createjs/core/UIBase.js b/frameworks/js/FlexJS/src/org/apache/flex/createjs/core/UIBase.js
index 6abad04..cf479f5 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/createjs/core/UIBase.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/createjs/core/UIBase.js
@@ -12,18 +12,18 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.createjs.core.UIBase');
+goog.provide('org_apache_flex_createjs_core_UIBase');
 
-goog.require('org.apache.flex.core.HTMLElementWrapper');
+goog.require('org_apache_flex_core_HTMLElementWrapper');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.HTMLElementWrapper}
+ * @extends {org_apache_flex_core_HTMLElementWrapper}
  */
-org.apache.flex.createjs.core.UIBase = function() {
-  org.apache.flex.createjs.core.UIBase.base(this, 'constructor');
+org_apache_flex_createjs_core_UIBase = function() {
+  org_apache_flex_createjs_core_UIBase.base(this, 'constructor');
 
   /**
      * @protected
@@ -33,14 +33,14 @@ org.apache.flex.createjs.core.UIBase = function() {
 
   this.createElement();
 };
-goog.inherits(org.apache.flex.createjs.core.UIBase,
-    org.apache.flex.core.HTMLElementWrapper);
+goog.inherits(org_apache_flex_createjs_core_UIBase,
+    org_apache_flex_core_HTMLElementWrapper);
 
 
 /**
  * @param {Object} c The child element.
  */
-org.apache.flex.createjs.core.UIBase.prototype.addElement =
+org_apache_flex_createjs_core_UIBase.prototype.addElement =
     function(c) {
   this.addChild(c.element);
 };
@@ -48,7 +48,7 @@ org.apache.flex.createjs.core.UIBase.prototype.addElement =
 
 /**
  */
-org.apache.flex.createjs.core.UIBase.prototype.createElement =
+org_apache_flex_createjs_core_UIBase.prototype.createElement =
     function() {
   this.element = new createjs.Container();
 
@@ -60,7 +60,7 @@ org.apache.flex.createjs.core.UIBase.prototype.createElement =
  * @expose
  * @param {number} pixels The pixel count from the left edge.
  */
-org.apache.flex.createjs.core.UIBase.prototype.set_x = function(pixels) {
+org_apache_flex_createjs_core_UIBase.prototype.set_x = function(pixels) {
   this.positioner.x = pixels;
   this.element.getStage().update();
 };
@@ -70,7 +70,7 @@ org.apache.flex.createjs.core.UIBase.prototype.set_x = function(pixels) {
  * @expose
  * @param {number} pixels The pixel count from the top edge.
  */
-org.apache.flex.createjs.core.UIBase.prototype.set_y = function(pixels) {
+org_apache_flex_createjs_core_UIBase.prototype.set_y = function(pixels) {
   this.positioner.y = pixels;
   this.element.getStage().update();
 };
@@ -80,7 +80,7 @@ org.apache.flex.createjs.core.UIBase.prototype.set_y = function(pixels) {
  * @expose
  * @param {number} pixels The pixel count from the left edge.
  */
-org.apache.flex.createjs.core.UIBase.prototype.set_width = function(pixels) {
+org_apache_flex_createjs_core_UIBase.prototype.set_width = function(pixels) {
   this.positioner.width = pixels;
   this.element.getStage().update();
 };
@@ -90,7 +90,7 @@ org.apache.flex.createjs.core.UIBase.prototype.set_width = function(pixels) {
  * @expose
  * @param {number} pixels The pixel count from the top edge.
  */
-org.apache.flex.createjs.core.UIBase.prototype.set_height = function(pixels) {
+org_apache_flex_createjs_core_UIBase.prototype.set_height = function(pixels) {
   this.positioner.height = pixels;
   this.element.getStage().update();
 };
@@ -100,14 +100,14 @@ org.apache.flex.createjs.core.UIBase.prototype.set_height = function(pixels) {
  * @expose
  * @type {string}
  */
-org.apache.flex.createjs.core.UIBase.prototype.id = null;
+org_apache_flex_createjs_core_UIBase.prototype.id = null;
 
 
 /**
  * @expose
  * @return {string} The id.
  */
-org.apache.flex.createjs.core.UIBase.prototype.get_id = function() {
+org_apache_flex_createjs_core_UIBase.prototype.get_id = function() {
   return this.name;
 };
 
@@ -116,7 +116,7 @@ org.apache.flex.createjs.core.UIBase.prototype.get_id = function() {
  * @expose
  * @param {object} value The new id.
  */
-org.apache.flex.createjs.core.UIBase.prototype.set_id = function(value) {
+org_apache_flex_createjs_core_UIBase.prototype.set_id = function(value) {
   if (this.name !== value)
   {
     this.element.name = value;
@@ -130,14 +130,14 @@ org.apache.flex.createjs.core.UIBase.prototype.set_id = function(value) {
  * @expose
  * @type {object}
  */
-org.apache.flex.createjs.core.UIBase.prototype.model = null;
+org_apache_flex_createjs_core_UIBase.prototype.model = null;
 
 
 /**
  * @expose
  * @return {object} The model.
  */
-org.apache.flex.createjs.core.UIBase.prototype.get_model = function() {
+org_apache_flex_createjs_core_UIBase.prototype.get_model = function() {
   return this.model;
 };
 
@@ -146,7 +146,7 @@ org.apache.flex.createjs.core.UIBase.prototype.get_model = function() {
  * @expose
  * @param {object} value The new model.
  */
-org.apache.flex.createjs.core.UIBase.prototype.set_model = function(value) {
+org_apache_flex_createjs_core_UIBase.prototype.set_model = function(value) {
   if (this.model !== value)
   {
     this.addBead(value);

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/createjs/core/ViewBase.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/createjs/core/ViewBase.js b/frameworks/js/FlexJS/src/org/apache/flex/createjs/core/ViewBase.js
index e1aba42..81c140b 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/createjs/core/ViewBase.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/createjs/core/ViewBase.js
@@ -12,35 +12,35 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.createjs.core.ViewBase');
+goog.provide('org_apache_flex_createjs_core_ViewBase');
 
-goog.require('org.apache.flex.createjs.core.UIBase');
-goog.require('org.apache.flex.utils.MXMLDataInterpreter');
+goog.require('org_apache_flex_createjs_core_UIBase');
+goog.require('org_apache_flex_utils_MXMLDataInterpreter');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.createjs.core.UIBase}
+ * @extends {org_apache_flex_createjs_core_UIBase}
  */
-org.apache.flex.createjs.core.ViewBase = function() {
-  org.apache.flex.createjs.core.ViewBase.base(this, 'constructor');
+org_apache_flex_createjs_core_ViewBase = function() {
+  org_apache_flex_createjs_core_ViewBase.base(this, 'constructor');
 
   /**
       * @private
-      * @type {org.apache.flex.createjs.core.ViewBase}
+      * @type {org_apache_flex_createjs_core_ViewBase}
       */
   this.currentObject_ = null;
 };
-goog.inherits(org.apache.flex.createjs.core.ViewBase,
-    org.apache.flex.createjs.core.UIBase);
+goog.inherits(org_apache_flex_createjs_core_ViewBase,
+    org_apache_flex_createjs_core_UIBase);
 
 
 /**
  * @expose
  * @return {Object} Returns the application model.
  */
-org.apache.flex.createjs.core.ViewBase.prototype.get_applicationModel =
+org_apache_flex_createjs_core_ViewBase.prototype.get_applicationModel =
     function() {
   return this.applicationModel;
 };
@@ -50,7 +50,7 @@ org.apache.flex.createjs.core.ViewBase.prototype.get_applicationModel =
  * @expose
  * @param {Object} value The application model.
  */
-org.apache.flex.createjs.core.ViewBase.prototype.set_applicationModel =
+org_apache_flex_createjs_core_ViewBase.prototype.set_applicationModel =
     function(value) {
   this.applicationModel = value;
 };
@@ -60,23 +60,23 @@ org.apache.flex.createjs.core.ViewBase.prototype.set_applicationModel =
  * @expose
  * @type {Array}
  */
-org.apache.flex.createjs.core.ViewBase.prototype.MXMLProperties = null;
+org_apache_flex_createjs_core_ViewBase.prototype.MXMLProperties = null;
 
 
 /**
  * @expose
  * @type {Array}
  */
-org.apache.flex.createjs.core.ViewBase.prototype.MXMLDescriptor = null;
+org_apache_flex_createjs_core_ViewBase.prototype.MXMLDescriptor = null;
 
 
 /**
  * @param {Object} model The model for this view.
  */
-org.apache.flex.createjs.core.ViewBase.prototype.initUI = function(model) {
+org_apache_flex_createjs_core_ViewBase.prototype.initUI = function(model) {
   this.applicationModel = model;
-  org.apache.flex.utils.MXMLDataInterpreter.generateMXMLProperties(this,
+  org_apache_flex_utils_MXMLDataInterpreter.generateMXMLProperties(this,
       this.get_MXMLProperties());
-  org.apache.flex.utils.MXMLDataInterpreter.generateMXMLInstances(this,
+  org_apache_flex_utils_MXMLDataInterpreter.generateMXMLInstances(this,
       this, this.get_MXMLDescriptor());
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/effects/PlatformWiper.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/effects/PlatformWiper.js b/frameworks/js/FlexJS/src/org/apache/flex/effects/PlatformWiper.js
index 9f0e9b9..f62cb42 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/effects/PlatformWiper.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/effects/PlatformWiper.js
@@ -12,16 +12,16 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.effects.PlatformWiper');
+goog.provide('org_apache_flex_effects_PlatformWiper');
 
-goog.require('org.apache.flex.geom.Rectangle');
+goog.require('org_apache_flex_geom_Rectangle');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.effects.PlatformWiper = function() {
+org_apache_flex_effects_PlatformWiper = function() {
 
   /**
    * @private
@@ -44,9 +44,9 @@ org.apache.flex.effects.PlatformWiper = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.effects.PlatformWiper.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_effects_PlatformWiper.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'PlatformWiper',
-                qName: 'org.apache.flex.effects.PlatformWiper'}] };
+                qName: 'org_apache_flex_effects_PlatformWiper'}] };
 
 
 /**
@@ -54,7 +54,7 @@ org.apache.flex.effects.PlatformWiper.prototype.FLEXJS_CLASS_INFO =
  * Sets the target for the Wipe.
  * @param {Object} target The target for the Wipe effect.
  */
-org.apache.flex.effects.PlatformWiper.prototype.set_target =
+org_apache_flex_effects_PlatformWiper.prototype.set_target =
     function(target) {
   if (target == null) {
     if (this.overflow_ == null)
@@ -72,9 +72,9 @@ org.apache.flex.effects.PlatformWiper.prototype.set_target =
 /**
  * @expose
  * Clips the Object.
- * @param {org.apache.flex.geom.Rectangle} rect The visible area.
+ * @param {org_apache_flex_geom_Rectangle} rect The visible area.
  */
-org.apache.flex.effects.PlatformWiper.prototype.set_visibleRect =
+org_apache_flex_effects_PlatformWiper.prototype.set_visibleRect =
     function(rect) {
   /*
   var styleString = 'rect(';


[11/12] git commit: [flex-asjs] [refs/heads/develop] - Merge branch 'nodots' into develop

Posted by ah...@apache.org.
Merge branch 'nodots' into develop


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/386a3316
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/386a3316
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/386a3316

Branch: refs/heads/develop
Commit: 386a3316713722ea36dc647c0a3417725d83dccc
Parents: 5cfc1dc 49f207c
Author: Alex Harui <ah...@apache.org>
Authored: Wed Jan 28 09:10:08 2015 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Wed Jan 28 09:10:08 2015 -0800

----------------------------------------------------------------------
 .../js/FlexJS/src/flash/display/Sprite.js       |  10 +-
 .../js/FlexJS/src/mx/core/ClassFactory.js       |  18 +-
 frameworks/js/FlexJS/src/mx/core/IFactory.js    |  10 +-
 frameworks/js/FlexJS/src/mx/states/AddItems.js  |  34 +--
 .../js/FlexJS/src/mx/states/SetEventHandler.js  |  26 +--
 .../js/FlexJS/src/mx/states/SetProperty.js      |  28 +--
 frameworks/js/FlexJS/src/mx/states/State.js     |  12 +-
 .../src/org/apache/cordova/Application.js       |  22 +-
 .../js/FlexJS/src/org/apache/cordova/Weinre.js  |  14 +-
 .../src/org/apache/cordova/camera/Camera.js     |  44 ++--
 .../src/org/apache/flex/binding/BindingBase.js  |  26 +--
 .../src/org/apache/flex/binding/ChainBinding.js |  42 ++--
 .../org/apache/flex/binding/ConstantBinding.js  |  22 +-
 .../org/apache/flex/binding/GenericBinding.js   |  36 ++--
 .../org/apache/flex/binding/PropertyWatcher.js  |  36 ++--
 .../org/apache/flex/binding/SimpleBinding.js    |  32 +--
 .../src/org/apache/flex/binding/WatcherBase.js  |  46 ++--
 .../org/apache/flex/charts/core/ChartBase.js    |  38 ++--
 .../org/apache/flex/charts/core/IAxisBead.js    |  28 +--
 .../org/apache/flex/charts/core/IAxisGroup.js   |  12 +-
 .../flex/charts/core/ICartesianChartLayout.js   |  10 +-
 .../src/org/apache/flex/charts/core/IChart.js   |  14 +-
 .../org/apache/flex/charts/core/IChartAxis.js   |  10 +-
 .../apache/flex/charts/core/IChartDataGroup.js  |  20 +-
 .../flex/charts/core/IChartItemRenderer.js      |  36 ++--
 .../org/apache/flex/charts/core/IChartSeries.js |  32 +--
 .../flex/charts/core/IHorizontalAxisBead.js     |  24 +--
 .../flex/charts/core/IVerticalAxisBead.js       |  24 +--
 .../charts/supportClasses/ChartAxisGroup.js     |  56 ++---
 .../charts/supportClasses/ChartDataGroup.js     |  28 +--
 .../src/org/apache/flex/core/Application.js     |  52 ++---
 .../src/org/apache/flex/core/BeadViewBase.js    |  30 +--
 .../src/org/apache/flex/core/CallLaterBead.js   |  14 +-
 .../src/org/apache/flex/core/ContainerBase.js   |  62 +++---
 .../src/org/apache/flex/core/DataBindingBase.js |  14 +-
 .../src/org/apache/flex/core/FilledRectangle.js |  28 +--
 .../src/org/apache/flex/core/FormatBase.js      |  48 ++---
 .../org/apache/flex/core/HTMLElementWrapper.js  |  44 ++--
 .../js/FlexJS/src/org/apache/flex/core/IBead.js |  12 +-
 .../src/org/apache/flex/core/IBeadController.js |  14 +-
 .../src/org/apache/flex/core/IBeadLayout.js     |  14 +-
 .../src/org/apache/flex/core/IBeadModel.js      |  20 +-
 .../src/org/apache/flex/core/IBeadView.js       |   8 +-
 .../FlexJS/src/org/apache/flex/core/IChild.js   |  12 +-
 .../src/org/apache/flex/core/IContainer.js      |  20 +-
 .../src/org/apache/flex/core/IContentView.js    |  30 +--
 .../src/org/apache/flex/core/IDataGridModel.js  |  14 +-
 .../core/IDataProviderItemRendererMapper.js     |  18 +-
 .../src/org/apache/flex/core/IDocument.js       |  10 +-
 .../src/org/apache/flex/core/IEffectTimer.js    |  16 +-
 .../src/org/apache/flex/core/IFormatBead.js     |  24 +--
 .../src/org/apache/flex/core/IItemRenderer.js   |   8 +-
 .../flex/core/IItemRendererClassFactory.js      |   8 +-
 .../apache/flex/core/IItemRendererFactory.js    |  10 +-
 .../org/apache/flex/core/IItemRendererParent.js |  10 +-
 .../src/org/apache/flex/core/ILayoutChild.js    |  12 +-
 .../src/org/apache/flex/core/ILayoutParent.js   |  18 +-
 .../apache/flex/core/IListPresentationModel.js  |  22 +-
 .../src/org/apache/flex/core/IMXMLDocument.js   |   8 +-
 .../org/apache/flex/core/IMeasurementBead.js    |   8 +-
 .../FlexJS/src/org/apache/flex/core/IParent.js  |  18 +-
 .../src/org/apache/flex/core/IParentIUIBase.js  |  18 +-
 .../src/org/apache/flex/core/IPopUpHost.js      |  16 +-
 .../apache/flex/core/ISelectableItemRenderer.js |  38 ++--
 .../src/org/apache/flex/core/ISelectionModel.js |  30 +--
 .../src/org/apache/flex/core/IStatesImpl.js     |  20 +-
 .../FlexJS/src/org/apache/flex/core/IStrand.js  |  22 +-
 .../org/apache/flex/core/IStyleableObject.js    |  16 +-
 .../src/org/apache/flex/core/ITextModel.js      |  22 +-
 .../FlexJS/src/org/apache/flex/core/IUIBase.js  |   8 +-
 .../src/org/apache/flex/core/IValuesImpl.js     |  14 +-
 .../flex/core/ItemRendererClassFactory.js       |  30 +--
 .../FlexJS/src/org/apache/flex/core/ListBase.js |  36 ++--
 .../org/apache/flex/core/SimpleCSSValuesImpl.js |  40 ++--
 .../org/apache/flex/core/SimpleStatesImpl.js    |  84 ++++----
 .../org/apache/flex/core/SimpleValuesImpl.js    |   8 +-
 .../FlexJS/src/org/apache/flex/core/UIBase.js   | 212 +++++++++----------
 .../src/org/apache/flex/core/ValuesManager.js   |  30 +--
 .../FlexJS/src/org/apache/flex/core/ViewBase.js |  84 ++++----
 .../org/apache/flex/core/ViewBaseDataBinding.js |  44 ++--
 .../src/org/apache/flex/core/graphics/Circle.js |  28 +--
 .../org/apache/flex/core/graphics/Ellipse.js    |  24 +--
 .../apache/flex/core/graphics/GradientBase.js   |  42 ++--
 .../apache/flex/core/graphics/GradientEntry.js  |  36 ++--
 .../apache/flex/core/graphics/GraphicShape.js   |  52 ++---
 .../flex/core/graphics/GraphicsContainer.js     |  50 ++---
 .../src/org/apache/flex/core/graphics/IFill.js  |  12 +-
 .../org/apache/flex/core/graphics/IStroke.js    |  12 +-
 .../src/org/apache/flex/core/graphics/Line.js   |  22 +-
 .../apache/flex/core/graphics/LinearGradient.js |  32 +--
 .../src/org/apache/flex/core/graphics/Path.js   |  26 +--
 .../src/org/apache/flex/core/graphics/Rect.js   |  24 +--
 .../org/apache/flex/core/graphics/SolidColor.js |  26 +--
 .../flex/core/graphics/SolidColorStroke.js      |  28 +--
 .../src/org/apache/flex/core/graphics/Text.js   |  24 +--
 .../src/org/apache/flex/createjs/Application.js |  38 ++--
 .../src/org/apache/flex/createjs/CheckBox.js    |  32 +--
 .../src/org/apache/flex/createjs/Label.js       |  22 +-
 .../src/org/apache/flex/createjs/TextButton.js  |  24 +--
 .../src/org/apache/flex/createjs/core/UIBase.js |  38 ++--
 .../org/apache/flex/createjs/core/ViewBase.js   |  32 +--
 .../org/apache/flex/effects/PlatformWiper.js    |  16 +-
 .../src/org/apache/flex/events/CustomEvent.js   |  16 +-
 .../src/org/apache/flex/events/DragEvent.js     |  40 ++--
 .../FlexJS/src/org/apache/flex/events/Event.js  |  24 +--
 .../org/apache/flex/events/EventDispatcher.js   |  28 +--
 .../org/apache/flex/events/IEventDispatcher.js  |   8 +-
 .../src/org/apache/flex/events/MouseEvent.js    |  62 +++---
 .../org/apache/flex/events/ValueChangeEvent.js  |  32 +--
 .../src/org/apache/flex/events/ValueEvent.js    |  18 +-
 .../org/apache/flex/events/utils/MouseUtils.js  |  12 +-
 .../js/FlexJS/src/org/apache/flex/geom/Point.js |  12 +-
 .../src/org/apache/flex/geom/Rectangle.js       |  16 +-
 .../js/FlexJS/src/org/apache/flex/html/Alert.js |  78 +++----
 .../FlexJS/src/org/apache/flex/html/Button.js   |  24 +--
 .../src/org/apache/flex/html/ButtonBar.js       |  42 ++--
 .../FlexJS/src/org/apache/flex/html/CheckBox.js |  28 +--
 .../src/org/apache/flex/html/CloseButton.js     |  22 +-
 .../FlexJS/src/org/apache/flex/html/ComboBox.js |  32 +--
 .../src/org/apache/flex/html/Container.js       |  36 ++--
 .../src/org/apache/flex/html/ControlBar.js      |  20 +-
 .../src/org/apache/flex/html/DropDownList.js    |  31 ++-
 .../src/org/apache/flex/html/HContainer.js      |  24 +--
 .../js/FlexJS/src/org/apache/flex/html/HRule.js |  18 +-
 .../js/FlexJS/src/org/apache/flex/html/Image.js |  32 +--
 .../org/apache/flex/html/ImageAndTextButton.js  |  34 +--
 .../js/FlexJS/src/org/apache/flex/html/Label.js |  26 +--
 .../js/FlexJS/src/org/apache/flex/html/List.js  |  86 ++++----
 .../src/org/apache/flex/html/MultilineLabel.js  |  26 +--
 .../src/org/apache/flex/html/NumericStepper.js  |  56 ++---
 .../js/FlexJS/src/org/apache/flex/html/Panel.js |  52 ++---
 .../src/org/apache/flex/html/RadioButton.js     |  52 ++---
 .../src/org/apache/flex/html/SimpleAlert.js     |  20 +-
 .../src/org/apache/flex/html/SimpleList.js      |  37 ++--
 .../FlexJS/src/org/apache/flex/html/Slider.js   |  61 +++---
 .../FlexJS/src/org/apache/flex/html/Spacer.js   |  18 +-
 .../FlexJS/src/org/apache/flex/html/Spinner.js  |  53 +++--
 .../FlexJS/src/org/apache/flex/html/TextArea.js |  24 +--
 .../src/org/apache/flex/html/TextButton.js      |  22 +-
 .../src/org/apache/flex/html/TextInput.js       |  34 +--
 .../FlexJS/src/org/apache/flex/html/TitleBar.js |  34 +--
 .../org/apache/flex/html/ToggleTextButton.js    |  28 +--
 .../FlexJS/src/org/apache/flex/html/ToolTip.js  |  18 +-
 .../src/org/apache/flex/html/VContainer.js      |  24 +--
 .../accessories/NumericOnlyTextInputBead.js     |  12 +-
 .../flex/html/accessories/PasswordInputBead.js  |  10 +-
 .../flex/html/accessories/TextPromptBead.js     |  14 +-
 .../org/apache/flex/html/beads/ButtonBarView.js |  22 +-
 .../org/apache/flex/html/beads/ContainerView.js |  26 +--
 .../DataItemRendererFactoryForArrayData.js      |  52 ++---
 .../src/org/apache/flex/html/beads/IListView.js |  12 +-
 .../apache/flex/html/beads/ImageButtonView.js   |  10 +-
 .../src/org/apache/flex/html/beads/ImageView.js |  16 +-
 .../src/org/apache/flex/html/beads/ListView.js  |  60 +++---
 .../src/org/apache/flex/html/beads/PanelView.js |  28 +--
 .../flex/html/beads/ScrollingContainerView.js   |  30 +--
 .../apache/flex/html/beads/SliderThumbView.js   |  10 +-
 .../apache/flex/html/beads/SliderTrackView.js   |  10 +-
 .../flex/html/beads/TextInputWithBorderView.js  |  10 +-
 .../TextItemRendererFactoryForArrayData.js      |  41 ++--
 .../controllers/ItemRendererMouseController.js  |  31 ++-
 .../ListSingleSelectionMouseController.js       |  31 ++-
 .../beads/controllers/SliderMouseController.js  |  35 ++-
 .../beads/controllers/SpinnerMouseController.js |  17 +-
 .../flex/html/beads/layouts/ButtonBarLayout.js  |  28 +--
 .../html/beads/layouts/NonVirtualBasicLayout.js |  42 ++--
 .../layouts/NonVirtualBasicScrollingLayout.js   |  32 +--
 .../beads/layouts/NonVirtualHorizontalLayout.js |  26 +--
 .../beads/layouts/NonVirtualVerticalLayout.js   |  26 +--
 .../NonVirtualVerticalScrollingLayout.js        |  19 +-
 .../flex/html/beads/layouts/TileLayout.js       |  32 +--
 .../html/beads/models/ArraySelectionModel.js    |  42 ++--
 .../flex/html/beads/models/DataGridModel.js     |  32 +--
 .../apache/flex/html/beads/models/ImageModel.js |  24 +--
 .../html/beads/models/ListPresentationModel.js  |  32 +--
 .../apache/flex/html/beads/models/PanelModel.js |  34 +--
 .../apache/flex/html/beads/models/RangeModel.js |  42 ++--
 .../apache/flex/html/beads/models/TextModel.js  |  30 +--
 .../flex/html/beads/models/TitleBarModel.js     |  38 ++--
 .../ButtonBarButtonItemRenderer.js              |  34 ++-
 .../flex/html/supportClasses/DataGridColumn.js  |  26 +--
 .../html/supportClasses/DataItemRenderer.js     |  45 ++--
 .../html/supportClasses/NonVirtualDataGroup.js  |  42 ++--
 .../html/supportClasses/StringItemRenderer.js   |  53 +++--
 .../html/supportClasses/UIItemRendererBase.js   |  72 +++----
 .../src/org/apache/flex/html5/CheckBox.js       |  24 +--
 .../src/org/apache/flex/html5/ComboBox.js       |  28 +--
 .../src/org/apache/flex/html5/DropDownList.js   |  14 +-
 .../FlexJS/src/org/apache/flex/html5/Label.js   |  22 +-
 .../js/FlexJS/src/org/apache/flex/html5/List.js |  18 +-
 .../src/org/apache/flex/html5/RadioButton.js    |  28 +--
 .../src/org/apache/flex/html5/TextArea.js       |  20 +-
 .../src/org/apache/flex/html5/TextButton.js     |  20 +-
 .../src/org/apache/flex/html5/TextInput.js      |  20 +-
 .../src/org/apache/flex/jquery/Application.js   |  14 +-
 .../src/org/apache/flex/jquery/CheckBox.js      |  28 +--
 .../src/org/apache/flex/jquery/RadioButton.js   |  58 ++---
 .../src/org/apache/flex/jquery/TextButton.js    |  24 +--
 .../src/org/apache/flex/maps/google/Geometry.js |  14 +-
 .../src/org/apache/flex/maps/google/LatLng.js   |  12 +-
 .../src/org/apache/flex/maps/google/Map.js      |  84 ++++----
 .../src/org/apache/flex/maps/google/Marker.js   |  18 +-
 .../src/org/apache/flex/maps/google/Place.js    |  26 +--
 .../apache/flex/maps/google/beads/MapView.js    |  12 +-
 .../apache/flex/maps/google/models/MapModel.js  |  42 ++--
 .../src/org/apache/flex/net/BinaryUploader.js   |  90 ++++----
 .../src/org/apache/flex/net/HTTPHeader.js       |  14 +-
 .../src/org/apache/flex/net/HTTPService.js      |  90 ++++----
 .../src/org/apache/flex/net/JSONInputParser.js  |  10 +-
 .../org/apache/flex/net/JSONItemConverter.js    |  14 +-
 .../flex/net/dataConverters/LazyCollection.js   |  41 ++--
 .../src/org/apache/flex/svg/TextButton.js       |  26 +--
 .../src/org/apache/flex/utils/BinaryData.js     |  36 ++--
 .../src/org/apache/flex/utils/EffectTimer.js    |  36 ++--
 .../src/org/apache/flex/utils/Language.js       |  28 +--
 .../apache/flex/utils/MXMLDataInterpreter.js    |  42 ++--
 .../src/org/apache/flex/utils/MixinManager.js   |  14 +-
 .../src/org/apache/flex/utils/PointUtils.js     |  26 +--
 .../FlexJS/src/org/apache/flex/utils/Timer.js   |  40 ++--
 .../FlexJS/src/org/apache/flex/utils/UIUtils.js |  20 +-
 .../flex/utils/ViewSourceContextMenuOption.js   |  12 +-
 .../js/FlexJS/tests/MySimpleValuesImpl.js       |   6 +-
 222 files changed, 3232 insertions(+), 3255 deletions(-)
----------------------------------------------------------------------



[08/12] git commit: [flex-asjs] [refs/heads/develop] - switching from org.apache.flex to org_apache_flex so GCC doesn't complain

Posted by ah...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IMeasurementBead.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IMeasurementBead.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IMeasurementBead.js
index 46b58f3..3465b92 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IMeasurementBead.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IMeasurementBead.js
@@ -17,14 +17,14 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IMeasurementBead');
+goog.provide('org_apache_flex_core_IMeasurementBead');
 
 
 
 /**
  * @interface
  */
-org.apache.flex.core.IMeasurementBead = function() {
+org_apache_flex_core_IMeasurementBead = function() {
 };
 
 
@@ -33,6 +33,6 @@ org.apache.flex.core.IMeasurementBead = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IMeasurementBead.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_IMeasurementBead.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'IMeasurementBead',
-                qName: 'org.apache.flex.core.IMeasurementBead' }] };
+                qName: 'org_apache_flex_core_IMeasurementBead' }] };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IParent.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IParent.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IParent.js
index 2b58163..ac0baff 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IParent.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IParent.js
@@ -13,48 +13,48 @@
  */
 
 /**
- * org.apache.flex.core.IParent
+ * org_apache_flex_core_IParent
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IParent');
+goog.provide('org_apache_flex_core_IParent');
 
 
 
 /**
  * @interface
  */
-org.apache.flex.core.IParent = function() {
+org_apache_flex_core_IParent = function() {
 };
 
 
 /**
  * @param {Object} c
  */
-org.apache.flex.core.IParent.prototype.addElement = function(c) {};
+org_apache_flex_core_IParent.prototype.addElement = function(c) {};
 
 
 /**
  * @param {Object} c
  * @param {number} index
  */
-org.apache.flex.core.IParent.prototype.addElementAt = function(c, index) {};
+org_apache_flex_core_IParent.prototype.addElementAt = function(c, index) {};
 
 
 /**
  * @return {number}
  * @param {Object} c
  */
-org.apache.flex.core.IParent.prototype.getElementIndex = function(c) {};
+org_apache_flex_core_IParent.prototype.getElementIndex = function(c) {};
 
 
 /**
  * @param {Object} c
  */
-org.apache.flex.core.IParent.prototype.removeElement = function(c) {};
+org_apache_flex_core_IParent.prototype.removeElement = function(c) {};
 
 
 /**
@@ -62,6 +62,6 @@ org.apache.flex.core.IParent.prototype.removeElement = function(c) {};
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IParent.prototype.FLEXJS_CLASS_INFO = {
-  names: [{ name: 'IParent', qName: 'org.apache.flex.core.IParent'}]
+org_apache_flex_core_IParent.prototype.FLEXJS_CLASS_INFO = {
+  names: [{ name: 'IParent', qName: 'org_apache_flex_core_IParent'}]
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IParentIUIBase.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IParentIUIBase.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IParentIUIBase.js
index 1958f94..fc7d7c0 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IParentIUIBase.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IParentIUIBase.js
@@ -13,24 +13,24 @@
  */
 
 /**
- * org.apache.flex.core.IParentIUIBase
+ * org_apache_flex_core_IParentIUIBase
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IParentIUIBase');
+goog.provide('org_apache_flex_core_IParentIUIBase');
 
-goog.require('org.apache.flex.core.IParent');
-goog.require('org.apache.flex.core.IUIBase');
+goog.require('org_apache_flex_core_IParent');
+goog.require('org_apache_flex_core_IUIBase');
 
 
 
 /**
  * @interface
  */
-org.apache.flex.core.IParentIUIBase = function() {
+org_apache_flex_core_IParentIUIBase = function() {
 };
 
 
@@ -39,8 +39,8 @@ org.apache.flex.core.IParentIUIBase = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IParentIUIBase.prototype.FLEXJS_CLASS_INFO = {
-  names: [{ name: 'IParentIUIBase', qName: 'org.apache.flex.core.IParentIUIBase'}],
-  interfaces: [org.apache.flex.core.IParent,
-             org.apache.flex.core.IUIBase]
+org_apache_flex_core_IParentIUIBase.prototype.FLEXJS_CLASS_INFO = {
+  names: [{ name: 'IParentIUIBase', qName: 'org_apache_flex_core_IParentIUIBase'}],
+  interfaces: [org_apache_flex_core_IParent,
+             org_apache_flex_core_IUIBase]
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IPopUpHost.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IPopUpHost.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IPopUpHost.js
index 2c1aaae..b1613cf 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IPopUpHost.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IPopUpHost.js
@@ -13,24 +13,24 @@
  */
 
 /**
- * org.apache.flex.core.IPopUpHost
+ * org_apache_flex_core_IPopUpHost
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IPopUpHost');
+goog.provide('org_apache_flex_core_IPopUpHost');
 
-goog.require('org.apache.flex.core.IParent');
+goog.require('org_apache_flex_core_IParent');
 
 
 
 /**
  * @interface
- * @extends {org.apache.flex.core.IParent}
+ * @extends {org_apache_flex_core_IParent}
  */
-org.apache.flex.core.IPopUpHost = function() {
+org_apache_flex_core_IPopUpHost = function() {
 };
 
 
@@ -39,7 +39,7 @@ org.apache.flex.core.IPopUpHost = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IPopUpHost.prototype.FLEXJS_CLASS_INFO = {
-  names: [{ name: 'IPopUpHost', qName: 'org.apache.flex.core.IPopUpHost'}],
-  interfaces: [org.apache.flex.core.IParent]
+org_apache_flex_core_IPopUpHost.prototype.FLEXJS_CLASS_INFO = {
+  names: [{ name: 'IPopUpHost', qName: 'org_apache_flex_core_IPopUpHost'}],
+  interfaces: [org_apache_flex_core_IParent]
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/ISelectableItemRenderer.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/ISelectableItemRenderer.js b/frameworks/js/FlexJS/src/org/apache/flex/core/ISelectableItemRenderer.js
index 94f7782..bf80b6f 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/ISelectableItemRenderer.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/ISelectableItemRenderer.js
@@ -13,25 +13,25 @@
  */
 
 /**
- * org.apache.flex.core.ISelectableItemRenderer
+ * org_apache_flex_core_ISelectableItemRenderer
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.ISelectableItemRenderer');
+goog.provide('org_apache_flex_core_ISelectableItemRenderer');
 
-goog.require('org.apache.flex.core.IItemRenderer');
+goog.require('org_apache_flex_core_IItemRenderer');
 
 
 
 /**
  * @interface
- * @extends {org.apache.flex.events.IEventDispatcher}
- * @extends {org.apache.flex.core.IItemRenderer}
+ * @extends {org_apache_flex_events_IEventDispatcher}
+ * @extends {org_apache_flex_core_IItemRenderer}
  */
-org.apache.flex.core.ISelectableItemRenderer = function() {
+org_apache_flex_core_ISelectableItemRenderer = function() {
 };
 
 
@@ -39,70 +39,70 @@ org.apache.flex.core.ISelectableItemRenderer = function() {
  * @expose
  * @param {Object} value
  */
-org.apache.flex.core.ISelectableItemRenderer.prototype.set_labelField = function(value) {};
+org_apache_flex_core_ISelectableItemRenderer.prototype.set_labelField = function(value) {};
 
 
 /**
  * @expose
  * @return {Object} The labelField.
  */
-org.apache.flex.core.ISelectableItemRenderer.prototype.get_labelField = function() {};
+org_apache_flex_core_ISelectableItemRenderer.prototype.get_labelField = function() {};
 
 
 /**
  * @expose
  * @param {number} value
  */
-org.apache.flex.core.ISelectableItemRenderer.prototype.set_index = function(value) {};
+org_apache_flex_core_ISelectableItemRenderer.prototype.set_index = function(value) {};
 
 
 /**
  * @expose
  * @return {number} The selected index.
  */
-org.apache.flex.core.ISelectableItemRenderer.prototype.get_index = function() {};
+org_apache_flex_core_ISelectableItemRenderer.prototype.get_index = function() {};
 
 
 /**
  * @expose
  * @param {Object} value
  */
-org.apache.flex.core.ISelectableItemRenderer.prototype.set_selected = function(value) {};
+org_apache_flex_core_ISelectableItemRenderer.prototype.set_selected = function(value) {};
 
 
 /**
  * @expose
  * @return {Object} Whether or not the item in the selected state.
  */
-org.apache.flex.core.ISelectableItemRenderer.prototype.get_selected = function() {};
+org_apache_flex_core_ISelectableItemRenderer.prototype.get_selected = function() {};
 
 
 /**
  * @expose
  * @param {Object} value
  */
-org.apache.flex.core.ISelectableItemRenderer.prototype.set_hovered = function(value) {};
+org_apache_flex_core_ISelectableItemRenderer.prototype.set_hovered = function(value) {};
 
 
 /**
  * @expose
  * @return {Object} Whether or not the item is in the hovered state.
  */
-org.apache.flex.core.ISelectableItemRenderer.prototype.get_hovered = function() {};
+org_apache_flex_core_ISelectableItemRenderer.prototype.get_hovered = function() {};
 
 
 /**
  * @expose
  * @param {Object} value
  */
-org.apache.flex.core.ISelectableItemRenderer.prototype.set_down = function(value) {};
+org_apache_flex_core_ISelectableItemRenderer.prototype.set_down = function(value) {};
 
 
 /**
  * @expose
  * @return {Object} Whether or not the item is in the down state.
  */
-org.apache.flex.core.ISelectableItemRenderer.prototype.get_down = function() {};
+org_apache_flex_core_ISelectableItemRenderer.prototype.get_down = function() {};
 
 
 /**
@@ -110,6 +110,6 @@ org.apache.flex.core.ISelectableItemRenderer.prototype.get_down = function() {};
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.ISelectableItemRenderer.prototype.FLEXJS_CLASS_INFO =
-{ names: [{ name: 'ISelectableItemRenderer', qName: 'org.apache.flex.core.ISelectableItemRenderer'}],
-  interfaces: [org.apache.flex.core.IItemRenderer] };
+org_apache_flex_core_ISelectableItemRenderer.prototype.FLEXJS_CLASS_INFO =
+{ names: [{ name: 'ISelectableItemRenderer', qName: 'org_apache_flex_core_ISelectableItemRenderer'}],
+  interfaces: [org_apache_flex_core_IItemRenderer] };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/ISelectionModel.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/ISelectionModel.js b/frameworks/js/FlexJS/src/org/apache/flex/core/ISelectionModel.js
index 0422dcf..a503263 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/ISelectionModel.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/ISelectionModel.js
@@ -13,25 +13,25 @@
  */
 
 /**
- * org.apache.flex.core.ISelectionModel
+ * org_apache_flex_core_ISelectionModel
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.ISelectionModel');
+goog.provide('org_apache_flex_core_ISelectionModel');
 
-goog.require('org.apache.flex.core.IBeadModel');
+goog.require('org_apache_flex_core_IBeadModel');
 
 
 
 /**
  * @interface
- * @extends {org.apache.flex.events.IEventDispatcher}
- * @extends {org.apache.flex.core.IBeadModel}
+ * @extends {org_apache_flex_events_IEventDispatcher}
+ * @extends {org_apache_flex_core_IBeadModel}
  */
-org.apache.flex.core.ISelectionModel = function() {
+org_apache_flex_core_ISelectionModel = function() {
 };
 
 
@@ -39,42 +39,42 @@ org.apache.flex.core.ISelectionModel = function() {
  * @expose
  * @param {Object} value
  */
-org.apache.flex.core.ISelectionModel.prototype.set_dataProvider = function(value) {};
+org_apache_flex_core_ISelectionModel.prototype.set_dataProvider = function(value) {};
 
 
 /**
  * @expose
  * @return {Object} The dataProvider.
  */
-org.apache.flex.core.ISelectionModel.prototype.get_dataProvider = function() {};
+org_apache_flex_core_ISelectionModel.prototype.get_dataProvider = function() {};
 
 
 /**
  * @expose
  * @param {number} value
  */
-org.apache.flex.core.ISelectionModel.prototype.set_selectedIndex = function(value) {};
+org_apache_flex_core_ISelectionModel.prototype.set_selectedIndex = function(value) {};
 
 
 /**
  * @expose
  * @return {number} The selected index.
  */
-org.apache.flex.core.ISelectionModel.prototype.get_selectedIndex = function() {};
+org_apache_flex_core_ISelectionModel.prototype.get_selectedIndex = function() {};
 
 
 /**
  * @expose
  * @param {Object} value
  */
-org.apache.flex.core.ISelectionModel.prototype.set_selectedItem = function(value) {};
+org_apache_flex_core_ISelectionModel.prototype.set_selectedItem = function(value) {};
 
 
 /**
  * @expose
  * @return {Object} The selected item.
  */
-org.apache.flex.core.ISelectionModel.prototype.get_selectedItem = function() {};
+org_apache_flex_core_ISelectionModel.prototype.get_selectedItem = function() {};
 
 
 /**
@@ -82,6 +82,6 @@ org.apache.flex.core.ISelectionModel.prototype.get_selectedItem = function() {};
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.ISelectionModel.prototype.FLEXJS_CLASS_INFO =
-{ names: [{ name: 'ISelectionModel', qName: 'org.apache.flex.core.ISelectionModel'}],
-  interfaces: [org.apache.flex.events.IEventDispatcher, org.apache.flex.core.IBeadModel] };
+org_apache_flex_core_ISelectionModel.prototype.FLEXJS_CLASS_INFO =
+{ names: [{ name: 'ISelectionModel', qName: 'org_apache_flex_core_ISelectionModel'}],
+  interfaces: [org_apache_flex_events_IEventDispatcher, org_apache_flex_core_IBeadModel] };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IStatesImpl.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IStatesImpl.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IStatesImpl.js
index c8b2bc7..d98ccae 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IStatesImpl.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IStatesImpl.js
@@ -17,10 +17,10 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IStatesImpl');
+goog.provide('org_apache_flex_core_IStatesImpl');
 
-goog.require('org.apache.flex.core.IBead');
-goog.require('org.apache.flex.events.IEventDispatcher');
+goog.require('org_apache_flex_core_IBead');
+goog.require('org_apache_flex_events_IEventDispatcher');
 
 
 
@@ -28,10 +28,10 @@ goog.require('org.apache.flex.events.IEventDispatcher');
  * IStatesImpl
  *
  * @interface
- * @extends {org.apache.flex.core.IBead}
- * @extends {org.apache.flex.events.IEventDispatcher}
+ * @extends {org_apache_flex_core_IBead}
+ * @extends {org_apache_flex_events_IEventDispatcher}
  */
-org.apache.flex.core.IStatesImpl = function() {
+org_apache_flex_core_IStatesImpl = function() {
 };
 
 
@@ -40,8 +40,8 @@ org.apache.flex.core.IStatesImpl = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IStatesImpl.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_IStatesImpl.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'IStatesImpl',
-                qName: 'org.apache.flex.core.IStatesImpl' }],
-      interfaces: [org.apache.flex.core.IBead,
-                   org.apache.flex.events.IEventDispatcher] };
+                qName: 'org_apache_flex_core_IStatesImpl' }],
+      interfaces: [org_apache_flex_core_IBead,
+                   org_apache_flex_events_IEventDispatcher] };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IStrand.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IStrand.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IStrand.js
index 13f414b..558efbc 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IStrand.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IStrand.js
@@ -17,7 +17,7 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IStrand');
+goog.provide('org_apache_flex_core_IStrand');
 
 
 
@@ -26,7 +26,7 @@ goog.provide('org.apache.flex.core.IStrand');
  *
  * @interface
  */
-org.apache.flex.core.IStrand = function() {
+org_apache_flex_core_IStrand = function() {
 };
 
 
@@ -35,18 +35,18 @@ org.apache.flex.core.IStrand = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IStrand.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_IStrand.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'IStrand',
-                qName: 'org.apache.flex.core.IStrand' }] };
+                qName: 'org_apache_flex_core_IStrand' }] };
 
 
 /**
  * addBead()
  *
  * @expose
- * @param {org.apache.flex.core.IBead} bead The bead to add.
+ * @param {org_apache_flex_core_IBead} bead The bead to add.
  */
-org.apache.flex.core.IStrand.prototype.addBead = function(bead) {};
+org_apache_flex_core_IStrand.prototype.addBead = function(bead) {};
 
 
 /**
@@ -54,9 +54,9 @@ org.apache.flex.core.IStrand.prototype.addBead = function(bead) {};
  *
  * @expose
  * @param {Object} classOrInterface The type of bead to look for.
- * @return {org.apache.flex.core.IBead} The bead.
+ * @return {org_apache_flex_core_IBead} The bead.
  */
-org.apache.flex.core.IStrand.prototype.getBeadByType =
+org_apache_flex_core_IStrand.prototype.getBeadByType =
     function(classOrInterface) {};
 
 
@@ -64,7 +64,7 @@ org.apache.flex.core.IStrand.prototype.getBeadByType =
  * removeBead()
  *
  * @expose
- * @param {org.apache.flex.core.IBead} bead The bead to remove.
- * @return {org.apache.flex.core.IBead} The bead that was removed.
+ * @param {org_apache_flex_core_IBead} bead The bead to remove.
+ * @return {org_apache_flex_core_IBead} The bead that was removed.
  */
-org.apache.flex.core.IStrand.prototype.removeBead = function(bead) {};
+org_apache_flex_core_IStrand.prototype.removeBead = function(bead) {};

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IStyleableObject.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IStyleableObject.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IStyleableObject.js
index eaaf5b4..57be8b1 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IStyleableObject.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IStyleableObject.js
@@ -13,24 +13,24 @@
  */
 
 /**
- * org.apache.flex.core.IStyleableObject
+ * org_apache_flex_core_IStyleableObject
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IStyleableObject');
+goog.provide('org_apache_flex_core_IStyleableObject');
 
-goog.require('org.apache.flex.events.IEventDispatcher');
+goog.require('org_apache_flex_events_IEventDispatcher');
 
 
 
 /**
  * @interface
- * @extends {org.apache.flex.events.IEventDispatcher}
+ * @extends {org_apache_flex_events_IEventDispatcher}
  */
-org.apache.flex.core.IStyleableObject = function() {
+org_apache_flex_core_IStyleableObject = function() {
 };
 
 
@@ -39,8 +39,8 @@ org.apache.flex.core.IStyleableObject = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IStyleableObject.prototype.FLEXJS_CLASS_INFO = {
+org_apache_flex_core_IStyleableObject.prototype.FLEXJS_CLASS_INFO = {
   names: [{ name: 'IStyleableObject',
-    qName: 'org.apache.flex.core.IStyleableObject'}],
-  interfaces: [org.apache.flex.events.IEventDispatcher]
+    qName: 'org_apache_flex_core_IStyleableObject'}],
+  interfaces: [org_apache_flex_events_IEventDispatcher]
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/ITextModel.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/ITextModel.js b/frameworks/js/FlexJS/src/org/apache/flex/core/ITextModel.js
index 85c1d97..d394d9d 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/ITextModel.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/ITextModel.js
@@ -13,25 +13,25 @@
  */
 
 /**
- * org.apache.flex.core.ITextModel
+ * org_apache_flex_core_ITextModel
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.ITextModel');
+goog.provide('org_apache_flex_core_ITextModel');
 
-goog.require('org.apache.flex.core.IBeadModel');
+goog.require('org_apache_flex_core_IBeadModel');
 
 
 
 /**
  * @interface
- * @extends {org.apache.flex.events.IEventDispatcher}
- * @extends {org.apache.flex.core.IBeadModel}
+ * @extends {org_apache_flex_events_IEventDispatcher}
+ * @extends {org_apache_flex_core_IBeadModel}
  */
-org.apache.flex.core.ITextModel = function() {
+org_apache_flex_core_ITextModel = function() {
 };
 
 
@@ -39,14 +39,14 @@ org.apache.flex.core.ITextModel = function() {
  * @expose
  * @param {Object} value The text content.
  */
-org.apache.flex.core.ITextModel.prototype.set_text = function(value) {};
+org_apache_flex_core_ITextModel.prototype.set_text = function(value) {};
 
 
 /**
  * @expose
  * @return {Object} The text content.
  */
-org.apache.flex.core.ITextModel.prototype.get_text = function() {};
+org_apache_flex_core_ITextModel.prototype.get_text = function() {};
 
 
 /**
@@ -54,6 +54,6 @@ org.apache.flex.core.ITextModel.prototype.get_text = function() {};
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.ITextModel.prototype.FLEXJS_CLASS_INFO =
-{ names: [{ name: 'ITextModel', qName: 'org.apache.flex.core.ITextModel'}],
-  interfaces: [org.apache.flex.events.IEventDispatcher, org.apache.flex.core.IBeadModel] };
+org_apache_flex_core_ITextModel.prototype.FLEXJS_CLASS_INFO =
+{ names: [{ name: 'ITextModel', qName: 'org_apache_flex_core_ITextModel'}],
+  interfaces: [org_apache_flex_events_IEventDispatcher, org_apache_flex_core_IBeadModel] };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IUIBase.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IUIBase.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IUIBase.js
index 7fd8318..f810184 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IUIBase.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IUIBase.js
@@ -17,7 +17,7 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IUIBase');
+goog.provide('org_apache_flex_core_IUIBase');
 
 
 
@@ -26,7 +26,7 @@ goog.provide('org.apache.flex.core.IUIBase');
  *
  * @interface
  */
-org.apache.flex.core.IUIBase = function() {
+org_apache_flex_core_IUIBase = function() {
 };
 
 
@@ -35,6 +35,6 @@ org.apache.flex.core.IUIBase = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IUIBase.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_IUIBase.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'IUIBase',
-                qName: 'org.apache.flex.core.IUIBase' }] };
+                qName: 'org_apache_flex_core_IUIBase' }] };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/IValuesImpl.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IValuesImpl.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IValuesImpl.js
index 884c11e..319eb3e 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/IValuesImpl.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IValuesImpl.js
@@ -17,7 +17,7 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.core.IValuesImpl');
+goog.provide('org_apache_flex_core_IValuesImpl');
 
 
 
@@ -26,7 +26,7 @@ goog.provide('org.apache.flex.core.IValuesImpl');
  *
  * @interface
  */
-org.apache.flex.core.IValuesImpl = function() {
+org_apache_flex_core_IValuesImpl = function() {
 };
 
 
@@ -35,9 +35,9 @@ org.apache.flex.core.IValuesImpl = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.IValuesImpl.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_IValuesImpl.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'IValuesImpl',
-                qName: 'org.apache.flex.core.IValuesImpl' }]};
+                qName: 'org_apache_flex_core_IValuesImpl' }]};
 
 
 /**
@@ -49,7 +49,7 @@ org.apache.flex.core.IValuesImpl.prototype.FLEXJS_CLASS_INFO =
  *                       might make a difference.
  * @return {?Object} The value.
  */
-org.apache.flex.core.IValuesImpl.prototype.getValue =
+org_apache_flex_core_IValuesImpl.prototype.getValue =
   function(thisObject, valueName, opt_state, opt_attrs) {};
 
 
@@ -62,7 +62,7 @@ org.apache.flex.core.IValuesImpl.prototype.getValue =
  *                       might make a difference.
  * @return {Object} The new instance.
  */
-org.apache.flex.core.IValuesImpl.prototype.newInstance =
+org_apache_flex_core_IValuesImpl.prototype.newInstance =
 function(thisObject, valueName, opt_state, opt_attrs) {};
 
 
@@ -70,4 +70,4 @@ function(thisObject, valueName, opt_state, opt_attrs) {};
  * @expose
  * @param {Object} mainclass The main class for the application.
  */
-org.apache.flex.core.IValuesImpl.prototype.init = function(mainclass) {};
+org_apache_flex_core_IValuesImpl.prototype.init = function(mainclass) {};

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/ItemRendererClassFactory.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/ItemRendererClassFactory.js b/frameworks/js/FlexJS/src/org/apache/flex/core/ItemRendererClassFactory.js
index cf34ab7..e9f41be 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/ItemRendererClassFactory.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/ItemRendererClassFactory.js
@@ -12,19 +12,19 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.ItemRendererClassFactory');
+goog.provide('org_apache_flex_core_ItemRendererClassFactory');
 
-goog.require('mx.core.ClassFactory');
-goog.require('org.apache.flex.core.IItemRendererClassFactory');
-goog.require('org.apache.flex.core.ValuesManager');
+goog.require('mx_core_ClassFactory');
+goog.require('org_apache_flex_core_IItemRendererClassFactory');
+goog.require('org_apache_flex_core_ValuesManager');
 
 
 
 /**
  * @constructor
- * @implements {org.apache.flex.core.IItemRendererClassFactory}
+ * @implements {org_apache_flex_core_IItemRendererClassFactory}
  */
-org.apache.flex.core.ItemRendererClassFactory = function() {
+org_apache_flex_core_ItemRendererClassFactory = function() {
   /**
    * @type {Function}
    */
@@ -37,18 +37,18 @@ org.apache.flex.core.ItemRendererClassFactory = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.ItemRendererClassFactory.
+org_apache_flex_core_ItemRendererClassFactory.
     prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ItemRendererClassFactory',
-                qName: 'org.apache.flex.core.ItemRendererClassFactory'}],
-      interfaces: [org.apache.flex.core.IItemRendererClassFactory] };
+                qName: 'org_apache_flex_core_ItemRendererClassFactory'}],
+      interfaces: [org_apache_flex_core_IItemRendererClassFactory] };
 
 
 /**
  * @expose
  * @param {Object} value The component strand.
  */
-org.apache.flex.core.ItemRendererClassFactory.
+org_apache_flex_core_ItemRendererClassFactory.
     prototype.set_strand = function(value) {
   this.strand_ = value;
 
@@ -62,12 +62,12 @@ org.apache.flex.core.ItemRendererClassFactory.
     }
   }
 
-  if (org.apache.flex.core.ValuesManager.valuesImpl.getValue) {
+  if (org_apache_flex_core_ValuesManager.valuesImpl.getValue) {
     this.itemRendererClass =
-            /** @type {Function} */ (org.apache.flex.core.ValuesManager.valuesImpl.
+            /** @type {Function} */ (org_apache_flex_core_ValuesManager.valuesImpl.
         getValue(this.strand_, 'iItemRenderer'));
     if (this.itemRendererClass) {
-      this.itemRendererClassFactory = new mx.core.ClassFactory(this.itemRendererClass);
+      this.itemRendererClassFactory = new mx_core_ClassFactory(this.itemRendererClass);
       this.createFunction = this.createFromClass;
     }
   }
@@ -79,7 +79,7 @@ org.apache.flex.core.ItemRendererClassFactory.
  * @param {Object} parent The display parent of the new item renderer.
  * @return {Object} The new item renderer.
  */
-org.apache.flex.core.ItemRendererClassFactory.
+org_apache_flex_core_ItemRendererClassFactory.
     prototype.createItemRenderer = function(parent) {
   return this.createFunction(parent);
 };
@@ -90,7 +90,7 @@ org.apache.flex.core.ItemRendererClassFactory.
  * @param {Object} parent The parent of the new item renderer.
  * @return {Object} The new item renderer.
  */
-org.apache.flex.core.ItemRendererClassFactory.
+org_apache_flex_core_ItemRendererClassFactory.
     prototype.createFromClass = function(parent) {
   var renderer = this.itemRendererClassFactory.newInstance();
   parent.addElement(renderer);

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/ListBase.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/ListBase.js b/frameworks/js/FlexJS/src/org/apache/flex/core/ListBase.js
index dad506b..54c43e5 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/ListBase.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/ListBase.js
@@ -12,19 +12,19 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.ListBase');
+goog.provide('org_apache_flex_core_ListBase');
 
-goog.require('org.apache.flex.core.UIBase');
-goog.require('org.apache.flex.html.supportClasses.StringItemRenderer');
+goog.require('org_apache_flex_core_UIBase');
+goog.require('org_apache_flex_html_supportClasses_StringItemRenderer');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.UIBase}
+ * @extends {org_apache_flex_core_UIBase}
  */
-org.apache.flex.core.ListBase = function() {
-  org.apache.flex.core.ListBase.base(this, 'constructor');
+org_apache_flex_core_ListBase = function() {
+  org_apache_flex_core_ListBase.base(this, 'constructor');
 
   /**
    * @protected
@@ -38,8 +38,8 @@ org.apache.flex.core.ListBase = function() {
    */
   this.selectedIndex_ = -1;
 };
-goog.inherits(org.apache.flex.core.ListBase,
-    org.apache.flex.core.UIBase);
+goog.inherits(org_apache_flex_core_ListBase,
+    org_apache_flex_core_UIBase);
 
 
 /**
@@ -47,15 +47,15 @@ goog.inherits(org.apache.flex.core.ListBase,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.ListBase.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_ListBase.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ListBase',
-                qName: 'org.apache.flex.core.ListBase' }] };
+                qName: 'org_apache_flex_core_ListBase' }] };
 
 
 /**
  * @override
  */
-org.apache.flex.core.ListBase.prototype.createElement = function() {
+org_apache_flex_core_ListBase.prototype.createElement = function() {
   //  this.element = document.createElement('select');
   //  goog.events.listen(this.element, 'change',
   //      goog.bind(this.changeHandler, this));
@@ -75,7 +75,7 @@ org.apache.flex.core.ListBase.prototype.createElement = function() {
  * @expose
  * @return {Array.<Object>} The collection of data.
  */
-org.apache.flex.core.ListBase.prototype.get_dataProvider =
+org_apache_flex_core_ListBase.prototype.get_dataProvider =
     function() {
   return this.get_model().get_dataProvider();
 };
@@ -85,7 +85,7 @@ org.apache.flex.core.ListBase.prototype.get_dataProvider =
  * @expose
  * @param {Array.<Object>} value The text setter.
  */
-org.apache.flex.core.ListBase.prototype.set_dataProvider =
+org_apache_flex_core_ListBase.prototype.set_dataProvider =
     function(value) {
   this.get_model().set_dataProvider(value);
 };
@@ -95,7 +95,7 @@ org.apache.flex.core.ListBase.prototype.set_dataProvider =
  * @expose
  * @return {number} The selected index.
  */
-org.apache.flex.core.ListBase.prototype.get_selectedIndex =
+org_apache_flex_core_ListBase.prototype.get_selectedIndex =
     function() {
   return this.get_model().get_selectedIndex();
 };
@@ -105,7 +105,7 @@ org.apache.flex.core.ListBase.prototype.get_selectedIndex =
  * @expose
  * @param {number} value The selected index.
  */
-org.apache.flex.core.ListBase.prototype.set_selectedIndex =
+org_apache_flex_core_ListBase.prototype.set_selectedIndex =
     function(value) {
   this.get_model().set_selectedIndex(value);
 };
@@ -115,7 +115,7 @@ org.apache.flex.core.ListBase.prototype.set_selectedIndex =
  * @expose
  * @return {Object} The selected item.
  */
-org.apache.flex.core.ListBase.prototype.get_selectedItem =
+org_apache_flex_core_ListBase.prototype.get_selectedItem =
     function() {
   return this.get_model().get_selectedItem();
 };
@@ -125,7 +125,7 @@ org.apache.flex.core.ListBase.prototype.get_selectedItem =
  * @expose
  * @param {Object} value The selected item.
  */
-org.apache.flex.core.ListBase.prototype.set_selectedItem =
+org_apache_flex_core_ListBase.prototype.set_selectedItem =
     function(value) {
   this.get_model().set_selectedItem(value);
 };
@@ -134,7 +134,7 @@ org.apache.flex.core.ListBase.prototype.set_selectedItem =
 /**
  * @protected
  */
-org.apache.flex.core.ListBase.prototype.changeHandler =
+org_apache_flex_core_ListBase.prototype.changeHandler =
     function() {
   this.dispatchEvent('change');
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleCSSValuesImpl.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleCSSValuesImpl.js b/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleCSSValuesImpl.js
index 6c538dc..e39ab75 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleCSSValuesImpl.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleCSSValuesImpl.js
@@ -12,30 +12,30 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.SimpleCSSValuesImpl');
+goog.provide('org_apache_flex_core_SimpleCSSValuesImpl');
 
-goog.require('org.apache.flex.core.IValuesImpl');
+goog.require('org_apache_flex_core_IValuesImpl');
 
 
 
 /**
  * @constructor
- * @implements {org.apache.flex.core.IValuesImpl};
+ * @implements {org_apache_flex_core_IValuesImpl};
  */
-org.apache.flex.core.SimpleCSSValuesImpl = function() {
+org_apache_flex_core_SimpleCSSValuesImpl = function() {
 };
 
 
 /**
  * @type {string}
  */
-org.apache.flex.core.SimpleCSSValuesImpl.GLOBAL_SELECTOR = 'global';
+org_apache_flex_core_SimpleCSSValuesImpl.GLOBAL_SELECTOR = 'global';
 
 
 /**
  * @type {string}
  */
-org.apache.flex.core.SimpleCSSValuesImpl.UNIVERSAL_SELECTOR = '*';
+org_apache_flex_core_SimpleCSSValuesImpl.UNIVERSAL_SELECTOR = '*';
 
 
 /**
@@ -43,10 +43,10 @@ org.apache.flex.core.SimpleCSSValuesImpl.UNIVERSAL_SELECTOR = '*';
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.SimpleCSSValuesImpl.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_SimpleCSSValuesImpl.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'SimpleCSSValuesImpl',
-               qName: 'org.apache.flex.core.SimpleCSSValuesImpl'}],
-    interfaces: [org.apache.flex.core.IValuesImpl]};
+               qName: 'org_apache_flex_core_SimpleCSSValuesImpl'}],
+    interfaces: [org_apache_flex_core_IValuesImpl]};
 
 
 /**
@@ -57,7 +57,7 @@ org.apache.flex.core.SimpleCSSValuesImpl.prototype.FLEXJS_CLASS_INFO =
  *                       might make a difference.
  * @return {Object} The value.
  */
-org.apache.flex.core.SimpleCSSValuesImpl.prototype.getValue =
+org_apache_flex_core_SimpleCSSValuesImpl.prototype.getValue =
     function(thisObject, valueName, opt_state, opt_attrs) {
   var c = valueName.indexOf('-');
   while (c != -1)
@@ -162,10 +162,10 @@ org.apache.flex.core.SimpleCSSValuesImpl.prototype.getValue =
 
     cName = thisObject.FLEXJS_CLASS_INFO.names[0].qName;
   }
-  o = values[org.apache.flex.core.SimpleCSSValuesImpl.GLOBAL_SELECTOR];
+  o = values[org_apache_flex_core_SimpleCSSValuesImpl.GLOBAL_SELECTOR];
   if (o)
     return o[valueName];
-  o = values[org.apache.flex.core.SimpleCSSValuesImpl.UNIVERSAL_SELECTOR];
+  o = values[org_apache_flex_core_SimpleCSSValuesImpl.UNIVERSAL_SELECTOR];
   if (o)
     return o[valueName];
   return undefined;
@@ -181,7 +181,7 @@ org.apache.flex.core.SimpleCSSValuesImpl.prototype.getValue =
  * @return {Object} The value.
  * @suppress {checkTypes}
  */
-org.apache.flex.core.SimpleCSSValuesImpl.prototype.newInstance =
+org_apache_flex_core_SimpleCSSValuesImpl.prototype.newInstance =
 function(thisObject, valueName, opt_state, opt_attrs) {
   var f = this.getValue(thisObject, valueName, opt_state, opt_attrs);
   if (f)
@@ -193,7 +193,7 @@ function(thisObject, valueName, opt_state, opt_attrs) {
 /**
  * @param {Object} mainclass The main class for the application.
  */
-org.apache.flex.core.SimpleCSSValuesImpl.prototype.init = function(mainclass) {
+org_apache_flex_core_SimpleCSSValuesImpl.prototype.init = function(mainclass) {
   var cssData = mainclass.cssData;
   var values = this.values;
   if (values == null)
@@ -237,7 +237,7 @@ org.apache.flex.core.SimpleCSSValuesImpl.prototype.init = function(mainclass) {
  * @param {string} styles The styles as HTML style syntax.
  * @return {Object} The styles object.
  */
-org.apache.flex.core.SimpleCSSValuesImpl.prototype.parseStyles = function(styles) {
+org_apache_flex_core_SimpleCSSValuesImpl.prototype.parseStyles = function(styles) {
   var obj = {};
   var parts = styles.split(';');
   var l = parts.length;
@@ -269,7 +269,7 @@ org.apache.flex.core.SimpleCSSValuesImpl.prototype.parseStyles = function(styles
 /**
  * The styles that apply to each UI widget
  */
-org.apache.flex.core.SimpleCSSValuesImpl.perInstanceStyles = {
+org_apache_flex_core_SimpleCSSValuesImpl.perInstanceStyles = {
    'backgroundColor': 1,
    'backgroundImage': 1,
    'color': 1,
@@ -283,7 +283,7 @@ org.apache.flex.core.SimpleCSSValuesImpl.perInstanceStyles = {
 /**
  * The styles that use color format #RRGGBB
  */
-org.apache.flex.core.SimpleCSSValuesImpl.colorStyles = {
+org_apache_flex_core_SimpleCSSValuesImpl.colorStyles = {
    'backgroundColor': 1,
    'borderColor': 1,
    'color': 1
@@ -294,10 +294,10 @@ org.apache.flex.core.SimpleCSSValuesImpl.colorStyles = {
  * @param {Object} thisObject The object to apply styles to;
  * @param {Object} styles The styles.
  */
-org.apache.flex.core.SimpleCSSValuesImpl.prototype.applyStyles =
+org_apache_flex_core_SimpleCSSValuesImpl.prototype.applyStyles =
     function(thisObject, styles) {
-  var styleList = org.apache.flex.core.SimpleCSSValuesImpl.perInstanceStyles;
-  var colorStyles = org.apache.flex.core.SimpleCSSValuesImpl.colorStyles;
+  var styleList = org_apache_flex_core_SimpleCSSValuesImpl.perInstanceStyles;
+  var colorStyles = org_apache_flex_core_SimpleCSSValuesImpl.colorStyles;
   for (var p in styles) {
     //if (styleList[p])
     var value = styles[p];

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleStatesImpl.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleStatesImpl.js b/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleStatesImpl.js
index 88cf053..c5780f5 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleStatesImpl.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleStatesImpl.js
@@ -12,37 +12,37 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.SimpleStatesImpl');
+goog.provide('org_apache_flex_core_SimpleStatesImpl');
 
-goog.require('mx.states.AddItems');
-goog.require('mx.states.SetEventHandler');
-goog.require('mx.states.SetProperty');
-goog.require('mx.states.State');
-goog.require('org.apache.flex.core.IBead');
-goog.require('org.apache.flex.core.IStatesImpl');
-goog.require('org.apache.flex.core.IStrand');
-goog.require('org.apache.flex.core.UIBase');
-goog.require('org.apache.flex.events.EventDispatcher');
+goog.require('mx_states_AddItems');
+goog.require('mx_states_SetEventHandler');
+goog.require('mx_states_SetProperty');
+goog.require('mx_states_State');
+goog.require('org_apache_flex_core_IBead');
+goog.require('org_apache_flex_core_IStatesImpl');
+goog.require('org_apache_flex_core_IStrand');
+goog.require('org_apache_flex_core_UIBase');
+goog.require('org_apache_flex_events_EventDispatcher');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.events.EventDispatcher}
- * @implements {org.apache.flex.core.IBead}
- * @implements {org.apache.flex.core.IStatesImpl}
+ * @extends {org_apache_flex_events_EventDispatcher}
+ * @implements {org_apache_flex_core_IBead}
+ * @implements {org_apache_flex_core_IStatesImpl}
  */
-org.apache.flex.core.SimpleStatesImpl = function() {
-  org.apache.flex.core.SimpleStatesImpl.base(this, 'constructor');
+org_apache_flex_core_SimpleStatesImpl = function() {
+  org_apache_flex_core_SimpleStatesImpl.base(this, 'constructor');
 
   /**
    * @private
-   * @type {org.apache.flex.core.IStrand}
+   * @type {org_apache_flex_core_IStrand}
    */
   this.strand_ = null;
 };
-goog.inherits(org.apache.flex.core.SimpleStatesImpl,
-    org.apache.flex.events.EventDispatcher);
+goog.inherits(org_apache_flex_core_SimpleStatesImpl,
+    org_apache_flex_events_EventDispatcher);
 
 
 /**
@@ -50,18 +50,18 @@ goog.inherits(org.apache.flex.core.SimpleStatesImpl,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.SimpleStatesImpl.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_SimpleStatesImpl.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'SimpleStatesImpl',
-                qName: 'org.apache.flex.core.SimpleStatesImpl' }],
-      interfaces: [org.apache.flex.core.IBead,
-                   org.apache.flex.core.IStatesImpl] };
+                qName: 'org_apache_flex_core_SimpleStatesImpl' }],
+      interfaces: [org_apache_flex_core_IBead,
+                   org_apache_flex_core_IStatesImpl] };
 
 
 /**
  * @expose
- * @param {org.apache.flex.core.IStrand} value The new host.
+ * @param {org_apache_flex_core_IStrand} value The new host.
  */
-org.apache.flex.core.SimpleStatesImpl.prototype.set_strand =
+org_apache_flex_core_SimpleStatesImpl.prototype.set_strand =
     function(value) {
   if (this.strand_ !== value) {
     this.strand_ = value;
@@ -79,13 +79,13 @@ org.apache.flex.core.SimpleStatesImpl.prototype.set_strand =
  * @private
  * @param {Object} event The event.
  */
-org.apache.flex.core.SimpleStatesImpl.prototype.initialStateHandler_ =
+org_apache_flex_core_SimpleStatesImpl.prototype.initialStateHandler_ =
     function(event) {
     /**
      *  @type {Object}
     **/
     var host = this.strand_;
-    this.dispatchEvent(new org.apache.flex.events.ValueChangeEvent('currentStateChange',
+    this.dispatchEvent(new org_apache_flex_events_ValueChangeEvent('currentStateChange',
         false, false, null,
         host.get_currentState()));
   };
@@ -95,7 +95,7 @@ org.apache.flex.core.SimpleStatesImpl.prototype.initialStateHandler_ =
  * @private
  * @param {Object} event The event.
  */
-org.apache.flex.core.SimpleStatesImpl.prototype.stateChangeHandler_ =
+org_apache_flex_core_SimpleStatesImpl.prototype.stateChangeHandler_ =
     function(event) {
   var arr, doc, p, s;
 
@@ -121,18 +121,18 @@ org.apache.flex.core.SimpleStatesImpl.prototype.stateChangeHandler_ =
 
 /**
  * @private
- * @param {mx.states.State} s The State to revert.
+ * @param {mx_states_State} s The State to revert.
  */
-org.apache.flex.core.SimpleStatesImpl.prototype.revert_ = function(s) {
+org_apache_flex_core_SimpleStatesImpl.prototype.revert_ = function(s) {
   var arr, item, o, p, q, target;
   /**
-   * @type {org.apache.flex.core.UIBase}
+   * @type {org_apache_flex_core_UIBase}
    */
   var parent;
   arr = s.overrides;
   for (p in arr) {
     o = arr[p];
-    if (org.apache.flex.utils.Language.is(o, mx.states.AddItems)) {
+    if (org_apache_flex_utils_Language.is(o, mx_states_AddItems)) {
       for (q in o.items) {
         item = o.items[q];
 
@@ -147,9 +147,9 @@ org.apache.flex.core.SimpleStatesImpl.prototype.revert_ = function(s) {
 
         parent.removeElement(item);
         parent.dispatchEvent(
-            new org.apache.flex.events.Event('childrenAdded'));
+            new org_apache_flex_events_Event('childrenAdded'));
       }
-    } else if (org.apache.flex.utils.Language.is(o, mx.states.SetProperty)) {
+    } else if (org_apache_flex_utils_Language.is(o, mx_states_SetProperty)) {
       if (typeof(o.document['get_' + o.target]) === 'function') {
         target = o.document['get_' + o.target]();
       } else {
@@ -161,7 +161,7 @@ org.apache.flex.core.SimpleStatesImpl.prototype.revert_ = function(s) {
       } else {
         target[o.name] = o.previousValue;
       }
-    } else if (org.apache.flex.utils.Language.is(o, mx.states.SetEventHandler)) {
+    } else if (org_apache_flex_utils_Language.is(o, mx_states_SetEventHandler)) {
       if (typeof(o.document['get_' + o.target]) === 'function') {
         target = o.document['get_' + o.target]();
       } else {
@@ -175,23 +175,23 @@ org.apache.flex.core.SimpleStatesImpl.prototype.revert_ = function(s) {
 
 /**
  * @private
- * @param {mx.states.State} s The State to apply.
+ * @param {mx_states_State} s The State to apply.
  */
-org.apache.flex.core.SimpleStatesImpl.prototype.apply_ = function(s) {
+org_apache_flex_core_SimpleStatesImpl.prototype.apply_ = function(s) {
   var arr, child, index, item, o, p, q, target;
   /**
-   * type {org.apache.flex.core.UIBase}
+   * type {org_apache_flex_core_UIBase}
    */
   var parent;
   arr = s.overrides;
   for (p in arr) {
     o = arr[p];
-    if (org.apache.flex.utils.Language.is(o, mx.states.AddItems)) {
+    if (org_apache_flex_utils_Language.is(o, mx_states_AddItems)) {
       if (!o.items) {
         o.items = o.itemsDescriptor.items;
         if (o.items == null) {
           o.items =
-              org.apache.flex.utils.MXMLDataInterpreter.generateMXMLArray(o.document,
+              org_apache_flex_utils_MXMLDataInterpreter.generateMXMLArray(o.document,
                                     null, o.itemsDescriptor.descriptor);
           o.itemsDescriptor.items = o.items;
         }
@@ -227,10 +227,10 @@ org.apache.flex.core.SimpleStatesImpl.prototype.apply_ = function(s) {
         }
 
         parent.dispatchEvent(
-            new org.apache.flex.events.Event('childrenAdded'));
+            new org_apache_flex_events_Event('childrenAdded'));
       }
     }
-    else if (org.apache.flex.utils.Language.is(o, mx.states.SetProperty))
+    else if (org_apache_flex_utils_Language.is(o, mx_states_SetProperty))
     {
       if (typeof(o.document['get_' + o.target]) === 'function') {
         target = o.document['get_' + o.target]();
@@ -249,7 +249,7 @@ org.apache.flex.core.SimpleStatesImpl.prototype.apply_ = function(s) {
       } else {
         target[o.name] = o.value;
       }
-    } else if (org.apache.flex.utils.Language.is(o, mx.states.SetEventHandler)) {
+    } else if (org_apache_flex_utils_Language.is(o, mx_states_SetEventHandler)) {
       if (typeof(o.document['get_' + o.target]) === 'function') {
         target = o.document['get_' + o.target]();
       } else {

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleValuesImpl.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleValuesImpl.js b/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleValuesImpl.js
index aef2a83..39ca383 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleValuesImpl.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleValuesImpl.js
@@ -12,14 +12,14 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.SimpleValuesImpl');
+goog.provide('org_apache_flex_core_SimpleValuesImpl');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.core.SimpleValuesImpl = function() {
+org_apache_flex_core_SimpleValuesImpl = function() {
 };
 
 
@@ -28,6 +28,6 @@ org.apache.flex.core.SimpleValuesImpl = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.SimpleValuesImpl.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_SimpleValuesImpl.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'SimpleValuesImpl',
-                qName: 'org.apache.flex.core.SimpleValuesImpl' }] };
+                qName: 'org_apache_flex_core_SimpleValuesImpl' }] };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js b/frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js
index 04f5063..cd71d13 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js
@@ -12,31 +12,31 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.UIBase');
+goog.provide('org_apache_flex_core_UIBase');
 
-goog.require('org.apache.flex.core.HTMLElementWrapper');
-goog.require('org.apache.flex.core.IBeadController');
-goog.require('org.apache.flex.core.IBeadLayout');
-goog.require('org.apache.flex.core.IBeadModel');
-goog.require('org.apache.flex.core.IBeadView');
-goog.require('org.apache.flex.core.ILayoutChild');
-goog.require('org.apache.flex.core.IParentIUIBase');
-goog.require('org.apache.flex.core.IStyleableObject');
-goog.require('org.apache.flex.core.IUIBase');
-goog.require('org.apache.flex.core.ValuesManager');
-goog.require('org.apache.flex.events.ValueChangeEvent');
+goog.require('org_apache_flex_core_HTMLElementWrapper');
+goog.require('org_apache_flex_core_IBeadController');
+goog.require('org_apache_flex_core_IBeadLayout');
+goog.require('org_apache_flex_core_IBeadModel');
+goog.require('org_apache_flex_core_IBeadView');
+goog.require('org_apache_flex_core_ILayoutChild');
+goog.require('org_apache_flex_core_IParentIUIBase');
+goog.require('org_apache_flex_core_IStyleableObject');
+goog.require('org_apache_flex_core_IUIBase');
+goog.require('org_apache_flex_core_ValuesManager');
+goog.require('org_apache_flex_events_ValueChangeEvent');
 
 
 
 /**
  * @constructor
- * @implements {org.apache.flex.core.IUIBase}
- * @implements {org.apache.flex.core.ILayoutChild}
- * @implements {org.apache.flex.core.IParentIUIBase}
- * @extends {org.apache.flex.core.HTMLElementWrapper}
+ * @implements {org_apache_flex_core_IUIBase}
+ * @implements {org_apache_flex_core_ILayoutChild}
+ * @implements {org_apache_flex_core_IParentIUIBase}
+ * @extends {org_apache_flex_core_HTMLElementWrapper}
  */
-org.apache.flex.core.UIBase = function() {
-  org.apache.flex.core.UIBase.base(this, 'constructor');
+org_apache_flex_core_UIBase = function() {
+  org_apache_flex_core_UIBase.base(this, 'constructor');
 
   /**
    * @private
@@ -84,8 +84,8 @@ org.apache.flex.core.UIBase = function() {
 
   this.createElement();
 };
-goog.inherits(org.apache.flex.core.UIBase,
-    org.apache.flex.core.HTMLElementWrapper);
+goog.inherits(org_apache_flex_core_UIBase,
+    org_apache_flex_core_HTMLElementWrapper);
 
 
 /**
@@ -93,20 +93,20 @@ goog.inherits(org.apache.flex.core.UIBase,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.UIBase.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_UIBase.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'UIBase',
-                qName: 'org.apache.flex.core.UIBase' }],
-      interfaces: [org.apache.flex.core.IUIBase,
-                   org.apache.flex.core.IParentIUIBase,
-                   org.apache.flex.core.ILayoutChild,
-                   org.apache.flex.core.IStyleableObject] };
+                qName: 'org_apache_flex_core_UIBase' }],
+      interfaces: [org_apache_flex_core_IUIBase,
+                   org_apache_flex_core_IParentIUIBase,
+                   org_apache_flex_core_ILayoutChild,
+                   org_apache_flex_core_IStyleableObject] };
 
 
 /**
  * @expose
  * @param {Array.<Object>} value The list of beads from MXML.
  */
-org.apache.flex.core.UIBase.prototype.set_beads = function(value) {
+org_apache_flex_core_UIBase.prototype.set_beads = function(value) {
   this.mxmlBeads_ = value;
 };
 
@@ -115,13 +115,13 @@ org.apache.flex.core.UIBase.prototype.set_beads = function(value) {
  * @expose
  * @type {Object}
  */
-org.apache.flex.core.UIBase.prototype.positioner = null;
+org_apache_flex_core_UIBase.prototype.positioner = null;
 
 
 /**
  * @return {Object} The array of children.
  */
-org.apache.flex.core.UIBase.prototype.internalChildren =
+org_apache_flex_core_UIBase.prototype.internalChildren =
     function() {
   return this.element.childNodes;
 };
@@ -131,7 +131,7 @@ org.apache.flex.core.UIBase.prototype.internalChildren =
  * @protected
  * @return {Object} The actual element to be parented.
  */
-org.apache.flex.core.UIBase.prototype.createElement = function() {
+org_apache_flex_core_UIBase.prototype.createElement = function() {
   if (this.element == null)
     this.element = document.createElement('div');
   if (this.positioner == null)
@@ -148,13 +148,13 @@ org.apache.flex.core.UIBase.prototype.createElement = function() {
  * @protected
  * @type {?function()}
  */
-org.apache.flex.core.UIBase.prototype.finalizeElement = null;
+org_apache_flex_core_UIBase.prototype.finalizeElement = null;
 
 
 /**
  * @param {Object} c The child element.
  */
-org.apache.flex.core.UIBase.prototype.addElement = function(c) {
+org_apache_flex_core_UIBase.prototype.addElement = function(c) {
   this.element.appendChild(c.positioner);
   c.addedToParent();
 };
@@ -164,7 +164,7 @@ org.apache.flex.core.UIBase.prototype.addElement = function(c) {
  * @param {Object} c The child element.
  * @param {number} index The index.
  */
-org.apache.flex.core.UIBase.prototype.addElementAt = function(c, index) {
+org_apache_flex_core_UIBase.prototype.addElementAt = function(c, index) {
   var children = this.internalChildren();
   if (index >= children.length)
     this.addElement(c);
@@ -181,7 +181,7 @@ org.apache.flex.core.UIBase.prototype.addElementAt = function(c, index) {
  * @param {number} index The index in parent.
  * @return {Object} The child element.
  */
-org.apache.flex.core.UIBase.prototype.getElementAt = function(index) {
+org_apache_flex_core_UIBase.prototype.getElementAt = function(index) {
   var children = this.internalChildren();
   return children[index].flexjs_wrapper;
 };
@@ -191,7 +191,7 @@ org.apache.flex.core.UIBase.prototype.getElementAt = function(index) {
  * @param {Object} c The child element.
  * @return {number} The index in parent.
  */
-org.apache.flex.core.UIBase.prototype.getElementIndex = function(c) {
+org_apache_flex_core_UIBase.prototype.getElementIndex = function(c) {
   var children = this.internalChildren();
   var n = children.length;
   for (var i = 0; i < n; i++)
@@ -206,7 +206,7 @@ org.apache.flex.core.UIBase.prototype.getElementIndex = function(c) {
 /**
  * @param {Object} c The child element.
  */
-org.apache.flex.core.UIBase.prototype.removeElement = function(c) {
+org_apache_flex_core_UIBase.prototype.removeElement = function(c) {
   this.element.removeChild(c.element);
 };
 
@@ -214,7 +214,7 @@ org.apache.flex.core.UIBase.prototype.removeElement = function(c) {
 /**
  * @return {number} The number of child elements.
  */
-org.apache.flex.core.UIBase.prototype.get_numElements = function() {
+org_apache_flex_core_UIBase.prototype.get_numElements = function() {
   var children = this.internalChildren();
   return children.length;
 };
@@ -223,7 +223,7 @@ org.apache.flex.core.UIBase.prototype.get_numElements = function() {
 /**
  * @return {Object} The parent of this object.
  */
-org.apache.flex.core.UIBase.prototype.get_parent = function() {
+org_apache_flex_core_UIBase.prototype.get_parent = function() {
   var p = this.positioner.parentNode;
   var wrapper = p.flexjs_wrapper;
   return wrapper;
@@ -232,11 +232,11 @@ org.apache.flex.core.UIBase.prototype.get_parent = function() {
 
 /**
  */
-org.apache.flex.core.UIBase.prototype.addedToParent = function() {
+org_apache_flex_core_UIBase.prototype.addedToParent = function() {
 
   var styles = this.get_style();
   if (styles)
-    org.apache.flex.core.ValuesManager.valuesImpl.applyStyles(this, styles);
+    org_apache_flex_core_ValuesManager.valuesImpl.applyStyles(this, styles);
 
   if (this.mxmlBeads_) {
     var n = this.mxmlBeads_.length;
@@ -249,10 +249,10 @@ org.apache.flex.core.UIBase.prototype.addedToParent = function() {
    * @type {Function}
    */
   var c;
-  if (this.getBeadByType(org.apache.flex.core.IBeadModel) == null)
+  if (this.getBeadByType(org_apache_flex_core_IBeadModel) == null)
   {
-    if (org.apache.flex.core.ValuesManager.valuesImpl.getValue) {
-      c = /** @type {Function} */ (org.apache.flex.core.ValuesManager.valuesImpl.
+    if (org_apache_flex_core_ValuesManager.valuesImpl.getValue) {
+      c = /** @type {Function} */ (org_apache_flex_core_ValuesManager.valuesImpl.
           getValue(this, 'iBeadModel'));
       if (c)
       {
@@ -262,10 +262,10 @@ org.apache.flex.core.UIBase.prototype.addedToParent = function() {
       }
     }
   }
-  if (this.getBeadByType(org.apache.flex.core.IBeadView) == null)
+  if (this.getBeadByType(org_apache_flex_core_IBeadView) == null)
   {
-    if (org.apache.flex.core.ValuesManager.valuesImpl.getValue) {
-      c = /** @type {Function} */ (org.apache.flex.core.ValuesManager.valuesImpl.
+    if (org_apache_flex_core_ValuesManager.valuesImpl.getValue) {
+      c = /** @type {Function} */ (org_apache_flex_core_ValuesManager.valuesImpl.
           getValue(this, 'iBeadView'));
       if (c)
       {
@@ -275,10 +275,10 @@ org.apache.flex.core.UIBase.prototype.addedToParent = function() {
       }
     }
   }
-  if (this.getBeadByType(org.apache.flex.core.IBeadLayout) == null)
+  if (this.getBeadByType(org_apache_flex_core_IBeadLayout) == null)
   {
-    if (org.apache.flex.core.ValuesManager.valuesImpl.getValue) {
-      c = /** @type {Function} */ (org.apache.flex.core.ValuesManager.valuesImpl.
+    if (org_apache_flex_core_ValuesManager.valuesImpl.getValue) {
+      c = /** @type {Function} */ (org_apache_flex_core_ValuesManager.valuesImpl.
           getValue(this, 'iBeadLayout'));
       if (c)
       {
@@ -288,10 +288,10 @@ org.apache.flex.core.UIBase.prototype.addedToParent = function() {
       }
     }
   }
-  if (this.getBeadByType(org.apache.flex.core.IBeadController) == null)
+  if (this.getBeadByType(org_apache_flex_core_IBeadController) == null)
   {
-    if (org.apache.flex.core.ValuesManager.valuesImpl.getValue) {
-      c = /** @type {Function} */ (org.apache.flex.core.ValuesManager.valuesImpl.
+    if (org_apache_flex_core_ValuesManager.valuesImpl.getValue) {
+      c = /** @type {Function} */ (org_apache_flex_core_ValuesManager.valuesImpl.
           getValue(this, 'iBeadController'));
       if (c)
       {
@@ -307,17 +307,17 @@ org.apache.flex.core.UIBase.prototype.addedToParent = function() {
 /**
  * @param {Object} bead The bead to be added.
  */
-org.apache.flex.core.UIBase.prototype.addBead = function(bead) {
+org_apache_flex_core_UIBase.prototype.addBead = function(bead) {
   if (!this.beads_) {
     this.beads_ = [];
   }
   this.beads_.push(bead);
 
-  if (org.apache.flex.utils.Language.is(bead, org.apache.flex.core.IBeadModel))
+  if (org_apache_flex_utils_Language.is(bead, org_apache_flex_core_IBeadModel))
     this.model = bead;
 
-  if (org.apache.flex.utils.Language.is(bead, org.apache.flex.core.IBeadView)) {
-    this.dispatchEvent(new org.apache.flex.events.Event('viewChanged'));
+  if (org_apache_flex_utils_Language.is(bead, org_apache_flex_core_IBeadView)) {
+    this.dispatchEvent(new org_apache_flex_events_Event('viewChanged'));
   }
 
   bead.set_strand(this);
@@ -328,14 +328,14 @@ org.apache.flex.core.UIBase.prototype.addBead = function(bead) {
  * @param {Object} classOrInterface A type or interface.
  * @return {Object} The bead of the given type or null.
  */
-org.apache.flex.core.UIBase.prototype.getBeadByType =
+org_apache_flex_core_UIBase.prototype.getBeadByType =
     function(classOrInterface) {
   if (!this.beads_) {
     this.beads_ = [];
   }
   for (var i = 0; i < this.beads_.length; i++) {
     var bead = this.beads_[i];
-    if (org.apache.flex.utils.Language.is(bead, classOrInterface)) {
+    if (org_apache_flex_utils_Language.is(bead, classOrInterface)) {
       return bead;
     }
   }
@@ -347,7 +347,7 @@ org.apache.flex.core.UIBase.prototype.getBeadByType =
  * @param {Object} value The bead to be removed.
  * @return {Object} The bead that was removed.
  */
-org.apache.flex.core.UIBase.prototype.removeBead =
+org_apache_flex_core_UIBase.prototype.removeBead =
     function(value) {
   if (!this.beads_) return null;
   var n = this.beads_.length;
@@ -367,7 +367,7 @@ org.apache.flex.core.UIBase.prototype.removeBead =
  * @expose
  * @param {number} alpha The alpha or opacity.
  */
-org.apache.flex.core.UIBase.prototype.set_alpha = function(alpha) {
+org_apache_flex_core_UIBase.prototype.set_alpha = function(alpha) {
   this.positioner.style.opacity = alpha;
 };
 
@@ -376,7 +376,7 @@ org.apache.flex.core.UIBase.prototype.set_alpha = function(alpha) {
  * @expose
  * @return {number} The alpha or opacity.
  */
-org.apache.flex.core.UIBase.prototype.get_alpha = function() {
+org_apache_flex_core_UIBase.prototype.get_alpha = function() {
   var stralpha = this.positioner.style.opacity;
   var alpha = parseFloat(stralpha);
   return alpha;
@@ -387,7 +387,7 @@ org.apache.flex.core.UIBase.prototype.get_alpha = function() {
  * @expose
  * @param {number} pixels The pixel count from the left edge.
  */
-org.apache.flex.core.UIBase.prototype.set_x = function(pixels) {
+org_apache_flex_core_UIBase.prototype.set_x = function(pixels) {
   this.positioner.style.position = 'absolute';
   this.positioner.style.left = pixels.toString() + 'px';
 };
@@ -397,7 +397,7 @@ org.apache.flex.core.UIBase.prototype.set_x = function(pixels) {
  * @expose
  * @return {number} The pixel count from the left edge.
  */
-org.apache.flex.core.UIBase.prototype.get_x = function() {
+org_apache_flex_core_UIBase.prototype.get_x = function() {
   var strpixels = this.positioner.style.left;
   var pixels = parseFloat(strpixels);
   if (isNaN(pixels))
@@ -410,7 +410,7 @@ org.apache.flex.core.UIBase.prototype.get_x = function() {
  * @expose
  * @param {number} pixels The pixel count from the top edge.
  */
-org.apache.flex.core.UIBase.prototype.set_y = function(pixels) {
+org_apache_flex_core_UIBase.prototype.set_y = function(pixels) {
   this.positioner.style.position = 'absolute';
   this.positioner.style.top = pixels.toString() + 'px';
 };
@@ -420,7 +420,7 @@ org.apache.flex.core.UIBase.prototype.set_y = function(pixels) {
  * @expose
  * @return {number} The pixel count from the top edge.
  */
-org.apache.flex.core.UIBase.prototype.get_y = function() {
+org_apache_flex_core_UIBase.prototype.get_y = function() {
   var strpixels = this.positioner.style.top;
   var pixels = parseFloat(strpixels);
   if (isNaN(pixels))
@@ -433,7 +433,7 @@ org.apache.flex.core.UIBase.prototype.get_y = function() {
  * @expose
  * @param {number} pixels The pixel count from the left edge.
  */
-org.apache.flex.core.UIBase.prototype.set_width = function(pixels) {
+org_apache_flex_core_UIBase.prototype.set_width = function(pixels) {
   this.set_explicitWidth(pixels);
   this.setWidth(pixels);
 };
@@ -443,7 +443,7 @@ org.apache.flex.core.UIBase.prototype.set_width = function(pixels) {
  * @expose
  * @return {number} The width of the object in pixels.
  */
-org.apache.flex.core.UIBase.prototype.get_width = function() {
+org_apache_flex_core_UIBase.prototype.get_width = function() {
   var pixels;
   var strpixels = this.positioner.style.width;
   if (strpixels !== null && strpixels.indexOf('%') != -1)
@@ -465,7 +465,7 @@ org.apache.flex.core.UIBase.prototype.get_width = function() {
  * @expose
  * @param {number} pixels The pixel count from the left edge.
  */
-org.apache.flex.core.UIBase.prototype.set_explicitWidth = function(pixels) {
+org_apache_flex_core_UIBase.prototype.set_explicitWidth = function(pixels) {
   this.explicitWidth_ = pixels;
   if (!isNaN(pixels))
     this.percentWidth_ = NaN;
@@ -476,7 +476,7 @@ org.apache.flex.core.UIBase.prototype.set_explicitWidth = function(pixels) {
  * @expose
  * @return {number} The width of the object in pixels.
  */
-org.apache.flex.core.UIBase.prototype.get_explicitWidth = function() {
+org_apache_flex_core_UIBase.prototype.get_explicitWidth = function() {
   return this.explicitWidth_;
 };
 
@@ -485,7 +485,7 @@ org.apache.flex.core.UIBase.prototype.get_explicitWidth = function() {
  * @expose
  * @param {number} pixels The percent width of the object.
  */
-org.apache.flex.core.UIBase.prototype.set_percentWidth = function(pixels) {
+org_apache_flex_core_UIBase.prototype.set_percentWidth = function(pixels) {
   this.percentWidth_ = pixels;
   this.positioner.style.width = pixels.toString() + '%';
   if (!isNaN(pixels))
@@ -497,7 +497,7 @@ org.apache.flex.core.UIBase.prototype.set_percentWidth = function(pixels) {
  * @expose
  * @return {number} The percent width of the object.
  */
-org.apache.flex.core.UIBase.prototype.get_percentWidth = function() {
+org_apache_flex_core_UIBase.prototype.get_percentWidth = function() {
   return this.percentWidth_;
 };
 
@@ -506,7 +506,7 @@ org.apache.flex.core.UIBase.prototype.get_percentWidth = function() {
  * @expose
  * @param {number} pixels The pixel count from the top edge.
  */
-org.apache.flex.core.UIBase.prototype.set_height = function(pixels) {
+org_apache_flex_core_UIBase.prototype.set_height = function(pixels) {
   this.set_explicitHeight(pixels);
   this.setHeight(pixels);
 };
@@ -516,7 +516,7 @@ org.apache.flex.core.UIBase.prototype.set_height = function(pixels) {
  * @expose
  * @return {number} The height of the object in pixels.
  */
-org.apache.flex.core.UIBase.prototype.get_height = function() {
+org_apache_flex_core_UIBase.prototype.get_height = function() {
   var pixels;
   var strpixels = this.positioner.style.height;
   if (strpixels !== null && strpixels.indexOf('%') != -1)
@@ -538,7 +538,7 @@ org.apache.flex.core.UIBase.prototype.get_height = function() {
  * @expose
  * @param {number} pixels The height of the object in pixels.
  */
-org.apache.flex.core.UIBase.prototype.set_explicitHeight = function(pixels) {
+org_apache_flex_core_UIBase.prototype.set_explicitHeight = function(pixels) {
   this.explicitHeight_ = pixels;
   if (!isNaN(pixels))
     this.percentHeight_ = NaN;
@@ -549,7 +549,7 @@ org.apache.flex.core.UIBase.prototype.set_explicitHeight = function(pixels) {
  * @expose
  * @return {number} The height of the object in pixels.
  */
-org.apache.flex.core.UIBase.prototype.get_explicitHeight = function() {
+org_apache_flex_core_UIBase.prototype.get_explicitHeight = function() {
   return this.explicitHeight_;
 };
 
@@ -558,7 +558,7 @@ org.apache.flex.core.UIBase.prototype.get_explicitHeight = function() {
  * @expose
  * @param {number} pixels The percentage height.
  */
-org.apache.flex.core.UIBase.prototype.set_percentHeight = function(pixels) {
+org_apache_flex_core_UIBase.prototype.set_percentHeight = function(pixels) {
   this.percentHeight_ = pixels;
   this.positioner.style.height = pixels.toString() + '%';
   if (!isNaN(pixels))
@@ -570,7 +570,7 @@ org.apache.flex.core.UIBase.prototype.set_percentHeight = function(pixels) {
  * @expose
  * @return {number} The percentage height of the object.
  */
-org.apache.flex.core.UIBase.prototype.get_percentHeight = function() {
+org_apache_flex_core_UIBase.prototype.get_percentHeight = function() {
   return this.percentHeight_;
 };
 
@@ -580,7 +580,7 @@ org.apache.flex.core.UIBase.prototype.get_percentHeight = function() {
  * @param {number} value The height of the object in pixels.
  * @param {boolean=} opt_noEvent Whether to skip sending a change event.
  */
-org.apache.flex.core.UIBase.prototype.setHeight =
+org_apache_flex_core_UIBase.prototype.setHeight =
     function(value, opt_noEvent)
 {
   if (opt_noEvent === undefined)
@@ -600,7 +600,7 @@ org.apache.flex.core.UIBase.prototype.setHeight =
  * @param {number} value The width of the object in pixels.
  * @param {boolean=} opt_noEvent Whether to skip sending a change event.
  */
-org.apache.flex.core.UIBase.prototype.setWidth =
+org_apache_flex_core_UIBase.prototype.setWidth =
     function(value, opt_noEvent)
 {
   if (opt_noEvent === undefined)
@@ -621,7 +621,7 @@ org.apache.flex.core.UIBase.prototype.setWidth =
  * @param {number} newHeight The height of the object in pixels.
  * @param {boolean=} opt_noEvent Whether to skip sending a change event.
  */
-org.apache.flex.core.UIBase.prototype.setWidthAndHeight =
+org_apache_flex_core_UIBase.prototype.setWidthAndHeight =
     function(newWidth, newHeight, opt_noEvent)
 {
   if (opt_noEvent === undefined)
@@ -647,7 +647,7 @@ org.apache.flex.core.UIBase.prototype.setWidthAndHeight =
  * @expose
  * @return {boolean} True if width sized to content.
  */
-org.apache.flex.core.UIBase.prototype.isWidthSizedToContent = function()
+org_apache_flex_core_UIBase.prototype.isWidthSizedToContent = function()
 {
   return (isNaN(this.explicitWidth_) && isNaN(this.percentWidth_));
 };
@@ -657,7 +657,7 @@ org.apache.flex.core.UIBase.prototype.isWidthSizedToContent = function()
  * @expose
  * @return {boolean} True if height sized to content.
  */
-org.apache.flex.core.UIBase.prototype.isHeightSizedToContent = function()
+org_apache_flex_core_UIBase.prototype.isHeightSizedToContent = function()
 {
   return (isNaN(this.explicitHeight_) && isNaN(this.percentHeight_));
 };
@@ -667,14 +667,14 @@ org.apache.flex.core.UIBase.prototype.isHeightSizedToContent = function()
  * @expose
  * @type {string}
  */
-org.apache.flex.core.UIBase.prototype.id = '';
+org_apache_flex_core_UIBase.prototype.id = '';
 
 
 /**
  * @expose
  * @return {string} The id.
  */
-org.apache.flex.core.UIBase.prototype.get_id = function() {
+org_apache_flex_core_UIBase.prototype.get_id = function() {
   return this.id;
 };
 
@@ -683,7 +683,7 @@ org.apache.flex.core.UIBase.prototype.get_id = function() {
  * @expose
  * @param {string} value The new id.
  */
-org.apache.flex.core.UIBase.prototype.set_id = function(value) {
+org_apache_flex_core_UIBase.prototype.set_id = function(value) {
   if (this.id !== value) {
     this.element.id = value;
     this.id = value;
@@ -696,21 +696,21 @@ org.apache.flex.core.UIBase.prototype.set_id = function(value) {
  * @expose
  * @type {string}
  */
-org.apache.flex.core.UIBase.prototype.typeNames = '';
+org_apache_flex_core_UIBase.prototype.typeNames = '';
 
 
 /**
  * @expose
  * @type {string}
  */
-org.apache.flex.core.UIBase.prototype.className = '';
+org_apache_flex_core_UIBase.prototype.className = '';
 
 
 /**
  * @expose
  * @return {string} The className.
  */
-org.apache.flex.core.UIBase.prototype.get_className = function() {
+org_apache_flex_core_UIBase.prototype.get_className = function() {
   return this.className;
 };
 
@@ -719,7 +719,7 @@ org.apache.flex.core.UIBase.prototype.get_className = function() {
  * @expose
  * @param {string} value The new className.
  */
-org.apache.flex.core.UIBase.prototype.set_className = function(value) {
+org_apache_flex_core_UIBase.prototype.set_className = function(value) {
   if (this.className !== value)
   {
     this.element.className = this.typeNames ? value + ' ' + this.typeNames : value;
@@ -733,22 +733,22 @@ org.apache.flex.core.UIBase.prototype.set_className = function(value) {
  * @expose
  * @type {Object}
  */
-org.apache.flex.core.UIBase.prototype.model = null;
+org_apache_flex_core_UIBase.prototype.model = null;
 
 
 /**
  * @expose
  * @return {Object} The model.
  */
-org.apache.flex.core.UIBase.prototype.get_model = function() {
+org_apache_flex_core_UIBase.prototype.get_model = function() {
   if (this.model == null)
   {
     // addbead will set _model
-    if (org.apache.flex.core.ValuesManager.valuesImpl.getValue) {
+    if (org_apache_flex_core_ValuesManager.valuesImpl.getValue) {
       /**
        * @type {Function}
        */
-      var m = /** @type {Function} */ (org.apache.flex.core.ValuesManager.valuesImpl.
+      var m = /** @type {Function} */ (org_apache_flex_core_ValuesManager.valuesImpl.
           getValue(this, 'iBeadModel'));
       var b = new m();
       this.addBead(b);
@@ -762,7 +762,7 @@ org.apache.flex.core.UIBase.prototype.get_model = function() {
  * @expose
  * @param {Object} value The new model.
  */
-org.apache.flex.core.UIBase.prototype.set_model = function(value) {
+org_apache_flex_core_UIBase.prototype.set_model = function(value) {
   if (this.model !== value) {
     this.addBead(value);
     this.dispatchEvent('modelChanged');
@@ -774,7 +774,7 @@ org.apache.flex.core.UIBase.prototype.set_model = function(value) {
  * @expose
  * @return {Object} The style properties.
  */
-org.apache.flex.core.UIBase.prototype.get_style = function() {
+org_apache_flex_core_UIBase.prototype.get_style = function() {
   return this.style_;
 };
 
@@ -783,13 +783,13 @@ org.apache.flex.core.UIBase.prototype.get_style = function() {
  * @expose
  * @param {Object} value The new style properties.
  */
-org.apache.flex.core.UIBase.prototype.set_style = function(value) {
+org_apache_flex_core_UIBase.prototype.set_style = function(value) {
   if (this.style_ !== value) {
     if (typeof(value) == 'string')
-      value = org.apache.flex.core.ValuesManager.valuesImpl.parseStyles(value);
+      value = org_apache_flex_core_ValuesManager.valuesImpl.parseStyles(value);
     this.style_ = value;
     if (value.addEventListener)
-      value.addEventListener(org.apache.flex.events.ValueChangeEvent.VALUE_CHANGE,
+      value.addEventListener(org_apache_flex_events_ValueChangeEvent.VALUE_CHANGE,
           goog.bind(this.styleChangeHandler, this));
     this.dispatchEvent('stylesChanged');
   }
@@ -798,12 +798,12 @@ org.apache.flex.core.UIBase.prototype.set_style = function(value) {
 
 /**
  * @expose
- * @param {org.apache.flex.events.ValueChangeEvent} value The new style properties.
+ * @param {org_apache_flex_events_ValueChangeEvent} value The new style properties.
  */
-org.apache.flex.core.UIBase.prototype.styleChangeHandler = function(value) {
+org_apache_flex_core_UIBase.prototype.styleChangeHandler = function(value) {
   var newStyle = {};
   newStyle[value.propertyName] = value.newValue;
-  org.apache.flex.core.ValuesManager.valuesImpl.applyStyles(this, newStyle);
+  org_apache_flex_core_ValuesManager.valuesImpl.applyStyles(this, newStyle);
 };
 
 
@@ -811,7 +811,7 @@ org.apache.flex.core.UIBase.prototype.styleChangeHandler = function(value) {
  * @expose
  * @return {boolean} True if visible.
  */
-org.apache.flex.core.UIBase.prototype.get_visible = function() {
+org_apache_flex_core_UIBase.prototype.get_visible = function() {
   return this.positioner.style.display !== 'none';
 };
 
@@ -820,20 +820,20 @@ org.apache.flex.core.UIBase.prototype.get_visible = function() {
  * @expose
  * @param {boolean} value The new model.
  */
-org.apache.flex.core.UIBase.prototype.set_visible = function(value) {
+org_apache_flex_core_UIBase.prototype.set_visible = function(value) {
   var oldValue = this.positioner.style.display !== 'none';
   if (value !== oldValue) {
     if (!value) {
       this.lastDisplay_ = this.positioner.style.display;
       this.positioner.style.display = 'none';
-      this.dispatchEvent(new org.apache.flex.events.Event('hide'));
+      this.dispatchEvent(new org_apache_flex_events_Event('hide'));
     } else {
       if (this.lastDisplay_) {
         this.positioner.style.display = this.lastDisplay_;
       } else {
         this.positioner.style.display = 'block';
       }
-      this.dispatchEvent(new org.apache.flex.events.Event('show'));
+      this.dispatchEvent(new org_apache_flex_events_Event('show'));
     }
   }
 };
@@ -843,6 +843,6 @@ org.apache.flex.core.UIBase.prototype.set_visible = function(value) {
  * @expose
  * @return {Object} The top most EventDispatcher.
  */
-org.apache.flex.core.UIBase.prototype.get_topMostEventDispatcher = function() {
+org_apache_flex_core_UIBase.prototype.get_topMostEventDispatcher = function() {
   return document.body.flexjs_wrapper;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/ValuesManager.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/ValuesManager.js b/frameworks/js/FlexJS/src/org/apache/flex/core/ValuesManager.js
index 02cbf8d..9ac715a 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/ValuesManager.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/ValuesManager.js
@@ -12,16 +12,16 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.ValuesManager');
+goog.provide('org_apache_flex_core_ValuesManager');
 
-goog.require('org.apache.flex.core.IValuesImpl');
+goog.require('org_apache_flex_core_IValuesImpl');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.core.ValuesManager = function() {
+org_apache_flex_core_ValuesManager = function() {
 };
 
 
@@ -30,33 +30,33 @@ org.apache.flex.core.ValuesManager = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.ValuesManager.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_ValuesManager.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ValuesManager',
-                qName: 'org.apache.flex.core.ValuesManager' }] };
+                qName: 'org_apache_flex_core_ValuesManager' }] };
 
 
 /**
  * @expose
- * @type {org.apache.flex.core.IValuesImpl}
+ * @type {org_apache_flex_core_IValuesImpl}
  */
-org.apache.flex.core.ValuesManager.prototype.valuesImpl = null;
+org_apache_flex_core_ValuesManager.prototype.valuesImpl = null;
 
 
 /**
  * @expose
- * @this {org.apache.flex.core.ValuesManager}
- * @return {org.apache.flex.core.IValuesImpl} The value.
+ * @this {org_apache_flex_core_ValuesManager}
+ * @return {org_apache_flex_core_IValuesImpl} The value.
  */
-org.apache.flex.core.ValuesManager.get_valuesImpl = function() {
-  return org.apache.flex.core.ValuesManager.valuesImpl;
+org_apache_flex_core_ValuesManager.get_valuesImpl = function() {
+  return org_apache_flex_core_ValuesManager.valuesImpl;
 };
 
 
 /**
  * @expose
- * @this {org.apache.flex.core.ValuesManager}
- * @param {org.apache.flex.core.IValuesImpl} value being set.
+ * @this {org_apache_flex_core_ValuesManager}
+ * @param {org_apache_flex_core_IValuesImpl} value being set.
  */
-org.apache.flex.core.ValuesManager.set_valuesImpl = function(value) {
-  org.apache.flex.core.ValuesManager.valuesImpl = value;
+org_apache_flex_core_ValuesManager.set_valuesImpl = function(value) {
+  org_apache_flex_core_ValuesManager.valuesImpl = value;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/core/ViewBase.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/ViewBase.js b/frameworks/js/FlexJS/src/org/apache/flex/core/ViewBase.js
index 12faa61..c5175e9 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/core/ViewBase.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/core/ViewBase.js
@@ -12,24 +12,24 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.core.ViewBase');
+goog.provide('org_apache_flex_core_ViewBase');
 
-goog.require('org.apache.flex.core.IPopUpHost');
-goog.require('org.apache.flex.core.UIBase');
-goog.require('org.apache.flex.core.ValuesManager');
-goog.require('org.apache.flex.events.Event');
-goog.require('org.apache.flex.events.ValueChangeEvent');
-goog.require('org.apache.flex.utils.MXMLDataInterpreter');
+goog.require('org_apache_flex_core_IPopUpHost');
+goog.require('org_apache_flex_core_UIBase');
+goog.require('org_apache_flex_core_ValuesManager');
+goog.require('org_apache_flex_events_Event');
+goog.require('org_apache_flex_events_ValueChangeEvent');
+goog.require('org_apache_flex_utils_MXMLDataInterpreter');
 
 
 
 /**
  * @constructor
- * @implements {org.apache.flex.core.IPopUpHost}
- * @extends {org.apache.flex.core.UIBase}
+ * @implements {org_apache_flex_core_IPopUpHost}
+ * @extends {org_apache_flex_core_UIBase}
  */
-org.apache.flex.core.ViewBase = function() {
-  org.apache.flex.core.ViewBase.base(this, 'constructor');
+org_apache_flex_core_ViewBase = function() {
+  org_apache_flex_core_ViewBase.base(this, 'constructor');
 
   /**
    * @private
@@ -58,7 +58,7 @@ org.apache.flex.core.ViewBase = function() {
   this.document = this;
 
 };
-goog.inherits(org.apache.flex.core.ViewBase, org.apache.flex.core.UIBase);
+goog.inherits(org_apache_flex_core_ViewBase, org_apache_flex_core_UIBase);
 
 
 /**
@@ -66,25 +66,25 @@ goog.inherits(org.apache.flex.core.ViewBase, org.apache.flex.core.UIBase);
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.core.ViewBase.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_core_ViewBase.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ViewBase',
-                qName: 'org.apache.flex.core.ViewBase' }],
-      interfaces: [org.apache.flex.core.IPopUpHost] };
+                qName: 'org_apache_flex_core_ViewBase' }],
+      interfaces: [org_apache_flex_core_IPopUpHost] };
 
 
 /**
  * @expose
  * @type {Object}
  */
-org.apache.flex.core.ViewBase.prototype.applicationModel = null;
+org_apache_flex_core_ViewBase.prototype.applicationModel = null;
 
 
 /**
  * @expose
  * @param {Array} data The data for the attributes.
  */
-org.apache.flex.core.ViewBase.prototype.generateMXMLAttributes = function(data) {
-  org.apache.flex.utils.MXMLDataInterpreter.generateMXMLProperties(this, data);
+org_apache_flex_core_ViewBase.prototype.generateMXMLAttributes = function(data) {
+  org_apache_flex_utils_MXMLDataInterpreter.generateMXMLProperties(this, data);
 };
 
 
@@ -92,21 +92,21 @@ org.apache.flex.core.ViewBase.prototype.generateMXMLAttributes = function(data)
  * @expose
  * @type {Array}
  */
-org.apache.flex.core.ViewBase.prototype.MXMLDescriptor = null;
+org_apache_flex_core_ViewBase.prototype.MXMLDescriptor = null;
 
 
 /**
  * @expose
  * @type {Object} The document.
  */
-org.apache.flex.core.ViewBase.prototype.document = null;
+org_apache_flex_core_ViewBase.prototype.document = null;
 
 
 /**
  * @expose
  * @return {Array} An array of descriptors.
  */
-org.apache.flex.core.ViewBase.prototype.get_MXMLDescriptor = function() {
+org_apache_flex_core_ViewBase.prototype.get_MXMLDescriptor = function() {
   return this.MXMLDescriptor;
 };
 
@@ -116,7 +116,7 @@ org.apache.flex.core.ViewBase.prototype.get_MXMLDescriptor = function() {
  * @param {Object} doc The document.
  * @param {Array} desc The descriptor data;
  */
-org.apache.flex.core.ViewBase.prototype.setMXMLDescriptor =
+org_apache_flex_core_ViewBase.prototype.setMXMLDescriptor =
     function(doc, desc) {
   this.MXMLDescriptor = desc;
   this.document = doc;
@@ -126,25 +126,25 @@ org.apache.flex.core.ViewBase.prototype.setMXMLDescriptor =
 /**
  * @expose
  */
-org.apache.flex.core.ViewBase.prototype.addedToParent = function() {
+org_apache_flex_core_ViewBase.prototype.addedToParent = function() {
 
-  //org.apache.flex.core.ViewBase.base(this,'addedToParent');
+  //org_apache_flex_core_ViewBase.base(this,'addedToParent');
   this.element.flexjs_wrapper = this;
-  if (org.apache.flex.core.ValuesManager.valuesImpl.init) {
-    org.apache.flex.core.ValuesManager.valuesImpl.init(this);
+  if (org_apache_flex_core_ValuesManager.valuesImpl.init) {
+    org_apache_flex_core_ValuesManager.valuesImpl.init(this);
   }
 
-  org.apache.flex.core.ViewBase.base(this, 'addedToParent');
+  org_apache_flex_core_ViewBase.base(this, 'addedToParent');
 
   if (!this.initialized_) {
-    org.apache.flex.utils.MXMLDataInterpreter.generateMXMLInstances(this.document,
+    org_apache_flex_utils_MXMLDataInterpreter.generateMXMLInstances(this.document,
       this, this.get_MXMLDescriptor());
 
-    this.dispatchEvent(new org.apache.flex.events.Event('initBindings'));
-    this.dispatchEvent(new org.apache.flex.events.Event('initComplete'));
+    this.dispatchEvent(new org_apache_flex_events_Event('initBindings'));
+    this.dispatchEvent(new org_apache_flex_events_Event('initComplete'));
     this.initialized_ = true;
   }
-  this.dispatchEvent(new org.apache.flex.events.Event('childrenAdded'));
+  this.dispatchEvent(new org_apache_flex_events_Event('childrenAdded'));
 };
 
 
@@ -152,7 +152,7 @@ org.apache.flex.core.ViewBase.prototype.addedToParent = function() {
  * @expose
  * @return {Object} The application model.
  */
-org.apache.flex.core.ViewBase.prototype.get_applicationModel = function() {
+org_apache_flex_core_ViewBase.prototype.get_applicationModel = function() {
   return this.applicationModel;
 };
 
@@ -161,7 +161,7 @@ org.apache.flex.core.ViewBase.prototype.get_applicationModel = function() {
  * @expose
  * @return {Array} The array of State objects.
  */
-org.apache.flex.core.ViewBase.prototype.get_states = function() {
+org_apache_flex_core_ViewBase.prototype.get_states = function() {
   return this.states_;
 };
 
@@ -170,15 +170,15 @@ org.apache.flex.core.ViewBase.prototype.get_states = function() {
  * @expose
  * @param {Array} value The array of State objects.
  */
-org.apache.flex.core.ViewBase.prototype.set_states = function(value) {
+org_apache_flex_core_ViewBase.prototype.set_states = function(value) {
   this.states_ = value;
   this.currentState_ = value[0].name;
 
-  if (org.apache.flex.core.ValuesManager.valuesImpl.getValue) {
+  if (org_apache_flex_core_ValuesManager.valuesImpl.getValue) {
     /**
      * @type {Function}
      */
-    var impl = /** @type {Function} */ (org.apache.flex.core.ValuesManager.valuesImpl.
+    var impl = /** @type {Function} */ (org_apache_flex_core_ValuesManager.valuesImpl.
         getValue(this, 'iStatesImpl'));
     // TODO: (aharui) check if bead already exists
     this.addBead(new impl());
@@ -191,7 +191,7 @@ org.apache.flex.core.ViewBase.prototype.set_states = function(value) {
  * @param {string} state The name of the state.
  * @return {boolean} True if state in states array.
  */
-org.apache.flex.core.ViewBase.prototype.hasState = function(state) {
+org_apache_flex_core_ViewBase.prototype.hasState = function(state) {
   for (var p in this.states_)
   {
     var s = this.states_[p];
@@ -206,7 +206,7 @@ org.apache.flex.core.ViewBase.prototype.hasState = function(state) {
  * @expose
  * @return {string} The name of the current state.
  */
-org.apache.flex.core.ViewBase.prototype.get_currentState = function() {
+org_apache_flex_core_ViewBase.prototype.get_currentState = function() {
   return this.currentState_;
 };
 
@@ -215,8 +215,8 @@ org.apache.flex.core.ViewBase.prototype.get_currentState = function() {
  * @expose
  * @param {string} value The name of the current state.
  */
-org.apache.flex.core.ViewBase.prototype.set_currentState = function(value) {
-  var event = new org.apache.flex.events.ValueChangeEvent(
+org_apache_flex_core_ViewBase.prototype.set_currentState = function(value) {
+  var event = new org_apache_flex_events_ValueChangeEvent(
       'currentStateChange', false, false, this.currentState_, value);
   this.currentState_ = value;
   this.dispatchEvent(event);
@@ -227,7 +227,7 @@ org.apache.flex.core.ViewBase.prototype.set_currentState = function(value) {
  * @expose
  * @return {Array} The array of transitions.
  */
-org.apache.flex.core.ViewBase.prototype.get_transitions = function() {
+org_apache_flex_core_ViewBase.prototype.get_transitions = function() {
   return this.transitions_;
 };
 
@@ -236,7 +236,7 @@ org.apache.flex.core.ViewBase.prototype.get_transitions = function() {
  * @expose
  * @param {Array} value The array of transitions.
  */
-org.apache.flex.core.ViewBase.prototype.set_transitions = function(value) {
+org_apache_flex_core_ViewBase.prototype.set_transitions = function(value) {
   this.transitions_ = value;
 };
 


[03/12] git commit: [flex-asjs] [refs/heads/develop] - switching from org.apache.flex to org_apache_flex so GCC doesn't complain

Posted by ah...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/RangeModel.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/RangeModel.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/RangeModel.js
index ea857a7..a3d7c9e 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/RangeModel.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/RangeModel.js
@@ -12,18 +12,18 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.models.RangeModel');
+goog.provide('org_apache_flex_html_beads_models_RangeModel');
 
-goog.require('org.apache.flex.events.EventDispatcher');
+goog.require('org_apache_flex_events_EventDispatcher');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.events.EventDispatcher}
+ * @extends {org_apache_flex_events_EventDispatcher}
  */
-org.apache.flex.html.beads.models.RangeModel = function() {
-  org.apache.flex.html.beads.models.RangeModel.base(this, 'constructor');
+org_apache_flex_html_beads_models_RangeModel = function() {
+  org_apache_flex_html_beads_models_RangeModel.base(this, 'constructor');
 
   this.minimum_ = 0;
   this.maximum_ = 100;
@@ -31,8 +31,8 @@ org.apache.flex.html.beads.models.RangeModel = function() {
   this.snapInterval_ = 1;
   this.stepSize_ = 1;
 };
-goog.inherits(org.apache.flex.html.beads.models.RangeModel,
-    org.apache.flex.events.EventDispatcher);
+goog.inherits(org_apache_flex_html_beads_models_RangeModel,
+    org_apache_flex_events_EventDispatcher);
 
 
 /**
@@ -40,16 +40,16 @@ goog.inherits(org.apache.flex.html.beads.models.RangeModel,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.models.RangeModel.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_beads_models_RangeModel.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'RangeModel',
-                qName: 'org.apache.flex.html.beads.models.RangeModel'}] };
+                qName: 'org_apache_flex_html_beads_models_RangeModel'}] };
 
 
 /**
  * @expose
  * @param {Object} value The strand.
  */
-org.apache.flex.html.beads.models.RangeModel.prototype.
+org_apache_flex_html_beads_models_RangeModel.prototype.
     set_strand = function(value) {
   this.strand_ = value;
 };
@@ -59,7 +59,7 @@ org.apache.flex.html.beads.models.RangeModel.prototype.
  * @expose
  * @return {number} The current minimum value.
  */
-org.apache.flex.html.beads.models.RangeModel.prototype.
+org_apache_flex_html_beads_models_RangeModel.prototype.
     get_minimum = function() {
   return this.minimum_;
 };
@@ -69,7 +69,7 @@ org.apache.flex.html.beads.models.RangeModel.prototype.
  * @expose
  * @param {number} value The new minimum value.
  */
-org.apache.flex.html.beads.models.RangeModel.prototype.
+org_apache_flex_html_beads_models_RangeModel.prototype.
     set_minimum = function(value) {
   if (this.minimum_ != value) {
     this.minimum_ = value;
@@ -82,7 +82,7 @@ org.apache.flex.html.beads.models.RangeModel.prototype.
  * @expose
  * @return {number} The current maximu value.
  */
-org.apache.flex.html.beads.models.RangeModel.prototype.
+org_apache_flex_html_beads_models_RangeModel.prototype.
     get_maximum = function() {
   return this.maximum_;
 };
@@ -92,7 +92,7 @@ org.apache.flex.html.beads.models.RangeModel.prototype.
  * @expose
  * @param {number} value The new maximum value.
  */
-org.apache.flex.html.beads.models.RangeModel.prototype.
+org_apache_flex_html_beads_models_RangeModel.prototype.
     set_maximum = function(value) {
   if (this.maximum_ != value) {
     this.maximum_ = value;
@@ -105,7 +105,7 @@ org.apache.flex.html.beads.models.RangeModel.prototype.
  * @expose
  * @return {number} The current value.
  */
-org.apache.flex.html.beads.models.RangeModel.prototype.
+org_apache_flex_html_beads_models_RangeModel.prototype.
     get_value = function() {
   return this.value_;
 };
@@ -115,7 +115,7 @@ org.apache.flex.html.beads.models.RangeModel.prototype.
  * @expose
  * @param {number} newValue The new value.
  */
-org.apache.flex.html.beads.models.RangeModel.prototype.
+org_apache_flex_html_beads_models_RangeModel.prototype.
     set_value = function(newValue) {
   if (this.value_ != newValue) {
 
@@ -135,7 +135,7 @@ org.apache.flex.html.beads.models.RangeModel.prototype.
  * @expose
  * @return {number} The current snapInterval value.
  */
-org.apache.flex.html.beads.models.RangeModel.prototype.
+org_apache_flex_html_beads_models_RangeModel.prototype.
     get_snapInterval = function() {
   return this.snapInterval_;
 };
@@ -145,7 +145,7 @@ org.apache.flex.html.beads.models.RangeModel.prototype.
  * @expose
  * @param {number} value The new snapInterval value.
  */
-org.apache.flex.html.beads.models.RangeModel.prototype.
+org_apache_flex_html_beads_models_RangeModel.prototype.
     set_snapInterval = function(value) {
   if (this.snapInterval_ != value) {
     this.snapInterval_ = value;
@@ -158,7 +158,7 @@ org.apache.flex.html.beads.models.RangeModel.prototype.
  * @expose
  * @return {number} The current stepSize value.
  */
-org.apache.flex.html.beads.models.RangeModel.prototype.
+org_apache_flex_html_beads_models_RangeModel.prototype.
     get_stepSize = function() {
   return this.stepSize_;
 };
@@ -168,7 +168,7 @@ org.apache.flex.html.beads.models.RangeModel.prototype.
  * @expose
  * @param {number} value The new stepSize value.
  */
-org.apache.flex.html.beads.models.RangeModel.prototype.
+org_apache_flex_html_beads_models_RangeModel.prototype.
     set_stepSize = function(value) {
   if (this.stepSize_ != value) {
     this.stepSize_ = value;
@@ -182,7 +182,7 @@ org.apache.flex.html.beads.models.RangeModel.prototype.
  * @param {number} value The candidate number.
  * @return {number} Adjusted value.
  */
-org.apache.flex.html.beads.models.RangeModel.prototype.
+org_apache_flex_html_beads_models_RangeModel.prototype.
     snap = function(value) {
   var si = this.snapInterval_;
   var n = Math.round((value - this.minimum_) / si) *

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/TextModel.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/TextModel.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/TextModel.js
index b6b829a..f16a286 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/TextModel.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/TextModel.js
@@ -12,26 +12,26 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.models.TextModel');
+goog.provide('org_apache_flex_html_beads_models_TextModel');
 
-goog.require('org.apache.flex.core.ITextModel');
-goog.require('org.apache.flex.events.EventDispatcher');
+goog.require('org_apache_flex_core_ITextModel');
+goog.require('org_apache_flex_events_EventDispatcher');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.events.EventDispatcher}
- * @implements {org.apache.flex.core.ITextModel}
+ * @extends {org_apache_flex_events_EventDispatcher}
+ * @implements {org_apache_flex_core_ITextModel}
  */
-org.apache.flex.html.beads.models.TextModel =
+org_apache_flex_html_beads_models_TextModel =
     function() {
-  org.apache.flex.html.beads.models.TextModel.base(this, 'constructor');
+  org_apache_flex_html_beads_models_TextModel.base(this, 'constructor');
   this.className = 'TextModel';
 };
 goog.inherits(
-    org.apache.flex.html.beads.models.TextModel,
-    org.apache.flex.events.EventDispatcher);
+    org_apache_flex_html_beads_models_TextModel,
+    org_apache_flex_events_EventDispatcher);
 
 
 /**
@@ -39,17 +39,17 @@ goog.inherits(
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.models.TextModel.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_beads_models_TextModel.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'TextModel',
-                qName: 'org.apache.flex.html.beads.models.TextModel' }],
-      interfaces: [org.apache.flex.core.ITextModel] };
+                qName: 'org_apache_flex_html_beads_models_TextModel' }],
+      interfaces: [org_apache_flex_core_ITextModel] };
 
 
 /**
  * @expose
  * @param {Object} value The strand.
  */
-org.apache.flex.html.beads.models.TextModel.prototype.
+org_apache_flex_html_beads_models_TextModel.prototype.
     set_strand = function(value) {
   this.strand_ = value;
 };
@@ -59,7 +59,7 @@ org.apache.flex.html.beads.models.TextModel.prototype.
  * @expose
  * @return {Object} value The text.
  */
-org.apache.flex.html.beads.models.TextModel.prototype.
+org_apache_flex_html_beads_models_TextModel.prototype.
     get_text = function() {
   return this.text_;
 };
@@ -69,7 +69,7 @@ org.apache.flex.html.beads.models.TextModel.prototype.
  * @expose
  * @param {Object} value The text.
  */
-org.apache.flex.html.beads.models.TextModel.prototype.
+org_apache_flex_html_beads_models_TextModel.prototype.
     set_text = function(value) {
   this.text_ = value;
   this.dispatchEvent('textChange');

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/TitleBarModel.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/TitleBarModel.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/TitleBarModel.js
index 5cfdc7b..95085e4 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/TitleBarModel.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/models/TitleBarModel.js
@@ -12,20 +12,20 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.models.TitleBarModel');
+goog.provide('org_apache_flex_html_beads_models_TitleBarModel');
 
-goog.require('org.apache.flex.core.IBeadModel');
-goog.require('org.apache.flex.events.EventDispatcher');
+goog.require('org_apache_flex_core_IBeadModel');
+goog.require('org_apache_flex_events_EventDispatcher');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.events.EventDispatcher}
- * @implements {org.apache.flex.core.IBeadModel}
+ * @extends {org_apache_flex_events_EventDispatcher}
+ * @implements {org_apache_flex_core_IBeadModel}
  */
-org.apache.flex.html.beads.models.TitleBarModel = function() {
-  org.apache.flex.html.beads.models.TitleBarModel.base(this, 'constructor');
+org_apache_flex_html_beads_models_TitleBarModel = function() {
+  org_apache_flex_html_beads_models_TitleBarModel.base(this, 'constructor');
 
   /**
    * @private
@@ -43,8 +43,8 @@ org.apache.flex.html.beads.models.TitleBarModel = function() {
    */
   this.showCloseButton_ = false;
 };
-goog.inherits(org.apache.flex.html.beads.models.TitleBarModel,
-    org.apache.flex.events.EventDispatcher);
+goog.inherits(org_apache_flex_html_beads_models_TitleBarModel,
+    org_apache_flex_events_EventDispatcher);
 
 
 /**
@@ -52,10 +52,10 @@ goog.inherits(org.apache.flex.html.beads.models.TitleBarModel,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.models.TitleBarModel.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_beads_models_TitleBarModel.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'RangeModel',
-                qName: 'org.apache.flex.html.beads.models.TitleBarModel'}],
-      interfaces: [org.apache.flex.core.IBeadModel]
+                qName: 'org_apache_flex_html_beads_models_TitleBarModel'}],
+      interfaces: [org_apache_flex_core_IBeadModel]
     };
 
 
@@ -63,7 +63,7 @@ org.apache.flex.html.beads.models.TitleBarModel.prototype.FLEXJS_CLASS_INFO =
  * @expose
  * @param {Object} value The strand.
  */
-org.apache.flex.html.beads.models.TitleBarModel.prototype.
+org_apache_flex_html_beads_models_TitleBarModel.prototype.
     set_strand = function(value) {
   this.strand_ = value;
 };
@@ -73,7 +73,7 @@ org.apache.flex.html.beads.models.TitleBarModel.prototype.
  * @expose
  * @return {string} The title.
  */
-org.apache.flex.html.beads.models.TitleBarModel.prototype.
+org_apache_flex_html_beads_models_TitleBarModel.prototype.
     get_title = function() {
   return this.title_;
 };
@@ -83,7 +83,7 @@ org.apache.flex.html.beads.models.TitleBarModel.prototype.
  * @expose
  * @param {string} value The title to set.
  */
-org.apache.flex.html.beads.models.TitleBarModel.prototype.
+org_apache_flex_html_beads_models_TitleBarModel.prototype.
     set_title = function(value) {
   if (this.title_ != value) {
     this.title_ = value;
@@ -96,7 +96,7 @@ org.apache.flex.html.beads.models.TitleBarModel.prototype.
  * @expose
  * @return {string} The HTML title.
  */
-org.apache.flex.html.beads.models.TitleBarModel.prototype.
+org_apache_flex_html_beads_models_TitleBarModel.prototype.
     get_htmlTitle = function() {
   return this.htmlTitle_;
 };
@@ -106,7 +106,7 @@ org.apache.flex.html.beads.models.TitleBarModel.prototype.
  * @expose
  * @param {string} value The new HTML title.
  */
-org.apache.flex.html.beads.models.TitleBarModel.prototype.
+org_apache_flex_html_beads_models_TitleBarModel.prototype.
     set_htmlTitle = function(value) {
   if (this.htmlTitle_ != value) {
     this.htmlTitle_ = value;
@@ -120,7 +120,7 @@ org.apache.flex.html.beads.models.TitleBarModel.prototype.
  * @return {boolean} Returns true if the close button should appear in
  * the TitleBar.
  */
-org.apache.flex.html.beads.models.TitleBarModel.prototype.
+org_apache_flex_html_beads_models_TitleBarModel.prototype.
     get_showCloseButton = function() {
   return this.showCloseButton_;
 };
@@ -131,7 +131,7 @@ org.apache.flex.html.beads.models.TitleBarModel.prototype.
  * @param {boolean} value Determines if the close button shows (true) or
  * not (false).
  */
-org.apache.flex.html.beads.models.TitleBarModel.prototype.
+org_apache_flex_html_beads_models_TitleBarModel.prototype.
     set_showCloseButton = function(value) {
   if (this.showCloseButton_ != value) {
     this.showCloseButton_ = value;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/ButtonBarButtonItemRenderer.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/ButtonBarButtonItemRenderer.js b/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/ButtonBarButtonItemRenderer.js
index a40948b..38b707f 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/ButtonBarButtonItemRenderer.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/ButtonBarButtonItemRenderer.js
@@ -12,25 +12,24 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.supportClasses.ButtonBarButtonItemRenderer');
+goog.provide('org_apache_flex_html_supportClasses_ButtonBarButtonItemRenderer');
 
-goog.require('org.apache.flex.html.beads.controllers.ItemRendererMouseController');
-goog.require('org.apache.flex.html.supportClasses.DataItemRenderer');
+goog.require('org_apache_flex_html_beads_controllers_ItemRendererMouseController');
+goog.require('org_apache_flex_html_supportClasses_DataItemRenderer');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.html.supportClasses.DataItemRenderer}
+ * @extends {org_apache_flex_html_supportClasses_DataItemRenderer}
  */
-org.apache.flex.html.supportClasses.ButtonBarButtonItemRenderer =
+org_apache_flex_html_supportClasses_ButtonBarButtonItemRenderer =
     function() {
-  org.apache.flex.html.supportClasses.ButtonBarButtonItemRenderer.base(this, 'constructor');
+  org_apache_flex_html_supportClasses_ButtonBarButtonItemRenderer.base(this, 'constructor');
 };
 goog.inherits(
-    org.apache.flex.html.
-        supportClasses.ButtonBarButtonItemRenderer,
-    org.apache.flex.html.supportClasses.DataItemRenderer);
+    org_apache_flex_html_supportClasses_ButtonBarButtonItemRenderer,
+    org_apache_flex_html_supportClasses_DataItemRenderer);
 
 
 /**
@@ -38,15 +37,15 @@ goog.inherits(
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.supportClasses.ButtonBarButtonItemRenderer.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_supportClasses_ButtonBarButtonItemRenderer.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ButtonBarButtonItemRenderer',
-                qName: 'org.apache.flex.html.supportClasses.ButtonBarButtonItemRenderer' }] };
+                qName: 'org_apache_flex_html_supportClasses_ButtonBarButtonItemRenderer' }] };
 
 
 /**
  * @override
  */
-org.apache.flex.html.supportClasses.ButtonBarButtonItemRenderer.
+org_apache_flex_html_supportClasses_ButtonBarButtonItemRenderer.
     prototype.createElement = function() {
 
   this.element = document.createElement('div');
@@ -64,8 +63,7 @@ org.apache.flex.html.supportClasses.ButtonBarButtonItemRenderer.
   // the selection and highlight
   this.backgroundView = this.element;
 
-  this.controller = new org.apache.flex.html.beads.controllers.
-      ItemRendererMouseController();
+  this.controller = new org_apache_flex_html_beads_controllers_ItemRendererMouseController();
   this.controller.set_strand(this);
 
   return this.element;
@@ -76,7 +74,7 @@ org.apache.flex.html.supportClasses.ButtonBarButtonItemRenderer.
  * @expose
  * @param {Object} value The strand.
  */
-org.apache.flex.html.supportClasses.ButtonBarButtonItemRenderer.
+org_apache_flex_html_supportClasses_ButtonBarButtonItemRenderer.
     prototype.set_strand = function(value) {
 
   this.strand_ = value;
@@ -87,7 +85,7 @@ org.apache.flex.html.supportClasses.ButtonBarButtonItemRenderer.
  * @expose
  * @return {Object} The strand.
  */
-org.apache.flex.html.supportClasses.ButtonBarButtonItemRenderer.
+org_apache_flex_html_supportClasses_ButtonBarButtonItemRenderer.
     prototype.get_strand = function() {
   return this.strand_;
 };
@@ -97,10 +95,10 @@ org.apache.flex.html.supportClasses.ButtonBarButtonItemRenderer.
  * @expose
  * @param {Object} value The text to display.
  */
-org.apache.flex.html.supportClasses.ButtonBarButtonItemRenderer.
+org_apache_flex_html_supportClasses_ButtonBarButtonItemRenderer.
     prototype.set_data = function(value) {
 
-  org.apache.flex.html.supportClasses.ButtonBarButtonItemRenderer.base(this, 'set_data', value);
+  org_apache_flex_html_supportClasses_ButtonBarButtonItemRenderer.base(this, 'set_data', value);
 
   if (value.hasOwnProperty('label')) {
     this.button.innerHTML = value.label;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/DataGridColumn.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/DataGridColumn.js b/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/DataGridColumn.js
index 46aec00..0c30f26 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/DataGridColumn.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/DataGridColumn.js
@@ -12,25 +12,25 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.supportClasses.DataGridColumn');
+goog.provide('org_apache_flex_html_supportClasses_DataGridColumn');
 
-goog.require('mx.core.IFactory');
+goog.require('mx_core_IFactory');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.html.supportClasses.DataGridColumn =
+org_apache_flex_html_supportClasses_DataGridColumn =
     function() {
 };
 
 
 /**
  * @expose
- * @return {mx.core.IFactory} The object factory for the itemRenderer.
+ * @return {mx_core_IFactory} The object factory for the itemRenderer.
  */
-org.apache.flex.html.supportClasses.DataGridColumn.prototype.get_itemRenderer =
+org_apache_flex_html_supportClasses_DataGridColumn.prototype.get_itemRenderer =
 function() {
   return this.itemRenderer_;
 };
@@ -38,9 +38,9 @@ function() {
 
 /**
  * @expose
- * @param {mx.core.IFactory} value The object factory for the itemRenderer.
+ * @param {mx_core_IFactory} value The object factory for the itemRenderer.
  */
-org.apache.flex.html.supportClasses.DataGridColumn.prototype.set_itemRenderer =
+org_apache_flex_html_supportClasses_DataGridColumn.prototype.set_itemRenderer =
 function(value) {
   this.itemRenderer_ = value;
 };
@@ -50,7 +50,7 @@ function(value) {
  * @expose
  * @return {Number} The width of the column.
  */
-org.apache.flex.html.supportClasses.DataGridColumn.prototype.get_columnWidth =
+org_apache_flex_html_supportClasses_DataGridColumn.prototype.get_columnWidth =
 function() {
   return this.columnWidth_;
 };
@@ -60,7 +60,7 @@ function() {
  * @expose
  * @param {Number} value The width of the column.
  */
-org.apache.flex.html.supportClasses.DataGridColumn.prototype.set_columnWidth =
+org_apache_flex_html_supportClasses_DataGridColumn.prototype.set_columnWidth =
 function(value) {
   this.columnWidth_ = value;
 };
@@ -70,7 +70,7 @@ function(value) {
  * @expose
  * @return {String} The label for the column.
  */
-org.apache.flex.html.supportClasses.DataGridColumn.prototype.get_label =
+org_apache_flex_html_supportClasses_DataGridColumn.prototype.get_label =
 function() {
   return this.label_;
 };
@@ -80,7 +80,7 @@ function() {
  * @expose
  * @param {String} value The label for the column.
  */
-org.apache.flex.html.supportClasses.DataGridColumn.prototype.set_label =
+org_apache_flex_html_supportClasses_DataGridColumn.prototype.set_label =
 function(value) {
   this.label_ = value;
 };
@@ -90,7 +90,7 @@ function(value) {
  * @expose
  * @return {String} The field for the data for the column.
  */
-org.apache.flex.html.supportClasses.DataGridColumn.prototype.get_dataField =
+org_apache_flex_html_supportClasses_DataGridColumn.prototype.get_dataField =
 function() {
   return this.dataField_;
 };
@@ -100,7 +100,7 @@ function() {
  * @expose
  * @param {String} value The field for the data for the column.
  */
-org.apache.flex.html.supportClasses.DataGridColumn.prototype.set_dataField =
+org_apache_flex_html_supportClasses_DataGridColumn.prototype.set_dataField =
 function(value) {
   this.dataField_ = value;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/DataItemRenderer.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/DataItemRenderer.js b/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/DataItemRenderer.js
index ee06b24..d04d24d 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/DataItemRenderer.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/DataItemRenderer.js
@@ -12,26 +12,26 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.supportClasses.DataItemRenderer');
+goog.provide('org_apache_flex_html_supportClasses_DataItemRenderer');
 
-goog.require('org.apache.flex.core.IItemRenderer');
-goog.require('org.apache.flex.html.beads.controllers.ItemRendererMouseController');
-goog.require('org.apache.flex.html.supportClasses.UIItemRendererBase');
+goog.require('org_apache_flex_core_IItemRenderer');
+goog.require('org_apache_flex_html_beads_controllers_ItemRendererMouseController');
+goog.require('org_apache_flex_html_supportClasses_UIItemRendererBase');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.html.supportClasses.UIItemRendererBase}
- * @implements {org.apache.flex.core.IItemRenderer}
+ * @extends {org_apache_flex_html_supportClasses_UIItemRendererBase}
+ * @implements {org_apache_flex_core_IItemRenderer}
  */
-org.apache.flex.html.supportClasses.DataItemRenderer =
+org_apache_flex_html_supportClasses_DataItemRenderer =
     function() {
-  org.apache.flex.html.supportClasses.DataItemRenderer.base(this, 'constructor');
+  org_apache_flex_html_supportClasses_DataItemRenderer.base(this, 'constructor');
 };
 goog.inherits(
-    org.apache.flex.html.supportClasses.DataItemRenderer,
-    org.apache.flex.html.supportClasses.UIItemRendererBase);
+    org_apache_flex_html_supportClasses_DataItemRenderer,
+    org_apache_flex_html_supportClasses_UIItemRendererBase);
 
 
 /**
@@ -39,17 +39,17 @@ goog.inherits(
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.supportClasses.DataItemRenderer.
+org_apache_flex_html_supportClasses_DataItemRenderer.
     prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'DataItemRenderer',
-                qName: 'org.apache.flex.html.supportClasses.DataItemRenderer' }],
-      interfaces: [org.apache.flex.core.IItemRenderer] };
+                qName: 'org_apache_flex_html_supportClasses_DataItemRenderer' }],
+      interfaces: [org_apache_flex_core_IItemRenderer] };
 
 
 /**
  * @override
  */
-org.apache.flex.html.supportClasses.DataItemRenderer.
+org_apache_flex_html_supportClasses_DataItemRenderer.
     prototype.createElement = function() {
 
   this.element = document.createElement('div');
@@ -62,8 +62,7 @@ org.apache.flex.html.supportClasses.DataItemRenderer.
   // the selection and highlight
   this.backgroundView = this.element;
 
-  this.controller = new org.apache.flex.html.beads.controllers.
-      ItemRendererMouseController();
+  this.controller = new org_apache_flex_html_beads_controllers_ItemRendererMouseController();
   this.controller.set_strand(this);
 
   return this.element;
@@ -74,7 +73,7 @@ org.apache.flex.html.supportClasses.DataItemRenderer.
  * @expose
  * @return {Object} The item renderer's parent.
  */
-org.apache.flex.html.supportClasses.DataItemRenderer.
+org_apache_flex_html_supportClasses_DataItemRenderer.
     prototype.get_itemRendererParent = function() {
   return this.rendererParent_;
 };
@@ -84,7 +83,7 @@ org.apache.flex.html.supportClasses.DataItemRenderer.
  * @expose
  * @param {Object} value The item renderer's parent.
  */
-org.apache.flex.html.supportClasses.DataItemRenderer.
+org_apache_flex_html_supportClasses_DataItemRenderer.
     prototype.set_itemRendererParent = function(value) {
   this.rendererParent_ = value;
 };
@@ -94,7 +93,7 @@ org.apache.flex.html.supportClasses.DataItemRenderer.
  * @expose
  * @param {Object} value The renderer's index.
  */
-org.apache.flex.html.supportClasses.DataItemRenderer.
+org_apache_flex_html_supportClasses_DataItemRenderer.
     prototype.set_index = function(value) {
   this.index_ = value;
 };
@@ -104,7 +103,7 @@ org.apache.flex.html.supportClasses.DataItemRenderer.
  * @expose
  * @param {string} value The name of field to use.
  */
-org.apache.flex.html.supportClasses.DataItemRenderer.
+org_apache_flex_html_supportClasses_DataItemRenderer.
     prototype.set_dataField = function(value) {
 
   this.dataField_ = value;
@@ -115,7 +114,7 @@ org.apache.flex.html.supportClasses.DataItemRenderer.
  * @expose
  * @return {string} The name of the field to use.
  */
-org.apache.flex.html.supportClasses.DataItemRenderer.
+org_apache_flex_html_supportClasses_DataItemRenderer.
     prototype.get_dataField = function() {
 
   return this.dataField_;
@@ -126,7 +125,7 @@ org.apache.flex.html.supportClasses.DataItemRenderer.
  * @override
  * @param {Boolean} value The selection state.
  */
-org.apache.flex.html.supportClasses.DataItemRenderer.
+org_apache_flex_html_supportClasses_DataItemRenderer.
     prototype.set_selected = function(value) {
   this.selected_ = value;
 
@@ -142,7 +141,7 @@ org.apache.flex.html.supportClasses.DataItemRenderer.
  * @override
  * @param {Boolean} value The hovered state.
  */
-org.apache.flex.html.supportClasses.DataItemRenderer.
+org_apache_flex_html_supportClasses_DataItemRenderer.
     prototype.set_hovered = function(value) {
   this.hovered_ = value;
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/NonVirtualDataGroup.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/NonVirtualDataGroup.js b/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/NonVirtualDataGroup.js
index ceb2217..07b29e3 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/NonVirtualDataGroup.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/NonVirtualDataGroup.js
@@ -12,26 +12,26 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.supportClasses.NonVirtualDataGroup');
+goog.provide('org_apache_flex_html_supportClasses_NonVirtualDataGroup');
 
-goog.require('org.apache.flex.core.UIBase');
-goog.require('org.apache.flex.html.supportClasses.DataItemRenderer');
-goog.require('org.apache.flex.utils.Language');
+goog.require('org_apache_flex_core_UIBase');
+goog.require('org_apache_flex_html_supportClasses_DataItemRenderer');
+goog.require('org_apache_flex_utils_Language');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.UIBase}
+ * @extends {org_apache_flex_core_UIBase}
  */
-org.apache.flex.html.supportClasses.NonVirtualDataGroup =
+org_apache_flex_html_supportClasses_NonVirtualDataGroup =
     function() {
   this.renderers = [];
-  org.apache.flex.html.supportClasses.NonVirtualDataGroup.base(this, 'constructor');
+  org_apache_flex_html_supportClasses_NonVirtualDataGroup.base(this, 'constructor');
 };
 goog.inherits(
-    org.apache.flex.html.supportClasses.NonVirtualDataGroup,
-    org.apache.flex.core.UIBase);
+    org_apache_flex_html_supportClasses_NonVirtualDataGroup,
+    org_apache_flex_core_UIBase);
 
 
 /**
@@ -39,16 +39,16 @@ goog.inherits(
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.supportClasses.NonVirtualDataGroup.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_supportClasses_NonVirtualDataGroup.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'NonVirtualDataGroup',
-                qName: 'org.apache.flex.html.supportClasses.NonVirtualDataGroup' }] };
+                qName: 'org_apache_flex_html_supportClasses_NonVirtualDataGroup' }] };
 
 
 /**
  * @expose
  * @param {Object} value The strand.
  */
-org.apache.flex.html.supportClasses.NonVirtualDataGroup.
+org_apache_flex_html_supportClasses_NonVirtualDataGroup.
     prototype.set_strand = function(value) {
   this.strand_ = value;
 };
@@ -57,7 +57,7 @@ org.apache.flex.html.supportClasses.NonVirtualDataGroup.
 /**
  * @override
  */
-org.apache.flex.html.supportClasses.NonVirtualDataGroup.
+org_apache_flex_html_supportClasses_NonVirtualDataGroup.
     prototype.createElement = function() {
   this.element = document.createElement('div');
   this.element.style.overflow = 'auto';
@@ -76,12 +76,12 @@ org.apache.flex.html.supportClasses.NonVirtualDataGroup.
  * @override
  * @param {Object} value The child element being added.
  */
-org.apache.flex.html.supportClasses.NonVirtualDataGroup.
+org_apache_flex_html_supportClasses_NonVirtualDataGroup.
     prototype.addElement = function(value) {
-  org.apache.flex.html.supportClasses.NonVirtualDataGroup.base(this, 'addElement', value);
+  org_apache_flex_html_supportClasses_NonVirtualDataGroup.base(this, 'addElement', value);
 
-  var itemRenderer = org.apache.flex.utils.Language.as(value,
-                           org.apache.flex.html.supportClasses.DataItemRenderer);
+  var itemRenderer = org_apache_flex_utils_Language.as(value,
+                           org_apache_flex_html_supportClasses_DataItemRenderer);
   itemRenderer.set_index(this.renderers.length);
   itemRenderer.set_itemRendererParent(this);
   this.renderers.push(value);
@@ -91,7 +91,7 @@ org.apache.flex.html.supportClasses.NonVirtualDataGroup.
 /**
  * @expose
  */
-org.apache.flex.html.supportClasses.NonVirtualDataGroup.
+org_apache_flex_html_supportClasses_NonVirtualDataGroup.
     prototype.removeAllElements = function() {
 
   while (this.element.hasChildNodes()) {
@@ -104,7 +104,7 @@ org.apache.flex.html.supportClasses.NonVirtualDataGroup.
  * @expose
  * @return {number} The number of child nodes in the group.
  */
-org.apache.flex.html.supportClasses.NonVirtualDataGroup.
+org_apache_flex_html_supportClasses_NonVirtualDataGroup.
     prototype.get_numElements = function() {
 
   var n = this.element.childNodes.length;
@@ -117,7 +117,7 @@ org.apache.flex.html.supportClasses.NonVirtualDataGroup.
  * @param {number} index The index of the desired element.
  * @return {Object} The element at the given index.
  */
-org.apache.flex.html.supportClasses.NonVirtualDataGroup.
+org_apache_flex_html_supportClasses_NonVirtualDataGroup.
     prototype.getElementAt = function(index) {
 
   var e = this.element.childNodes[index];
@@ -130,7 +130,7 @@ org.apache.flex.html.supportClasses.NonVirtualDataGroup.
  * @param {Object} index The index for the itemRenderer.
  * @return {Object} The itemRenderer that matches the index.
  */
-org.apache.flex.html.supportClasses.NonVirtualDataGroup.
+org_apache_flex_html_supportClasses_NonVirtualDataGroup.
     prototype.getItemRendererForIndex = function(index) {
   return this.renderers[index];
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/StringItemRenderer.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/StringItemRenderer.js b/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/StringItemRenderer.js
index 7158ec7..73052cb 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/StringItemRenderer.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/StringItemRenderer.js
@@ -12,27 +12,27 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.supportClasses.StringItemRenderer');
+goog.provide('org_apache_flex_html_supportClasses_StringItemRenderer');
 
-goog.require('org.apache.flex.core.IItemRenderer');
-goog.require('org.apache.flex.core.UIBase');
-goog.require('org.apache.flex.html.beads.controllers.ItemRendererMouseController');
-goog.require('org.apache.flex.html.supportClasses.DataItemRenderer');
+goog.require('org_apache_flex_core_IItemRenderer');
+goog.require('org_apache_flex_core_UIBase');
+goog.require('org_apache_flex_html_beads_controllers_ItemRendererMouseController');
+goog.require('org_apache_flex_html_supportClasses_DataItemRenderer');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.html.supportClasses.DataItemRenderer}
- * @implements {org.apache.flex.core.IItemRenderer}
+ * @extends {org_apache_flex_html_supportClasses_DataItemRenderer}
+ * @implements {org_apache_flex_core_IItemRenderer}
  */
-org.apache.flex.html.supportClasses.StringItemRenderer =
+org_apache_flex_html_supportClasses_StringItemRenderer =
     function() {
-  org.apache.flex.html.supportClasses.StringItemRenderer.base(this, 'constructor');
+  org_apache_flex_html_supportClasses_StringItemRenderer.base(this, 'constructor');
 };
 goog.inherits(
-    org.apache.flex.html.supportClasses.StringItemRenderer,
-    org.apache.flex.html.supportClasses.DataItemRenderer);
+    org_apache_flex_html_supportClasses_StringItemRenderer,
+    org_apache_flex_html_supportClasses_DataItemRenderer);
 
 
 /**
@@ -40,17 +40,17 @@ goog.inherits(
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.supportClasses.StringItemRenderer.
+org_apache_flex_html_supportClasses_StringItemRenderer.
     prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'StringItemRenderer',
-                qName: 'org.apache.flex.html.supportClasses.StringItemRenderer' }],
-      interfaces: [org.apache.flex.core.IItemRenderer] };
+                qName: 'org_apache_flex_html_supportClasses_StringItemRenderer' }],
+      interfaces: [org_apache_flex_core_IItemRenderer] };
 
 
 /**
  * @override
  */
-org.apache.flex.html.supportClasses.StringItemRenderer.
+org_apache_flex_html_supportClasses_StringItemRenderer.
     prototype.createElement = function() {
 
   this.element = document.createElement('div');
@@ -63,8 +63,7 @@ org.apache.flex.html.supportClasses.StringItemRenderer.
   // the selection and highlight
   this.backgroundView = this.element;
 
-  this.controller = new org.apache.flex.html.beads.controllers.
-      ItemRendererMouseController();
+  this.controller = new org_apache_flex_html_beads_controllers_ItemRendererMouseController();
   this.controller.set_strand(this);
 
   return this.element;
@@ -75,7 +74,7 @@ org.apache.flex.html.supportClasses.StringItemRenderer.
  * @expose
  * @param {Object} value The strand.
  */
-org.apache.flex.html.supportClasses.StringItemRenderer.
+org_apache_flex_html_supportClasses_StringItemRenderer.
     prototype.set_strand = function(value) {
 
   this.strand_ = value;
@@ -86,7 +85,7 @@ org.apache.flex.html.supportClasses.StringItemRenderer.
  * @expose
  * @return {Object} The strand.
  */
-org.apache.flex.html.supportClasses.StringItemRenderer.
+org_apache_flex_html_supportClasses_StringItemRenderer.
     prototype.get_strand = function() {
   return this.strand_;
 };
@@ -96,7 +95,7 @@ org.apache.flex.html.supportClasses.StringItemRenderer.
  * @expose
  * @return {Object} The item renderer's parent.
  */
-org.apache.flex.html.supportClasses.StringItemRenderer.
+org_apache_flex_html_supportClasses_StringItemRenderer.
     prototype.get_itemRendererParent = function() {
   return this.rendererParent_;
 };
@@ -106,7 +105,7 @@ org.apache.flex.html.supportClasses.StringItemRenderer.
  * @expose
  * @param {Object} value The item renderer's parent.
  */
-org.apache.flex.html.supportClasses.StringItemRenderer.
+org_apache_flex_html_supportClasses_StringItemRenderer.
     prototype.set_itemRendererParent = function(value) {
   this.rendererParent_ = value;
 };
@@ -116,7 +115,7 @@ org.apache.flex.html.supportClasses.StringItemRenderer.
  * @expose
  * @param {Object} value The renderer's index.
  */
-org.apache.flex.html.supportClasses.StringItemRenderer.
+org_apache_flex_html_supportClasses_StringItemRenderer.
     prototype.set_index = function(value) {
   this.index_ = value;
 };
@@ -126,7 +125,7 @@ org.apache.flex.html.supportClasses.StringItemRenderer.
  * @expose
  * @param {Object} value The text to display.
  */
-org.apache.flex.html.supportClasses.StringItemRenderer.
+org_apache_flex_html_supportClasses_StringItemRenderer.
     prototype.set_text = function(value) {
 
   this.element.innerHTML = value;
@@ -137,7 +136,7 @@ org.apache.flex.html.supportClasses.StringItemRenderer.
  * @expose
  * @return {Object} The text being displayed.
  */
-org.apache.flex.html.supportClasses.StringItemRenderer.
+org_apache_flex_html_supportClasses_StringItemRenderer.
     prototype.get_text = function() {
 
   return this.element.innerHTML;
@@ -148,10 +147,10 @@ org.apache.flex.html.supportClasses.StringItemRenderer.
  * @expose
  * @param {Object} value The text to display.
  */
-org.apache.flex.html.supportClasses.StringItemRenderer.
+org_apache_flex_html_supportClasses_StringItemRenderer.
     prototype.set_data = function(value) {
 
-  org.apache.flex.html.supportClasses.StringItemRenderer.base(this, 'set_data', value);
+  org_apache_flex_html_supportClasses_StringItemRenderer.base(this, 'set_data', value);
 
   if (this.get_labelField()) {
     this.element.innerHTML = String(value[this.get_labelField()]);
@@ -171,7 +170,7 @@ org.apache.flex.html.supportClasses.StringItemRenderer.
  * @expose
  * @return {Object} The text being displayed.
  */
-org.apache.flex.html.supportClasses.StringItemRenderer.
+org_apache_flex_html_supportClasses_StringItemRenderer.
     prototype.get_data = function() {
 
   return this.element.innerHTML;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/UIItemRendererBase.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/UIItemRendererBase.js b/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/UIItemRendererBase.js
index 1543573..300dbcb 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/UIItemRendererBase.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/supportClasses/UIItemRendererBase.js
@@ -12,28 +12,28 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.supportClasses.UIItemRendererBase');
+goog.provide('org_apache_flex_html_supportClasses_UIItemRendererBase');
 
-goog.require('org.apache.flex.core.IItemRenderer');
-goog.require('org.apache.flex.core.IItemRendererFactory');
-goog.require('org.apache.flex.core.UIBase');
-goog.require('org.apache.flex.events.Event');
-goog.require('org.apache.flex.utils.MXMLDataInterpreter');
+goog.require('org_apache_flex_core_IItemRenderer');
+goog.require('org_apache_flex_core_IItemRendererFactory');
+goog.require('org_apache_flex_core_UIBase');
+goog.require('org_apache_flex_events_Event');
+goog.require('org_apache_flex_utils_MXMLDataInterpreter');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.UIBase}
- * @implements {org.apache.flex.core.IItemRenderer}
+ * @extends {org_apache_flex_core_UIBase}
+ * @implements {org_apache_flex_core_IItemRenderer}
  */
-org.apache.flex.html.supportClasses.UIItemRendererBase =
+org_apache_flex_html_supportClasses_UIItemRendererBase =
 function() {
-  org.apache.flex.html.supportClasses.UIItemRendererBase.base(this, 'constructor');
+  org_apache_flex_html_supportClasses_UIItemRendererBase.base(this, 'constructor');
 };
 goog.inherits(
-    org.apache.flex.html.supportClasses.UIItemRendererBase,
-    org.apache.flex.core.UIBase);
+    org_apache_flex_html_supportClasses_UIItemRendererBase,
+    org_apache_flex_core_UIBase);
 
 
 /**
@@ -41,18 +41,18 @@ goog.inherits(
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.supportClasses.UIItemRendererBase.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_supportClasses_UIItemRendererBase.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'UIItemRendererBase',
-                qName: 'org.apache.flex.html.supportClasses.UIItemRendererBase' }],
-      interfaces: [org.apache.flex.core.IItemRenderer, org.apache.flex.core.IItemRendererFactory]};
+                qName: 'org_apache_flex_html_supportClasses_UIItemRendererBase' }],
+      interfaces: [org_apache_flex_core_IItemRenderer, org_apache_flex_core_IItemRendererFactory]};
 
 
 /**
  * @expose
  */
-org.apache.flex.html.supportClasses.UIItemRendererBase.prototype.addedToParent =
+org_apache_flex_html_supportClasses_UIItemRendererBase.prototype.addedToParent =
 function() {
-  org.apache.flex.html.supportClasses.UIItemRendererBase.base(this, 'addedToParent');
+  org_apache_flex_html_supportClasses_UIItemRendererBase.base(this, 'addedToParent');
 
   // very common for item renderers to be resized by their containers,
   this.addEventListener('widthChanged', goog.bind(this.sizeChangeHandler, this));
@@ -61,9 +61,9 @@ function() {
   // each MXML file can also have styles in fx:Style block
   //? appropriate for JavaScript? ValuesManager.valuesImpl.init(this);
 
-  org.apache.flex.utils.MXMLDataInterpreter.generateMXMLInstances(this, this, this.get_MXMLDescriptor());
+  org_apache_flex_utils_MXMLDataInterpreter.generateMXMLInstances(this, this, this.get_MXMLDescriptor());
 
-  this.dispatchEvent(new org.apache.flex.events.Event('initComplete'));
+  this.dispatchEvent(new org_apache_flex_events_Event('initComplete'));
 };
 
 
@@ -71,8 +71,8 @@ function() {
  * @expose
  * @param {Array} data The data for the attributes.
  */
-org.apache.flex.html.supportClasses.UIItemRendererBase.prototype.generateMXMLAttributes = function(data) {
-  org.apache.flex.utils.MXMLDataInterpreter.generateMXMLProperties(this, data);
+org_apache_flex_html_supportClasses_UIItemRendererBase.prototype.generateMXMLAttributes = function(data) {
+  org_apache_flex_utils_MXMLDataInterpreter.generateMXMLProperties(this, data);
 };
 
 
@@ -80,7 +80,7 @@ org.apache.flex.html.supportClasses.UIItemRendererBase.prototype.generateMXMLAtt
  * @expose
  * @return {Object} The data being used for the itemRenderer.
  */
-org.apache.flex.html.supportClasses.UIItemRendererBase.prototype.get_data =
+org_apache_flex_html_supportClasses_UIItemRendererBase.prototype.get_data =
 function() {
   return this.data_;
 };
@@ -90,7 +90,7 @@ function() {
  * @expose
  * @param {Object} value The data to use for the itemRenderer.
  */
-org.apache.flex.html.supportClasses.UIItemRendererBase.prototype.set_data =
+org_apache_flex_html_supportClasses_UIItemRendererBase.prototype.set_data =
 function(value) {
   this.data_ = value;
 };
@@ -100,7 +100,7 @@ function(value) {
  * @expose
  * @return {String} The name of the field being used to display the label.
  */
-org.apache.flex.html.supportClasses.UIItemRendererBase.prototype.get_labelField =
+org_apache_flex_html_supportClasses_UIItemRendererBase.prototype.get_labelField =
 function() {
   return this.labelField_;
 };
@@ -110,7 +110,7 @@ function() {
  * @expose
  * @param {String} value The name of the field to use for the label.
  */
-org.apache.flex.html.supportClasses.UIItemRendererBase.prototype.set_labelField =
+org_apache_flex_html_supportClasses_UIItemRendererBase.prototype.set_labelField =
 function(value) {
   this.labelField_ = value;
 };
@@ -120,7 +120,7 @@ function(value) {
  * @expose
  * @return {Number} The index value set for this itemRenderer.
  */
-org.apache.flex.html.supportClasses.UIItemRendererBase.prototype.get_index =
+org_apache_flex_html_supportClasses_UIItemRendererBase.prototype.get_index =
 function() {
   return this.index_;
 };
@@ -130,7 +130,7 @@ function() {
  * @expose
  * @param {Number} value The row index for this itemRenderer.
  */
-org.apache.flex.html.supportClasses.UIItemRendererBase.prototype.set_index =
+org_apache_flex_html_supportClasses_UIItemRendererBase.prototype.set_index =
 function(value) {
   this.index_ = value;
 };
@@ -140,7 +140,7 @@ function(value) {
  * @expose
  * @return {Boolean} The current value of the hovered state.
  */
-org.apache.flex.html.supportClasses.UIItemRendererBase.prototype.get_hovered =
+org_apache_flex_html_supportClasses_UIItemRendererBase.prototype.get_hovered =
 function() {
   return this.hovered_;
 };
@@ -150,7 +150,7 @@ function() {
  * @expose
  * @param {Boolean} value Set to true if the itemRenderer should go into hovered state.
  */
-org.apache.flex.html.supportClasses.UIItemRendererBase.prototype.set_hovered =
+org_apache_flex_html_supportClasses_UIItemRendererBase.prototype.set_hovered =
 function(value) {
   this.hovered_ = value;
 };
@@ -160,7 +160,7 @@ function(value) {
  * @expose
  * @return {Boolean} Whether or not the itemRenderer is selected.
  */
-org.apache.flex.html.supportClasses.UIItemRendererBase.prototype.get_selected =
+org_apache_flex_html_supportClasses_UIItemRendererBase.prototype.get_selected =
 function() {
   return this.selected_;
 };
@@ -170,7 +170,7 @@ function() {
  * @expose
  * @param {Boolean} value True if this itemRenderer instance is selected.
  */
-org.apache.flex.html.supportClasses.UIItemRendererBase.prototype.set_selected =
+org_apache_flex_html_supportClasses_UIItemRendererBase.prototype.set_selected =
 function(value) {
   this.selected_ = value;
 };
@@ -180,7 +180,7 @@ function(value) {
  * @expose
  * @return {Boolean} The value of the down selection.
  */
-org.apache.flex.html.supportClasses.UIItemRendererBase.prototype.get_down =
+org_apache_flex_html_supportClasses_UIItemRendererBase.prototype.get_down =
 function() {
   return this.down_;
 };
@@ -190,7 +190,7 @@ function() {
  * @expose
  * @param {Boolean} value True if the mouse is in the down position.
  */
-org.apache.flex.html.supportClasses.UIItemRendererBase.prototype.set_down =
+org_apache_flex_html_supportClasses_UIItemRendererBase.prototype.set_down =
 function(value) {
   this.down_ = value;
 };
@@ -199,7 +199,7 @@ function(value) {
 /**
  * @expose
  */
-org.apache.flex.html.supportClasses.UIItemRendererBase.prototype.updateRenderer =
+org_apache_flex_html_supportClasses_UIItemRendererBase.prototype.updateRenderer =
 function() {
   if (this.get_down()) {
   }
@@ -214,7 +214,7 @@ function() {
  * @expose
  * @param {Event} value The event that triggered the size change.
  */
-org.apache.flex.html.supportClasses.UIItemRendererBase.prototype.sizeChangeHandler =
+org_apache_flex_html_supportClasses_UIItemRendererBase.prototype.sizeChangeHandler =
 function(value) {
   //this.adjustSize();
 };
@@ -223,7 +223,7 @@ function(value) {
 /**
  * @expose
  */
-org.apache.flex.html.supportClasses.UIItemRendererBase.prototype.adjustSize =
+org_apache_flex_html_supportClasses_UIItemRendererBase.prototype.adjustSize =
 function() {
   // handle in sub-class
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html5/CheckBox.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html5/CheckBox.js b/frameworks/js/FlexJS/src/org/apache/flex/html5/CheckBox.js
index d1e7ca8..ebf79a0 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html5/CheckBox.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html5/CheckBox.js
@@ -12,27 +12,27 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html5.CheckBox');
+goog.provide('org_apache_flex_html5_CheckBox');
 
-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.html5.CheckBox = function() {
-  org.apache.flex.html5.CheckBox.base(this, 'constructor');
+org_apache_flex_html5_CheckBox = function() {
+  org_apache_flex_html5_CheckBox.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.html5.CheckBox,
-    org.apache.flex.core.UIBase);
+goog.inherits(org_apache_flex_html5_CheckBox,
+    org_apache_flex_core_UIBase);
 
 
 /**
  * @override
  */
-org.apache.flex.html5.CheckBox.prototype.createElement =
+org_apache_flex_html5_CheckBox.prototype.createElement =
     function() {
   var cb;
 
@@ -53,7 +53,7 @@ org.apache.flex.html5.CheckBox.prototype.createElement =
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.html5.CheckBox.prototype.get_text = function() {
+org_apache_flex_html5_CheckBox.prototype.get_text = function() {
   return this.element.childNodes.item(1).nodeValue;
 };
 
@@ -62,7 +62,7 @@ org.apache.flex.html5.CheckBox.prototype.get_text = function() {
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.html5.CheckBox.prototype.set_text =
+org_apache_flex_html5_CheckBox.prototype.set_text =
     function(value) {
   this.element.childNodes.item(1).nodeValue = value;
 };
@@ -72,7 +72,7 @@ org.apache.flex.html5.CheckBox.prototype.set_text =
  * @expose
  * @return {boolean} The selected getter.
  */
-org.apache.flex.html5.CheckBox.prototype.get_selected =
+org_apache_flex_html5_CheckBox.prototype.get_selected =
     function() {
   return this.element.childNodes.item(0).checked;
 };
@@ -82,7 +82,7 @@ org.apache.flex.html5.CheckBox.prototype.get_selected =
  * @expose
  * @param {boolean} value The selected setter.
  */
-org.apache.flex.html5.CheckBox.prototype.set_selected =
+org_apache_flex_html5_CheckBox.prototype.set_selected =
     function(value) {
   this.element.childNodes.item(0).checked = value;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html5/ComboBox.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html5/ComboBox.js b/frameworks/js/FlexJS/src/org/apache/flex/html5/ComboBox.js
index 8300ab9..07119a2 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html5/ComboBox.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html5/ComboBox.js
@@ -12,27 +12,27 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html5.ComboBox');
+goog.provide('org_apache_flex_html5_ComboBox');
 
-goog.require('org.apache.flex.core.ListBase');
+goog.require('org_apache_flex_core_ListBase');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.ListBase}
+ * @extends {org_apache_flex_core_ListBase}
  */
-org.apache.flex.html5.ComboBox = function() {
-  org.apache.flex.html5.ComboBox.base(this, 'constructor');
+org_apache_flex_html5_ComboBox = function() {
+  org_apache_flex_html5_ComboBox.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.html5.ComboBox,
-    org.apache.flex.core.ListBase);
+goog.inherits(org_apache_flex_html5_ComboBox,
+    org_apache_flex_core_ListBase);
 
 
 /**
  * @override
  */
-org.apache.flex.html5.ComboBox.prototype.createElement =
+org_apache_flex_html5_ComboBox.prototype.createElement =
     function() {
   var button, input;
 
@@ -72,7 +72,7 @@ org.apache.flex.html5.ComboBox.prototype.createElement =
  * @expose
  * @param {Event} event The event.
  */
-org.apache.flex.html5.ComboBox.prototype.selectChanged =
+org_apache_flex_html5_ComboBox.prototype.selectChanged =
     function(event) {
   var select;
 
@@ -90,7 +90,7 @@ org.apache.flex.html5.ComboBox.prototype.selectChanged =
  * @expose
  * @param {Event} event The event.
  */
-org.apache.flex.html5.ComboBox.prototype.dismissPopup =
+org_apache_flex_html5_ComboBox.prototype.dismissPopup =
     function(event) {
   if (this.popup) {
     this.popup.parentNode.removeChild(this.popup);
@@ -103,7 +103,7 @@ org.apache.flex.html5.ComboBox.prototype.dismissPopup =
  * @expose
  * @param {Event} event The event.
  */
-org.apache.flex.html5.ComboBox.prototype.buttonClicked =
+org_apache_flex_html5_ComboBox.prototype.buttonClicked =
     function(event) {
   /**
    * @type {Array.<string>}
@@ -171,7 +171,7 @@ org.apache.flex.html5.ComboBox.prototype.buttonClicked =
  * @expose
  * @param {Array.<Object>} value The collection of data.
  */
-org.apache.flex.html5.ComboBox.prototype.set_dataProvider =
+org_apache_flex_html5_ComboBox.prototype.set_dataProvider =
     function(value) {
   this.dataProvider = value;
 };
@@ -181,7 +181,7 @@ org.apache.flex.html5.ComboBox.prototype.set_dataProvider =
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.html5.ComboBox.prototype.get_text = function() {
+org_apache_flex_html5_ComboBox.prototype.get_text = function() {
   return this.element.childNodes.item(0).value;
 };
 
@@ -190,7 +190,7 @@ org.apache.flex.html5.ComboBox.prototype.get_text = function() {
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.html5.ComboBox.prototype.set_text =
+org_apache_flex_html5_ComboBox.prototype.set_text =
     function(value) {
   this.element.childNodes.item(0).value = value;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html5/DropDownList.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html5/DropDownList.js b/frameworks/js/FlexJS/src/org/apache/flex/html5/DropDownList.js
index e0dfe8b..587f002 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html5/DropDownList.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html5/DropDownList.js
@@ -12,18 +12,18 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html5.DropDownList');
+goog.provide('org_apache_flex_html5_DropDownList');
 
-goog.require('org.apache.flex.core.ListBase');
+goog.require('org_apache_flex_core_ListBase');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.ListBase}
+ * @extends {org_apache_flex_core_ListBase}
  */
-org.apache.flex.html5.DropDownList = function() {
-  org.apache.flex.html5.DropDownList.base(this, 'constructor');
+org_apache_flex_html5_DropDownList = function() {
+  org_apache_flex_html5_DropDownList.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.html5.DropDownList,
-    org.apache.flex.core.ListBase);
+goog.inherits(org_apache_flex_html5_DropDownList,
+    org_apache_flex_core_ListBase);

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html5/Label.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html5/Label.js b/frameworks/js/FlexJS/src/org/apache/flex/html5/Label.js
index aed0864..05030a3 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html5/Label.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html5/Label.js
@@ -12,29 +12,29 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html5.Label');
+goog.provide('org_apache_flex_html5_Label');
 
-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.html5.Label = function() {
-  org.apache.flex.html5.Label.base(this, 'constructor');
+org_apache_flex_html5_Label = function() {
+  org_apache_flex_html5_Label.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.html5.Label,
-    org.apache.flex.core.UIBase);
+goog.inherits(org_apache_flex_html5_Label,
+    org_apache_flex_core_UIBase);
 
 
 /**
  * @override
  */
-org.apache.flex.html5.Label.prototype.createElement =
+org_apache_flex_html5_Label.prototype.createElement =
     function() {
-  org.apache.flex.html5.Label.base(this, 'createElement');
+  org_apache_flex_html5_Label.base(this, 'createElement');
 
   this.positioner = this.element;
 
@@ -46,7 +46,7 @@ org.apache.flex.html5.Label.prototype.createElement =
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.html5.Label.prototype.get_text = function() {
+org_apache_flex_html5_Label.prototype.get_text = function() {
   return this.element.innerHTML;
 };
 
@@ -55,7 +55,7 @@ org.apache.flex.html5.Label.prototype.get_text = function() {
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.html5.Label.prototype.set_text =
+org_apache_flex_html5_Label.prototype.set_text =
     function(value) {
   this.element.innerHTML = value;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html5/List.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html5/List.js b/frameworks/js/FlexJS/src/org/apache/flex/html5/List.js
index 4861cb3..984b43d 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html5/List.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html5/List.js
@@ -12,29 +12,29 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html5.List');
+goog.provide('org_apache_flex_html5_List');
 
-goog.require('org.apache.flex.core.ListBase');
+goog.require('org_apache_flex_core_ListBase');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.ListBase}
+ * @extends {org_apache_flex_core_ListBase}
  */
-org.apache.flex.html5.List = function() {
-  org.apache.flex.html5.List.base(this, 'constructor');
+org_apache_flex_html5_List = function() {
+  org_apache_flex_html5_List.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.html5.List,
-    org.apache.flex.core.ListBase);
+goog.inherits(org_apache_flex_html5_List,
+    org_apache_flex_core_ListBase);
 
 
 /**
  * @override
  */
-org.apache.flex.html5.List.prototype.createElement =
+org_apache_flex_html5_List.prototype.createElement =
     function() {
-  org.apache.flex.html5.List.base(this, 'createElement');
+  org_apache_flex_html5_List.base(this, 'createElement');
 
   this.element.size = 5;
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html5/RadioButton.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html5/RadioButton.js b/frameworks/js/FlexJS/src/org/apache/flex/html5/RadioButton.js
index b683301..efe24f6 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html5/RadioButton.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html5/RadioButton.js
@@ -12,27 +12,27 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html5.RadioButton');
+goog.provide('org_apache_flex_html5_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.html5.RadioButton = function() {
-  org.apache.flex.html5.RadioButton.base(this, 'constructor');
+org_apache_flex_html5_RadioButton = function() {
+  org_apache_flex_html5_RadioButton.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.html5.RadioButton,
-    org.apache.flex.core.UIBase);
+goog.inherits(org_apache_flex_html5_RadioButton,
+    org_apache_flex_core_UIBase);
 
 
 /**
  * @override
  */
-org.apache.flex.html5.RadioButton.prototype.createElement =
+org_apache_flex_html5_RadioButton.prototype.createElement =
     function() {
   var rb;
 
@@ -53,7 +53,7 @@ org.apache.flex.html5.RadioButton.prototype.createElement =
  * @expose
  * @return {string} The groupName getter.
  */
-org.apache.flex.html5.RadioButton.prototype.get_groupName =
+org_apache_flex_html5_RadioButton.prototype.get_groupName =
     function() {
   return this.element.childNodes.item(0).name;
 };
@@ -63,7 +63,7 @@ org.apache.flex.html5.RadioButton.prototype.get_groupName =
  * @expose
  * @param {string} value The groupName setter.
  */
-org.apache.flex.html5.RadioButton.prototype.set_groupName =
+org_apache_flex_html5_RadioButton.prototype.set_groupName =
     function(value) {
   this.element.childNodes.item(0).name = value;
 };
@@ -73,7 +73,7 @@ org.apache.flex.html5.RadioButton.prototype.set_groupName =
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.html5.RadioButton.prototype.get_text =
+org_apache_flex_html5_RadioButton.prototype.get_text =
     function() {
   return this.element.childNodes.item(1).nodeValue;
 };
@@ -83,7 +83,7 @@ org.apache.flex.html5.RadioButton.prototype.get_text =
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.html5.RadioButton.prototype.set_text =
+org_apache_flex_html5_RadioButton.prototype.set_text =
     function(value) {
   this.element.childNodes.item(1).nodeValue = value;
 };
@@ -93,7 +93,7 @@ org.apache.flex.html5.RadioButton.prototype.set_text =
  * @expose
  * @return {boolean} The selected getter.
  */
-org.apache.flex.html5.RadioButton.prototype.get_selected =
+org_apache_flex_html5_RadioButton.prototype.get_selected =
     function() {
   return this.element.childNodes.item(0).checked;
 };
@@ -103,7 +103,7 @@ org.apache.flex.html5.RadioButton.prototype.get_selected =
  * @expose
  * @param {boolean} value The selected setter.
  */
-org.apache.flex.html5.RadioButton.prototype.set_selected =
+org_apache_flex_html5_RadioButton.prototype.set_selected =
     function(value) {
   this.element.childNodes.item(0).checked = value;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html5/TextArea.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html5/TextArea.js b/frameworks/js/FlexJS/src/org/apache/flex/html5/TextArea.js
index 174ebb4..81f80dd 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html5/TextArea.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html5/TextArea.js
@@ -12,27 +12,27 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html5.TextArea');
+goog.provide('org_apache_flex_html5_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.html5.TextArea = function() {
-  org.apache.flex.html5.TextArea.base(this, 'constructor');
+org_apache_flex_html5_TextArea = function() {
+  org_apache_flex_html5_TextArea.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.html5.TextArea,
-    org.apache.flex.core.UIBase);
+goog.inherits(org_apache_flex_html5_TextArea,
+    org_apache_flex_core_UIBase);
 
 
 /**
  * @override
  */
-org.apache.flex.html5.TextArea.prototype.createElement =
+org_apache_flex_html5_TextArea.prototype.createElement =
     function() {
   this.element = document.createElement('textarea');
 
@@ -46,7 +46,7 @@ org.apache.flex.html5.TextArea.prototype.createElement =
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.html5.TextArea.prototype.get_text = function() {
+org_apache_flex_html5_TextArea.prototype.get_text = function() {
   return this.element.value;
 };
 
@@ -55,7 +55,7 @@ org.apache.flex.html5.TextArea.prototype.get_text = function() {
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.html5.TextArea.prototype.set_text =
+org_apache_flex_html5_TextArea.prototype.set_text =
     function(value) {
   this.element.value = value;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html5/TextButton.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html5/TextButton.js b/frameworks/js/FlexJS/src/org/apache/flex/html5/TextButton.js
index a77af93..cf803e3 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html5/TextButton.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html5/TextButton.js
@@ -12,27 +12,27 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html5.TextButton');
+goog.provide('org_apache_flex_html5_TextButton');
 
-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.html5.TextButton = function() {
-  org.apache.flex.html5.TextButton.base(this, 'constructor');
+org_apache_flex_html5_TextButton = function() {
+  org_apache_flex_html5_TextButton.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.html5.TextButton,
-    org.apache.flex.core.UIBase);
+goog.inherits(org_apache_flex_html5_TextButton,
+    org_apache_flex_core_UIBase);
 
 
 /**
  * @override
  */
-org.apache.flex.html5.TextButton.prototype.createElement =
+org_apache_flex_html5_TextButton.prototype.createElement =
     function() {
   this.element = document.createElement('button');
   this.element.setAttribute('type', 'button');
@@ -47,7 +47,7 @@ org.apache.flex.html5.TextButton.prototype.createElement =
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.html5.TextButton.prototype.get_text =
+org_apache_flex_html5_TextButton.prototype.get_text =
     function() {
   return this.element.innerHTML;
 };
@@ -57,7 +57,7 @@ org.apache.flex.html5.TextButton.prototype.get_text =
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.html5.TextButton.prototype.set_text =
+org_apache_flex_html5_TextButton.prototype.set_text =
     function(value) {
   this.element.innerHTML = value;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html5/TextInput.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html5/TextInput.js b/frameworks/js/FlexJS/src/org/apache/flex/html5/TextInput.js
index 371d847..12ddecc 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html5/TextInput.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html5/TextInput.js
@@ -12,27 +12,27 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html5.TextInput');
+goog.provide('org_apache_flex_html5_TextInput');
 
-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.html5.TextInput = function() {
-  org.apache.flex.html5.TextInput.base(this, 'constructor');
+org_apache_flex_html5_TextInput = function() {
+  org_apache_flex_html5_TextInput.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.html5.TextInput,
-    org.apache.flex.core.UIBase);
+goog.inherits(org_apache_flex_html5_TextInput,
+    org_apache_flex_core_UIBase);
 
 
 /**
  * @override
  */
-org.apache.flex.html5.TextInput.prototype.createElement =
+org_apache_flex_html5_TextInput.prototype.createElement =
     function() {
   this.element = document.createElement('input');
   this.element.setAttribute('type', 'input');
@@ -47,7 +47,7 @@ org.apache.flex.html5.TextInput.prototype.createElement =
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.html5.TextInput.prototype.get_text = function() {
+org_apache_flex_html5_TextInput.prototype.get_text = function() {
   return this.element.value;
 };
 
@@ -56,7 +56,7 @@ org.apache.flex.html5.TextInput.prototype.get_text = function() {
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.html5.TextInput.prototype.set_text =
+org_apache_flex_html5_TextInput.prototype.set_text =
     function(value) {
   this.element.value = value;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/jquery/Application.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/jquery/Application.js b/frameworks/js/FlexJS/src/org/apache/flex/jquery/Application.js
index d646b13..16c3dec 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/jquery/Application.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/jquery/Application.js
@@ -24,19 +24,19 @@ FalconJX will inject html into the index.html file.  Surround with
 </inject_html>
 */
 
-goog.provide('org.apache.flex.jquery.Application');
+goog.provide('org_apache_flex_jquery_Application');
 
-goog.require('org.apache.flex.core.Application');
+goog.require('org_apache_flex_core_Application');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.Application}
+ * @extends {org_apache_flex_core_Application}
  */
-org.apache.flex.jquery.Application = function() {
-  org.apache.flex.jquery.Application.base(this, 'constructor');
+org_apache_flex_jquery_Application = function() {
+  org_apache_flex_jquery_Application.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.jquery.Application,
-    org.apache.flex.core.Application);
+goog.inherits(org_apache_flex_jquery_Application,
+    org_apache_flex_core_Application);
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/jquery/CheckBox.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/jquery/CheckBox.js b/frameworks/js/FlexJS/src/org/apache/flex/jquery/CheckBox.js
index 2bbc068..f3052ef 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/jquery/CheckBox.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/jquery/CheckBox.js
@@ -12,21 +12,21 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.jquery.CheckBox');
+goog.provide('org_apache_flex_jquery_CheckBox');
 
-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.jquery.CheckBox = function() {
-  org.apache.flex.jquery.CheckBox.base(this, 'constructor');
+org_apache_flex_jquery_CheckBox = function() {
+  org_apache_flex_jquery_CheckBox.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.jquery.CheckBox,
-    org.apache.flex.core.UIBase);
+goog.inherits(org_apache_flex_jquery_CheckBox,
+    org_apache_flex_core_UIBase);
 
 
 /**
@@ -34,15 +34,15 @@ goog.inherits(org.apache.flex.jquery.CheckBox,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.jquery.CheckBox.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_jquery_CheckBox.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'CheckBox',
-                qName: 'org.apache.flex.jquery.CheckBox'}] };
+                qName: 'org_apache_flex_jquery_CheckBox'}] };
 
 
 /**
  * @override
  */
-org.apache.flex.jquery.CheckBox.prototype.createElement =
+org_apache_flex_jquery_CheckBox.prototype.createElement =
     function() {
   var cb;
 
@@ -65,7 +65,7 @@ org.apache.flex.jquery.CheckBox.prototype.createElement =
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.jquery.CheckBox.prototype.get_text = function() {
+org_apache_flex_jquery_CheckBox.prototype.get_text = function() {
   return this.element.childNodes.item(1).nodeValue;
 };
 
@@ -74,7 +74,7 @@ org.apache.flex.jquery.CheckBox.prototype.get_text = function() {
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.jquery.CheckBox.prototype.set_text =
+org_apache_flex_jquery_CheckBox.prototype.set_text =
     function(value) {
   this.element.childNodes.item(1).nodeValue = value;
 };
@@ -84,7 +84,7 @@ org.apache.flex.jquery.CheckBox.prototype.set_text =
  * @expose
  * @return {boolean} The selected getter.
  */
-org.apache.flex.jquery.CheckBox.prototype.get_selected =
+org_apache_flex_jquery_CheckBox.prototype.get_selected =
     function() {
   return this.element.childNodes.item(0).checked;
 };
@@ -94,7 +94,7 @@ org.apache.flex.jquery.CheckBox.prototype.get_selected =
  * @expose
  * @param {boolean} value The selected setter.
  */
-org.apache.flex.jquery.CheckBox.prototype.set_selected =
+org_apache_flex_jquery_CheckBox.prototype.set_selected =
     function(value) {
   this.element.childNodes.item(0).checked = value;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/jquery/RadioButton.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/jquery/RadioButton.js b/frameworks/js/FlexJS/src/org/apache/flex/jquery/RadioButton.js
index 762f902..3584ce9 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/jquery/RadioButton.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/jquery/RadioButton.js
@@ -12,25 +12,25 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.jquery.RadioButton');
+goog.provide('org_apache_flex_jquery_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.jquery.RadioButton = function() {
+org_apache_flex_jquery_RadioButton = function() {
 
-  org.apache.flex.jquery.RadioButton.base(this, 'constructor');
+  org_apache_flex_jquery_RadioButton.base(this, 'constructor');
 
-  org.apache.flex.core.UIBase.call(this);
-  org.apache.flex.jquery.RadioButton.radioCounter++;
+  org_apache_flex_core_UIBase.call(this);
+  org_apache_flex_jquery_RadioButton.radioCounter++;
 };
-goog.inherits(org.apache.flex.jquery.RadioButton,
-    org.apache.flex.core.UIBase);
+goog.inherits(org_apache_flex_jquery_RadioButton,
+    org_apache_flex_core_UIBase);
 
 
 /**
@@ -38,40 +38,40 @@ goog.inherits(org.apache.flex.jquery.RadioButton,
  * @type {?string}
  * The name of the radioGroup.
  */
-org.apache.flex.jquery.RadioButton.prototype.radioGroupName = null;
+org_apache_flex_jquery_RadioButton.prototype.radioGroupName = null;
 
 
 /**
  * @expose
  * Used to provide ids to the radio buttons.
  */
-org.apache.flex.jquery.RadioButton.radioCounter = 0;
+org_apache_flex_jquery_RadioButton.radioCounter = 0;
 
 
 /**
  * @expose
  * Used to manage groups on the radio buttons.
  */
-org.apache.flex.jquery.RadioButton.groups = { };
+org_apache_flex_jquery_RadioButton.groups = { };
 
 
 /**
  * Flag to make sure the event handler is set only once.
  */
-org.apache.flex.jquery.RadioButton.groupHandlerSet = false;
+org_apache_flex_jquery_RadioButton.groupHandlerSet = false;
 
 
 /**
  * @override
  */
-org.apache.flex.jquery.RadioButton.prototype.createElement =
+org_apache_flex_jquery_RadioButton.prototype.createElement =
     function() {
 
   // the radio itself
   this.input = document.createElement('input');
   this.input.type = 'radio';
   this.input.name = 'radio';
-  this.input.id = '_radio_' + org.apache.flex.jquery.RadioButton.radioCounter++;
+  this.input.id = '_radio_' + org_apache_flex_jquery_RadioButton.radioCounter++;
 
   this.labelFor = document.createElement('label');
   this.labelFor.htmlFor = this.input.id;
@@ -92,9 +92,9 @@ org.apache.flex.jquery.RadioButton.prototype.createElement =
 /**
  * @override
  */
-org.apache.flex.jquery.RadioButton.prototype.addedToParent =
+org_apache_flex_jquery_RadioButton.prototype.addedToParent =
     function() {
-  org.apache.flex.jquery.RadioButton.base(this, 'addedToParent');
+  org_apache_flex_jquery_RadioButton.base(this, 'addedToParent');
   $(this.input).button();
 };
 
@@ -102,8 +102,8 @@ org.apache.flex.jquery.RadioButton.prototype.addedToParent =
 /**
  * @override
  */
-org.apache.flex.jquery.RadioButton.prototype.set_id = function(value) {
-  org.apache.flex.jquery.RadioButton.base(this, 'set_id', value);
+org_apache_flex_jquery_RadioButton.prototype.set_id = function(value) {
+  org_apache_flex_jquery_RadioButton.base(this, 'set_id', value);
   this.labelFor.id = value;
   this.labelFor.htmlFor = value;
 };
@@ -113,7 +113,7 @@ org.apache.flex.jquery.RadioButton.prototype.set_id = function(value) {
  * @expose
  * @return {?string} The groupName getter.
  */
-org.apache.flex.jquery.RadioButton.prototype.get_groupName =
+org_apache_flex_jquery_RadioButton.prototype.get_groupName =
     function() {
   return this.radioGroupName;
 };
@@ -123,7 +123,7 @@ org.apache.flex.jquery.RadioButton.prototype.get_groupName =
  * @expose
  * @param {string} value The groupName setter.
  */
-org.apache.flex.jquery.RadioButton.prototype.set_groupName =
+org_apache_flex_jquery_RadioButton.prototype.set_groupName =
     function(value) {
 
   this.radioGroupName = value;
@@ -135,7 +135,7 @@ org.apache.flex.jquery.RadioButton.prototype.set_groupName =
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.jquery.RadioButton.prototype.get_text =
+org_apache_flex_jquery_RadioButton.prototype.get_text =
     function() {
   return this.labelFor.innerHTML;
 };
@@ -145,7 +145,7 @@ org.apache.flex.jquery.RadioButton.prototype.get_text =
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.jquery.RadioButton.prototype.set_text =
+org_apache_flex_jquery_RadioButton.prototype.set_text =
     function(value) {
   this.labelFor.innerHTML = value;
 };
@@ -155,7 +155,7 @@ org.apache.flex.jquery.RadioButton.prototype.set_text =
  * @expose
  * @return {boolean} The selected getter.
  */
-org.apache.flex.jquery.RadioButton.prototype.get_selected =
+org_apache_flex_jquery_RadioButton.prototype.get_selected =
     function() {
   return this.input.checked;
 };
@@ -165,7 +165,7 @@ org.apache.flex.jquery.RadioButton.prototype.get_selected =
  * @expose
  * @param {boolean} value The selected setter.
  */
-org.apache.flex.jquery.RadioButton.prototype.set_selected =
+org_apache_flex_jquery_RadioButton.prototype.set_selected =
     function(value) {
   this.input.checked = value;
 };
@@ -175,7 +175,7 @@ org.apache.flex.jquery.RadioButton.prototype.set_selected =
  * @expose
  * @return {Object} The value getter.
  */
-org.apache.flex.jquery.RadioButton.prototype.get_value =
+org_apache_flex_jquery_RadioButton.prototype.get_value =
     function() {
   return this.input.value;
 };
@@ -185,7 +185,7 @@ org.apache.flex.jquery.RadioButton.prototype.get_value =
  * @expose
  * @param {Object} value The value setter.
  */
-org.apache.flex.jquery.RadioButton.prototype.set_value =
+org_apache_flex_jquery_RadioButton.prototype.set_value =
     function(value) {
   this.input.value = value;
 };
@@ -195,7 +195,7 @@ org.apache.flex.jquery.RadioButton.prototype.set_value =
  * @expose
  * @return {Object} The value of the selected RadioButton.
  */
-org.apache.flex.jquery.RadioButton.prototype.get_selectedValue =
+org_apache_flex_jquery_RadioButton.prototype.get_selectedValue =
     function() {
   var buttons, groupName, i, n;
 
@@ -216,7 +216,7 @@ org.apache.flex.jquery.RadioButton.prototype.get_selectedValue =
  * @expose
  * @param {Object} value The value of the selected RadioButton.
  */
-org.apache.flex.jquery.RadioButton.prototype.set_selectedValue =
+org_apache_flex_jquery_RadioButton.prototype.set_selectedValue =
     function(value) {
   var buttons, groupName, i, n;
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/jquery/TextButton.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/jquery/TextButton.js b/frameworks/js/FlexJS/src/org/apache/flex/jquery/TextButton.js
index fbc505b..88c1d3b 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/jquery/TextButton.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/jquery/TextButton.js
@@ -12,27 +12,27 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.jquery.TextButton');
+goog.provide('org_apache_flex_jquery_TextButton');
 
-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.jquery.TextButton = function() {
-  org.apache.flex.jquery.TextButton.base(this, 'constructor');
+org_apache_flex_jquery_TextButton = function() {
+  org_apache_flex_jquery_TextButton.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.jquery.TextButton,
-    org.apache.flex.core.UIBase);
+goog.inherits(org_apache_flex_jquery_TextButton,
+    org_apache_flex_core_UIBase);
 
 
 /**
  * @override
  */
-org.apache.flex.jquery.TextButton.prototype.createElement =
+org_apache_flex_jquery_TextButton.prototype.createElement =
     function() {
   this.element = document.createElement('button');
   this.element.setAttribute('type', 'button');
@@ -46,9 +46,9 @@ org.apache.flex.jquery.TextButton.prototype.createElement =
 /**
  * @override
  */
-org.apache.flex.jquery.TextButton.prototype.addedToParent =
+org_apache_flex_jquery_TextButton.prototype.addedToParent =
     function() {
-  org.apache.flex.jquery.TextButton.base(this, 'addedToParent');
+  org_apache_flex_jquery_TextButton.base(this, 'addedToParent');
   $(this.element).button();
 };
 
@@ -57,7 +57,7 @@ org.apache.flex.jquery.TextButton.prototype.addedToParent =
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.jquery.TextButton.prototype.get_text =
+org_apache_flex_jquery_TextButton.prototype.get_text =
     function() {
   return this.element.innerHTML;
 };
@@ -67,7 +67,7 @@ org.apache.flex.jquery.TextButton.prototype.get_text =
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.jquery.TextButton.prototype.set_text =
+org_apache_flex_jquery_TextButton.prototype.set_text =
     function(value) {
   this.element.innerHTML = value;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/maps/google/Geometry.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/maps/google/Geometry.js b/frameworks/js/FlexJS/src/org/apache/flex/maps/google/Geometry.js
index 2ee1201..0c18920 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/maps/google/Geometry.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/maps/google/Geometry.js
@@ -12,9 +12,9 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.maps.google.Geometry');
+goog.provide('org_apache_flex_maps_google_Geometry');
 
-goog.require('org.apache.flex.maps.google.LatLng');
+goog.require('org_apache_flex_maps_google_LatLng');
 
 
 // IMPORTANT:
@@ -26,8 +26,8 @@ goog.require('org.apache.flex.maps.google.LatLng');
 /**
  * @constructor
  */
-org.apache.flex.maps.google.Geometry = function() {
-  this.location = new org.apache.flex.maps.google.LatLng();
+org_apache_flex_maps_google_Geometry = function() {
+  this.location = new org_apache_flex_maps_google_LatLng();
 };
 
 
@@ -36,15 +36,15 @@ org.apache.flex.maps.google.Geometry = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.maps.google.Geometry.prototype.
+org_apache_flex_maps_google_Geometry.prototype.
 FLEXJS_CLASS_INFO =
 { names: [{ name: 'Geometry',
-           qName: 'org.apache.flex.maps.google.Geometry' }],
+           qName: 'org_apache_flex_maps_google_Geometry' }],
     interfaces: [] };
 
 
 /**
  * @type {Object} The current location
  */
-org.apache.flex.maps.google.Geometry.prototype.location = null;
+org_apache_flex_maps_google_Geometry.prototype.location = null;
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/maps/google/LatLng.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/maps/google/LatLng.js b/frameworks/js/FlexJS/src/org/apache/flex/maps/google/LatLng.js
index 23fac04..8cafa2e 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/maps/google/LatLng.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/maps/google/LatLng.js
@@ -12,7 +12,7 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.maps.google.LatLng');
+goog.provide('org_apache_flex_maps_google_LatLng');
 
 
 // IMPORTANT:
@@ -24,7 +24,7 @@ goog.provide('org.apache.flex.maps.google.LatLng');
 /**
  * @constructor
  */
-org.apache.flex.maps.google.LatLng = function() {
+org_apache_flex_maps_google_LatLng = function() {
 };
 
 
@@ -33,21 +33,21 @@ org.apache.flex.maps.google.LatLng = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.maps.google.LatLng.prototype.
+org_apache_flex_maps_google_LatLng.prototype.
 FLEXJS_CLASS_INFO =
 { names: [{ name: 'LatLng',
-           qName: 'org.apache.flex.maps.google.LatLng' }],
+           qName: 'org_apache_flex_maps_google_LatLng' }],
     interfaces: [] };
 
 
 /**
  * @type {number} The latitude
  */
-org.apache.flex.maps.google.LatLng.prototype.lat = 0;
+org_apache_flex_maps_google_LatLng.prototype.lat = 0;
 
 
 /**
  * @type {number} The longitude
  */
-org.apache.flex.maps.google.LatLng.prototype.lng = 0;
+org_apache_flex_maps_google_LatLng.prototype.lng = 0;
 


[05/12] git commit: [flex-asjs] [refs/heads/develop] - switching from org.apache.flex to org_apache_flex so GCC doesn't complain

Posted by ah...@apache.org.
http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/MultilineLabel.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/MultilineLabel.js b/frameworks/js/FlexJS/src/org/apache/flex/html/MultilineLabel.js
index 674c003..9dbb507 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/MultilineLabel.js
+++ b/frameworks/js/FlexJS/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,16 +38,16 @@ 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' }] };
 
 
 /**
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.html.MultilineLabel.prototype.get_text = function() {
+org_apache_flex_html_MultilineLabel.prototype.get_text = function() {
   return this.element.innerHTML;
 };
 
@@ -56,7 +56,7 @@ org.apache.flex.html.MultilineLabel.prototype.get_text = function() {
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.html.MultilineLabel.prototype.set_text = function(value) {
+org_apache_flex_html_MultilineLabel.prototype.set_text = function(value) {
   this.element.innerHTML = value;
 };
 
@@ -65,7 +65,7 @@ org.apache.flex.html.MultilineLabel.prototype.set_text = function(value) {
  * @expose
  * @return {string} The html getter.
  */
-org.apache.flex.html.MultilineLabel.prototype.get_html = function() {
+org_apache_flex_html_MultilineLabel.prototype.get_html = function() {
   return this.element.innerHTML;
 };
 
@@ -74,6 +74,6 @@ org.apache.flex.html.MultilineLabel.prototype.get_html = function() {
  * @expose
  * @param {string} value The html setter.
  */
-org.apache.flex.html.MultilineLabel.prototype.set_html = function(value) {
+org_apache_flex_html_MultilineLabel.prototype.set_html = function(value) {
   this.element.innerHTML = value;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/NumericStepper.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/NumericStepper.js b/frameworks/js/FlexJS/src/org/apache/flex/html/NumericStepper.js
index 4323042..f66ab83 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/NumericStepper.js
+++ b/frameworks/js/FlexJS/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 = function() {
   this.model =
-      new org.apache.flex.html.beads.models.RangeModel();
-  org.apache.flex.html.NumericStepper.base(this, 'constructor');
+      new org_apache_flex_html_beads_models_RangeModel();
+  org_apache_flex_html_NumericStepper.base(this, 'constructor');
 };
-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,13 +90,13 @@ 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.get_value();
   this.set_value(newValue);
   this.input.set_text(String(this.spinner.get_value()));
-  this.dispatchEvent(new org.apache.flex.events.Event('valueChange'));
+  this.dispatchEvent(new org_apache_flex_events_Event('valueChange'));
 };
 
 
@@ -104,7 +104,7 @@ org.apache.flex.html.NumericStepper.prototype.spinnerChange =
  * @expose
  * @return {Number} The current minimum value.
  */
-org.apache.flex.html.NumericStepper.prototype.get_minimum =
+org_apache_flex_html_NumericStepper.prototype.get_minimum =
     function() {
   return this.model.get_minimum();
 };
@@ -114,7 +114,7 @@ org.apache.flex.html.NumericStepper.prototype.get_minimum =
  * @expose
  * @param {Number} value The new minimum value.
  */
-org.apache.flex.html.NumericStepper.prototype.set_minimum =
+org_apache_flex_html_NumericStepper.prototype.set_minimum =
     function(value) {
   this.model.set_minimum(value);
 };
@@ -124,7 +124,7 @@ org.apache.flex.html.NumericStepper.prototype.set_minimum =
  * @expose
  * @return {Number} The current maximum value.
  */
-org.apache.flex.html.NumericStepper.prototype.get_maximum =
+org_apache_flex_html_NumericStepper.prototype.get_maximum =
     function() {
   return this.model.get_maximum();
 };
@@ -134,7 +134,7 @@ org.apache.flex.html.NumericStepper.prototype.get_maximum =
  * @expose
  * @param {Number} value The new maximum value.
  */
-org.apache.flex.html.NumericStepper.prototype.set_maximum =
+org_apache_flex_html_NumericStepper.prototype.set_maximum =
     function(value) {
   this.model.set_maximum(value);
 };
@@ -144,7 +144,7 @@ org.apache.flex.html.NumericStepper.prototype.set_maximum =
  * @expose
  * @return {Number} The current value.
  */
-org.apache.flex.html.NumericStepper.prototype.get_value =
+org_apache_flex_html_NumericStepper.prototype.get_value =
     function() {
   return this.model.get_value();
 };
@@ -154,7 +154,7 @@ org.apache.flex.html.NumericStepper.prototype.get_value =
  * @expose
  * @param {Number} newValue The new value.
  */
-org.apache.flex.html.NumericStepper.prototype.set_value =
+org_apache_flex_html_NumericStepper.prototype.set_value =
     function(newValue) {
   this.model.set_value(newValue);
   this.spinner.set_value(newValue);
@@ -165,7 +165,7 @@ org.apache.flex.html.NumericStepper.prototype.set_value =
  * @expose
  * @return {Number} The current snapInterval value.
  */
-org.apache.flex.html.NumericStepper.prototype.get_snapInterval =
+org_apache_flex_html_NumericStepper.prototype.get_snapInterval =
     function() {
   return this.model.get_snapInterval();
 };
@@ -175,7 +175,7 @@ org.apache.flex.html.NumericStepper.prototype.get_snapInterval =
  * @expose
  * @param {Number} value The new snapInterval value.
  */
-org.apache.flex.html.NumericStepper.prototype.set_snapInterval =
+org_apache_flex_html_NumericStepper.prototype.set_snapInterval =
     function(value) {
   this.model.set_snapInterval(value);
 };
@@ -185,7 +185,7 @@ org.apache.flex.html.NumericStepper.prototype.set_snapInterval =
  * @expose
  * @return {Number} The current stepSize value.
  */
-org.apache.flex.html.NumericStepper.prototype.get_stepSize =
+org_apache_flex_html_NumericStepper.prototype.get_stepSize =
     function() {
   return this.model.get_stepSize();
 };
@@ -195,7 +195,7 @@ org.apache.flex.html.NumericStepper.prototype.get_stepSize =
  * @expose
  * @param {Number} value The new stepSize value.
  */
-org.apache.flex.html.NumericStepper.prototype.set_stepSize =
+org_apache_flex_html_NumericStepper.prototype.set_stepSize =
     function(value) {
   this.model.set_stepSize(value);
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/Panel.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/Panel.js b/frameworks/js/FlexJS/src/org/apache/flex/html/Panel.js
index eb9033b..b44f317 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/Panel.js
+++ b/frameworks/js/FlexJS/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,7 +142,7 @@ org.apache.flex.html.Panel.prototype.addedToParent =
  * @expose
  * @return {boolean} The showCloseButton getter.
  */
-org.apache.flex.html.Panel.prototype.get_showCloseButton = function() {
+org_apache_flex_html_Panel.prototype.get_showCloseButton = function() {
   return this.get_model().get_showCloseButton();
 };
 
@@ -151,7 +151,7 @@ org.apache.flex.html.Panel.prototype.get_showCloseButton = function() {
  * @expose
  * @param {boolean} value The showCloseButton setter.
  */
-org.apache.flex.html.Panel.prototype.set_showCloseButton =
+org_apache_flex_html_Panel.prototype.set_showCloseButton =
     function(value) {
   this.get_model().set_showCloseButton(value);
 };
@@ -161,7 +161,7 @@ org.apache.flex.html.Panel.prototype.set_showCloseButton =
  * @expose
  * @return {string} The title getter.
  */
-org.apache.flex.html.Panel.prototype.get_title = function() {
+org_apache_flex_html_Panel.prototype.get_title = function() {
   return this.get_model().get_title();
 };
 
@@ -170,7 +170,7 @@ org.apache.flex.html.Panel.prototype.get_title = function() {
  * @expose
  * @param {string} value The title setter.
  */
-org.apache.flex.html.Panel.prototype.set_title =
+org_apache_flex_html_Panel.prototype.set_title =
 function(value) {
   this.get_model().set_title(value);
 };
@@ -180,7 +180,7 @@ function(value) {
  * @expose
  * @return {Array} The controlBar getter.
  */
-org.apache.flex.html.Panel.prototype.get_controlBar =
+org_apache_flex_html_Panel.prototype.get_controlBar =
     function() {
   return this.controlBarChildren;
 };
@@ -190,7 +190,7 @@ org.apache.flex.html.Panel.prototype.get_controlBar =
  * @expose
  * @param {Array} value The controlBar setter.
  */
-org.apache.flex.html.Panel.prototype.set_controlBar =
+org_apache_flex_html_Panel.prototype.set_controlBar =
     function(value) {
   this.controlBarChildren = value;
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/RadioButton.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/RadioButton.js b/frameworks/js/FlexJS/src/org/apache/flex/html/RadioButton.js
index 46e9114..8fad4e5 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/RadioButton.js
+++ b/frameworks/js/FlexJS/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 =
 /**
  * @expose
  */
-org.apache.flex.html.RadioButton.prototype.initModel =
+org_apache_flex_html_RadioButton.prototype.initModel =
     function() {
 };
 
@@ -82,7 +82,7 @@ org.apache.flex.html.RadioButton.prototype.initModel =
 /**
  * @expose
  */
-org.apache.flex.html.RadioButton.prototype.initSkin =
+org_apache_flex_html_RadioButton.prototype.initSkin =
     function() {
 };
 
@@ -90,8 +90,8 @@ org.apache.flex.html.RadioButton.prototype.initSkin =
 /**
  * @override
  */
-org.apache.flex.html.RadioButton.prototype.set_id = function(value) {
-  org.apache.flex.html.RadioButton.base(this, 'set_id', value);
+org_apache_flex_html_RadioButton.prototype.set_id = function(value) {
+  org_apache_flex_html_RadioButton.base(this, 'set_id', value);
   this.labelFor.id = value;
   this.input.id = value;
 };
@@ -101,7 +101,7 @@ org.apache.flex.html.RadioButton.prototype.set_id = function(value) {
  * @expose
  * @return {string} The groupName getter.
  */
-org.apache.flex.html.RadioButton.prototype.get_groupName =
+org_apache_flex_html_RadioButton.prototype.get_groupName =
     function() {
   return this.input.name;
 };
@@ -111,7 +111,7 @@ org.apache.flex.html.RadioButton.prototype.get_groupName =
  * @expose
  * @param {string} value The groupName setter.
  */
-org.apache.flex.html.RadioButton.prototype.set_groupName =
+org_apache_flex_html_RadioButton.prototype.set_groupName =
     function(value) {
   this.input.name = value;
 };
@@ -121,7 +121,7 @@ org.apache.flex.html.RadioButton.prototype.set_groupName =
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.html.RadioButton.prototype.get_text =
+org_apache_flex_html_RadioButton.prototype.get_text =
     function() {
   return this.textNode.nodeValue;
 };
@@ -131,7 +131,7 @@ org.apache.flex.html.RadioButton.prototype.get_text =
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.html.RadioButton.prototype.set_text =
+org_apache_flex_html_RadioButton.prototype.set_text =
     function(value) {
   this.textNode.nodeValue = value;
 };
@@ -141,7 +141,7 @@ org.apache.flex.html.RadioButton.prototype.set_text =
  * @expose
  * @return {boolean} The selected getter.
  */
-org.apache.flex.html.RadioButton.prototype.get_selected =
+org_apache_flex_html_RadioButton.prototype.get_selected =
     function() {
   return this.input.checked;
 };
@@ -151,7 +151,7 @@ org.apache.flex.html.RadioButton.prototype.get_selected =
  * @expose
  * @param {boolean} value The selected setter.
  */
-org.apache.flex.html.RadioButton.prototype.set_selected =
+org_apache_flex_html_RadioButton.prototype.set_selected =
     function(value) {
   this.input.checked = value;
 };
@@ -161,7 +161,7 @@ org.apache.flex.html.RadioButton.prototype.set_selected =
  * @expose
  * @return {Object} The value getter.
  */
-org.apache.flex.html.RadioButton.prototype.get_value =
+org_apache_flex_html_RadioButton.prototype.get_value =
     function() {
   return this.input.value;
 };
@@ -171,7 +171,7 @@ org.apache.flex.html.RadioButton.prototype.get_value =
  * @expose
  * @param {Object} value The value setter.
  */
-org.apache.flex.html.RadioButton.prototype.set_value =
+org_apache_flex_html_RadioButton.prototype.set_value =
     function(value) {
   this.input.value = value;
 };
@@ -181,7 +181,7 @@ org.apache.flex.html.RadioButton.prototype.set_value =
  * @expose
  * @return {Object} The value of the selected RadioButton.
  */
-org.apache.flex.html.RadioButton.prototype.get_selectedValue =
+org_apache_flex_html_RadioButton.prototype.get_selectedValue =
     function() {
   var buttons, groupName, i, n;
 
@@ -202,7 +202,7 @@ org.apache.flex.html.RadioButton.prototype.get_selectedValue =
  * @expose
  * @param {Object} value The value of the selected RadioButton.
  */
-org.apache.flex.html.RadioButton.prototype.set_selectedValue =
+org_apache_flex_html_RadioButton.prototype.set_selectedValue =
     function(value) {
   var buttons, groupName, i, n;
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/SimpleAlert.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/SimpleAlert.js b/frameworks/js/FlexJS/src/org/apache/flex/html/SimpleAlert.js
index 833769b..0937804 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/SimpleAlert.js
+++ b/frameworks/js/FlexJS/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/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/SimpleList.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/SimpleList.js b/frameworks/js/FlexJS/src/org/apache/flex/html/SimpleList.js
index 886565e..1498c65 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/SimpleList.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/SimpleList.js
@@ -12,24 +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);
 
 
 /**
@@ -37,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;
@@ -61,7 +60,7 @@ org.apache.flex.html.SimpleList.prototype.
 /**
  * @override
  */
-org.apache.flex.html.SimpleList.prototype.
+org_apache_flex_html_SimpleList.prototype.
     get_dataProvider = function() {
   return this.model.get_dataProvider();
 };
@@ -70,7 +69,7 @@ org.apache.flex.html.SimpleList.prototype.
 /**
  * @override
  */
-org.apache.flex.html.SimpleList.prototype.
+org_apache_flex_html_SimpleList.prototype.
     set_dataProvider = function(value) {
   var dp, i, n, opt;
 
@@ -95,7 +94,7 @@ org.apache.flex.html.SimpleList.prototype.
 /**
  * @override
  */
-org.apache.flex.html.SimpleList.prototype.
+org_apache_flex_html_SimpleList.prototype.
     get_selectedIndex = function() {
   return this.model.get_selectedIndex();
 };
@@ -104,7 +103,7 @@ org.apache.flex.html.SimpleList.prototype.
 /**
  * @override
  */
-org.apache.flex.html.SimpleList.prototype.
+org_apache_flex_html_SimpleList.prototype.
     set_selectedIndex = function(value) {
   this.model.set_selectedIndex(value);
 };
@@ -113,7 +112,7 @@ org.apache.flex.html.SimpleList.prototype.
 /**
  * @override
  */
-org.apache.flex.html.SimpleList.prototype.
+org_apache_flex_html_SimpleList.prototype.
     get_selectedItem = function() {
   return this.model.get_selectedItem();
 };
@@ -122,7 +121,7 @@ org.apache.flex.html.SimpleList.prototype.
 /**
  * @override
  */
-org.apache.flex.html.SimpleList.prototype.
+org_apache_flex_html_SimpleList.prototype.
     set_selectedItem = function(value) {
   this.model.set_selectedItem(value);
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/Slider.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/Slider.js b/frameworks/js/FlexJS/src/org/apache/flex/html/Slider.js
index 73bf8b8..ccc2456 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/Slider.js
+++ b/frameworks/js/FlexJS/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,29 +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;
@@ -78,7 +77,7 @@ org.apache.flex.html.Slider.prototype.createElement =
  * @expose
  * @return {number} The value getter.
  */
-org.apache.flex.html.Slider.prototype.get_value =
+org_apache_flex_html_Slider.prototype.get_value =
     function() {
   return this.model.get_value();
 };
@@ -89,7 +88,7 @@ org.apache.flex.html.Slider.prototype.get_value =
  * @param {Object} newValue The new value.
  * @return {void} The value setter.
  */
-org.apache.flex.html.Slider.prototype.set_value =
+org_apache_flex_html_Slider.prototype.set_value =
     function(newValue) {
   this.model.set_value(newValue);
   this.setThumbFromValue(this.model.get_value());
@@ -100,7 +99,7 @@ org.apache.flex.html.Slider.prototype.set_value =
  * @expose
  * @return {number} The minimum getter.
  */
-org.apache.flex.html.Slider.prototype.get_minimum =
+org_apache_flex_html_Slider.prototype.get_minimum =
     function() {
   return this.model.get_minimum();
 };
@@ -111,7 +110,7 @@ org.apache.flex.html.Slider.prototype.get_minimum =
  * @param {Object} value The new minimum value.
  * @return {void} The minimum setter.
  */
-org.apache.flex.html.Slider.prototype.set_minimum =
+org_apache_flex_html_Slider.prototype.set_minimum =
     function(value) {
   this.model.set_minimum(value);
 };
@@ -121,7 +120,7 @@ org.apache.flex.html.Slider.prototype.set_minimum =
  * @expose
  * @return {number} The maximum getter.
  */
-org.apache.flex.html.Slider.prototype.get_maximum =
+org_apache_flex_html_Slider.prototype.get_maximum =
     function() {
   return this.model.get_maximum();
 };
@@ -132,7 +131,7 @@ org.apache.flex.html.Slider.prototype.get_maximum =
  * @param {Object} value The new maximum value.
  * @return {void} The maximum setter.
  */
-org.apache.flex.html.Slider.prototype.set_maximum =
+org_apache_flex_html_Slider.prototype.set_maximum =
     function(value) {
   this.model.set_maximum(value);
 };
@@ -142,7 +141,7 @@ org.apache.flex.html.Slider.prototype.set_maximum =
  * @expose
  * @return {number} The snapInterval getter.
  */
-org.apache.flex.html.Slider.prototype.get_snapInterval =
+org_apache_flex_html_Slider.prototype.get_snapInterval =
     function() {
   return this.model.get_snapInterval();
 };
@@ -153,7 +152,7 @@ org.apache.flex.html.Slider.prototype.get_snapInterval =
  * @param {Object} value The new snapInterval value.
  * @return {void} The snapInterval setter.
  */
-org.apache.flex.html.Slider.prototype.set_snapInterval =
+org_apache_flex_html_Slider.prototype.set_snapInterval =
     function(value) {
   this.model.set_snapInterval(value);
 };
@@ -163,7 +162,7 @@ org.apache.flex.html.Slider.prototype.set_snapInterval =
  * @expose
  * @return {number} The stepSize getter.
  */
-org.apache.flex.html.Slider.prototype.get_stepSize =
+org_apache_flex_html_Slider.prototype.get_stepSize =
     function() {
   return this.model.get_stepSize();
 };
@@ -174,7 +173,7 @@ org.apache.flex.html.Slider.prototype.get_stepSize =
  * @param {Object} value The new stepSize value.
  * @return {void} The stepSize setter.
  */
-org.apache.flex.html.Slider.prototype.set_stepSize =
+org_apache_flex_html_Slider.prototype.set_stepSize =
     function(value) {
   this.model.set_stepSize(value);
 };
@@ -184,7 +183,7 @@ org.apache.flex.html.Slider.prototype.set_stepSize =
  * @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.get_snapInterval();
   var n = Math.round((value - this.get_minimum()) / si) *
@@ -205,7 +204,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.get_minimum();

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/Spacer.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/Spacer.js b/frameworks/js/FlexJS/src/org/apache/flex/html/Spacer.js
index 2024bd4..c05f1d8 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/Spacer.js
+++ b/frameworks/js/FlexJS/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/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/Spinner.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/Spinner.js b/frameworks/js/FlexJS/src/org/apache/flex/html/Spinner.js
index 116b120..61d532c 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/Spinner.js
+++ b/frameworks/js/FlexJS/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,31 +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.set_text('\u25B2');
   this.addElement(this.incrementButton);
 
-  this.decrementButton = new org.apache.flex.html.TextButton();
+  this.decrementButton = new org_apache_flex_html_TextButton();
   this.decrementButton.set_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;
@@ -79,7 +78,7 @@ org.apache.flex.html.Spinner.prototype.createElement =
  * @expose
  * @return {number} The current value.
  */
-org.apache.flex.html.Spinner.prototype.get_value =
+org_apache_flex_html_Spinner.prototype.get_value =
     function() {
   return this.value_;
 };
@@ -89,7 +88,7 @@ org.apache.flex.html.Spinner.prototype.get_value =
  * @expose
  * @param {number} value The new value.
  */
-org.apache.flex.html.Spinner.prototype.set_value =
+org_apache_flex_html_Spinner.prototype.set_value =
     function(value) {
   if (value != this.value_) {
     this.value_ = value;
@@ -102,7 +101,7 @@ org.apache.flex.html.Spinner.prototype.set_value =
  * @expose
  * @return {number} The minimum value.
  */
-org.apache.flex.html.Spinner.prototype.get_minimum = function() {
+org_apache_flex_html_Spinner.prototype.get_minimum = function() {
   return this.minimum_;
 };
 
@@ -111,7 +110,7 @@ org.apache.flex.html.Spinner.prototype.get_minimum = function() {
  * @expose
  * @param {number} value The new minimum value.
  */
-org.apache.flex.html.Spinner.prototype.set_minimum =
+org_apache_flex_html_Spinner.prototype.set_minimum =
     function(value) {
   if (value != this.minimum_) {
     this.minimum_ = value;
@@ -124,7 +123,7 @@ org.apache.flex.html.Spinner.prototype.set_minimum =
  * @expose
  * @return {number} The maximum value.
  */
-org.apache.flex.html.Spinner.prototype.get_maximum =
+org_apache_flex_html_Spinner.prototype.get_maximum =
     function() {
   return this.maximum_;
 };
@@ -134,7 +133,7 @@ org.apache.flex.html.Spinner.prototype.get_maximum =
  * @expose
  * @param {number} value The new maximum setter.
  */
-org.apache.flex.html.Spinner.prototype.set_maximum =
+org_apache_flex_html_Spinner.prototype.set_maximum =
     function(value) {
   if (value != this.maximum_) {
     this.maximum_ = value;
@@ -147,7 +146,7 @@ org.apache.flex.html.Spinner.prototype.set_maximum =
  * @expose
  * @return {number} The snapInterval.
  */
-org.apache.flex.html.Spinner.prototype.get_snapInterval =
+org_apache_flex_html_Spinner.prototype.get_snapInterval =
     function() {
   return this.snapInterval_;
 };
@@ -157,7 +156,7 @@ org.apache.flex.html.Spinner.prototype.get_snapInterval =
  * @expose
  * @param {number} value The new snapInterval value.
  */
-org.apache.flex.html.Spinner.prototype.set_snapInterval =
+org_apache_flex_html_Spinner.prototype.set_snapInterval =
     function(value) {
   if (value != this.snapInterval_) {
     this.snapInterval_ = value;
@@ -170,7 +169,7 @@ org.apache.flex.html.Spinner.prototype.set_snapInterval =
  * @expose
  * @return {number} The stepSize.
  */
-org.apache.flex.html.Spinner.prototype.get_stepSize =
+org_apache_flex_html_Spinner.prototype.get_stepSize =
     function() {
   return this.stepSize_;
 };
@@ -180,7 +179,7 @@ org.apache.flex.html.Spinner.prototype.get_stepSize =
  * @expose
  * @param {number} value The new stepSize value.
  */
-org.apache.flex.html.Spinner.prototype.set_stepSize =
+org_apache_flex_html_Spinner.prototype.set_stepSize =
     function(value) {
   if (value != this.stepSize_) {
     this.stepSize_ = value;
@@ -194,7 +193,7 @@ org.apache.flex.html.Spinner.prototype.set_stepSize =
  * @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/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/TextArea.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/TextArea.js b/frameworks/js/FlexJS/src/org/apache/flex/html/TextArea.js
index 979ffc7..aaba67e 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/TextArea.js
+++ b/frameworks/js/FlexJS/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');
@@ -57,7 +57,7 @@ org.apache.flex.html.TextArea.prototype.createElement =
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.html.TextArea.prototype.get_text = function() {
+org_apache_flex_html_TextArea.prototype.get_text = function() {
   return this.element.value;
 };
 
@@ -66,7 +66,7 @@ org.apache.flex.html.TextArea.prototype.get_text = function() {
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.html.TextArea.prototype.set_text =
+org_apache_flex_html_TextArea.prototype.set_text =
     function(value) {
   this.element.value = value;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/TextButton.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/TextButton.js b/frameworks/js/FlexJS/src/org/apache/flex/html/TextButton.js
index 45f12ed..1442327 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/TextButton.js
+++ b/frameworks/js/FlexJS/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,16 +34,16 @@ 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'}] };
 
 
 /**
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.html.TextButton.prototype.get_text = function() {
+org_apache_flex_html_TextButton.prototype.get_text = function() {
   return this.element.innerHTML;
 };
 
@@ -52,7 +52,7 @@ org.apache.flex.html.TextButton.prototype.get_text = function() {
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.html.TextButton.prototype.set_text =
+org_apache_flex_html_TextButton.prototype.set_text =
     function(value) {
   this.element.innerHTML = value;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/TextInput.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/TextInput.js b/frameworks/js/FlexJS/src/org/apache/flex/html/TextInput.js
index 872e176..b6fb306 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/TextInput.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/TextInput.js
@@ -12,21 +12,21 @@
  * 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_core_UIBase');
 
 
 
 /**
  * @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);
 
 
 /**
@@ -34,15 +34,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');
 
@@ -61,7 +61,7 @@ org.apache.flex.html.TextInput.prototype.createElement = function() {
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.html.TextInput.prototype.get_text = function() {
+org_apache_flex_html_TextInput.prototype.get_text = function() {
   return this.element.value;
 };
 
@@ -70,9 +70,9 @@ org.apache.flex.html.TextInput.prototype.get_text = function() {
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.html.TextInput.prototype.set_text = function(value) {
+org_apache_flex_html_TextInput.prototype.set_text = function(value) {
   this.element.value = value;
-  this.dispatchEvent(new org.apache.flex.events.Event('textChange'));
+  this.dispatchEvent(new org_apache_flex_events_Event('textChange'));
 };
 
 
@@ -80,7 +80,7 @@ org.apache.flex.html.TextInput.prototype.set_text = function(value) {
  * @expose
  * @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();
 };*/
 
@@ -89,9 +89,9 @@ org.apache.flex.html.TextInput.prototype.set_text = function(value) {
  * @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/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/TitleBar.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/TitleBar.js b/frameworks/js/FlexJS/src/org/apache/flex/html/TitleBar.js
index 0f4a405..595314a 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/TitleBar.js
+++ b/frameworks/js/FlexJS/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');
@@ -64,7 +64,7 @@ org.apache.flex.html.TitleBar.prototype.createElement =
  * @expose
  * @return {string} The title getter.
  */
-org.apache.flex.html.TitleBar.prototype.get_title =
+org_apache_flex_html_TitleBar.prototype.get_title =
     function() {
   return this.model.get_title();
 };
@@ -74,7 +74,7 @@ org.apache.flex.html.TitleBar.prototype.get_title =
  * @expose
  * @param {string} value The title setter.
  */
-org.apache.flex.html.TitleBar.prototype.set_title =
+org_apache_flex_html_TitleBar.prototype.set_title =
     function(value) {
   this.model.set_title(value);
 };
@@ -84,7 +84,7 @@ org.apache.flex.html.TitleBar.prototype.set_title =
  * @expose
  * @return {string} The showCloseButton getter.
  */
-org.apache.flex.html.TitleBar.prototype.get_showCloseButton =
+org_apache_flex_html_TitleBar.prototype.get_showCloseButton =
     function() {
   return this.model.get_showCloseButton();
 };
@@ -94,7 +94,7 @@ org.apache.flex.html.TitleBar.prototype.get_showCloseButton =
  * @expose
  * @param {string} value The title setter.
  */
-org.apache.flex.html.TitleBar.prototype.set_showCloseButton =
+org_apache_flex_html_TitleBar.prototype.set_showCloseButton =
     function(value) {
   this.model.set_showCloseButton(value);
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/ToggleTextButton.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/ToggleTextButton.js b/frameworks/js/FlexJS/src/org/apache/flex/html/ToggleTextButton.js
index 9639afe..4aace7a 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/ToggleTextButton.js
+++ b/frameworks/js/FlexJS/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,16 +42,16 @@ 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'}] };
 
 
 /**
  * @expose
  * @return {string} The text getter.
  */
-org.apache.flex.html.ToggleTextButton.prototype.get_text = function() {
+org_apache_flex_html_ToggleTextButton.prototype.get_text = function() {
   return this.element.innerHTML;
 };
 
@@ -60,7 +60,7 @@ org.apache.flex.html.ToggleTextButton.prototype.get_text = function() {
  * @expose
  * @param {string} value The text setter.
  */
-org.apache.flex.html.ToggleTextButton.prototype.set_text =
+org_apache_flex_html_ToggleTextButton.prototype.set_text =
     function(value) {
   this.element.innerHTML = value;
 };
@@ -70,7 +70,7 @@ org.apache.flex.html.ToggleTextButton.prototype.set_text =
  * @expose
  * @return {boolean} The selected getter.
  */
-org.apache.flex.html.ToggleTextButton.prototype.get_selected =
+org_apache_flex_html_ToggleTextButton.prototype.get_selected =
     function() {
   return this.selected_;
 };
@@ -80,7 +80,7 @@ org.apache.flex.html.ToggleTextButton.prototype.get_selected =
  * @expose
  * @param {boolean} value The selected setter.
  */
-org.apache.flex.html.ToggleTextButton.prototype.set_selected =
+org_apache_flex_html_ToggleTextButton.prototype.set_selected =
     function(value) {
   if (this.selected_ != value) {
     this.selected_ = value;
@@ -102,5 +102,5 @@ org.apache.flex.html.ToggleTextButton.prototype.set_selected =
 /**
  * @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/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/ToolTip.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/ToolTip.js b/frameworks/js/FlexJS/src/org/apache/flex/html/ToolTip.js
index b3f5b07..ab25eed 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/ToolTip.js
+++ b/frameworks/js/FlexJS/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/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/VContainer.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/VContainer.js b/frameworks/js/FlexJS/src/org/apache/flex/html/VContainer.js
index e1198eb..d7c608a 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/VContainer.js
+++ b/frameworks/js/FlexJS/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/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/accessories/NumericOnlyTextInputBead.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/accessories/NumericOnlyTextInputBead.js b/frameworks/js/FlexJS/src/org/apache/flex/html/accessories/NumericOnlyTextInputBead.js
index 9d5177d..f602571 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/accessories/NumericOnlyTextInputBead.js
+++ b/frameworks/js/FlexJS/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,16 +35,16 @@ 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' }] };
 
 
 /**
  * @expose
  * @param {Object} value The new host.
  */
-org.apache.flex.html.accessories.NumericOnlyTextInputBead.
+org_apache_flex_html_accessories_NumericOnlyTextInputBead.
     prototype.set_strand = function(value) {
   if (this.strand_ !== value) {
     this.strand_ = value;
@@ -57,7 +57,7 @@ org.apache.flex.html.accessories.NumericOnlyTextInputBead.
  * @expose
  * @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/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/accessories/PasswordInputBead.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/accessories/PasswordInputBead.js b/frameworks/js/FlexJS/src/org/apache/flex/html/accessories/PasswordInputBead.js
index b142764..84ac89b 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/accessories/PasswordInputBead.js
+++ b/frameworks/js/FlexJS/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,16 +35,16 @@ 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' }] };
 
 
 /**
  * @expose
  * @param {Object} value The new host.
  */
-org.apache.flex.html.accessories.PasswordInputBead.
+org_apache_flex_html_accessories_PasswordInputBead.
     prototype.set_strand = function(value) {
   if (this.strand_ !== value) {
     this.strand_ = value;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/accessories/TextPromptBead.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/accessories/TextPromptBead.js b/frameworks/js/FlexJS/src/org/apache/flex/html/accessories/TextPromptBead.js
index 182c5d3..3011b66 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/accessories/TextPromptBead.js
+++ b/frameworks/js/FlexJS/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,16 +34,16 @@ 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' }] };
 
 
 /**
  * @expose
  * @return {string} value The new prompt.
  */
-org.apache.flex.html.accessories.TextPromptBead.prototype.
+org_apache_flex_html_accessories_TextPromptBead.prototype.
     get_prompt = function() {
   return this.prompt;
 };
@@ -53,7 +53,7 @@ org.apache.flex.html.accessories.TextPromptBead.prototype.
  * @expose
  * @param {string} value The new prompt.
  */
-org.apache.flex.html.accessories.TextPromptBead.prototype.
+org_apache_flex_html_accessories_TextPromptBead.prototype.
     set_prompt = function(value) {
   this.prompt = value;
 };
@@ -63,7 +63,7 @@ org.apache.flex.html.accessories.TextPromptBead.prototype.
  * @expose
  * @param {Object} value The new host.
  */
-org.apache.flex.html.accessories.TextPromptBead.prototype.
+org_apache_flex_html_accessories_TextPromptBead.prototype.
     set_strand = function(value) {
   if (this.strand_ !== value) {
     this.strand_ = value;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ButtonBarView.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ButtonBarView.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ButtonBarView.js
index 249cc9d..5555e60 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ButtonBarView.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ButtonBarView.js
@@ -12,25 +12,25 @@
  * 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_html_beads_ListView');
 
 
 
 /**
  * @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);
 
 
 /**
@@ -38,18 +38,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' }] };
 
 
 /**
  * @expose
  * @param {Object} value The new host.
  */
-org.apache.flex.html.beads.ButtonBarView.prototype.set_strand =
+org_apache_flex_html_beads_ButtonBarView.prototype.set_strand =
     function(value) {
 
-  org.apache.flex.html.beads.ButtonBarView.base(this, 'set_strand', value);
+  org_apache_flex_html_beads_ButtonBarView.base(this, 'set_strand', value);
   this.strand_ = value;
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ContainerView.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ContainerView.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ContainerView.js
index 6e9b1da..6d76e9b 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ContainerView.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ContainerView.js
@@ -12,26 +12,26 @@
  * 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.ILayoutParent');
+goog.require('org_apache_flex_core_BeadViewBase');
+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);
 
 
 /**
@@ -39,10 +39,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]
     };
 
 
@@ -50,7 +50,7 @@ org.apache.flex.html.beads.ContainerView.prototype.FLEXJS_CLASS_INFO =
  * @expose
  * @return {Object} value The content view.
  */
-org.apache.flex.html.beads.ContainerView.prototype.get_contentView =
+org_apache_flex_html_beads_ContainerView.prototype.get_contentView =
     function() {
 
   return this._strand;
@@ -61,7 +61,7 @@ org.apache.flex.html.beads.ContainerView.prototype.get_contentView =
  * @expose
  * @return {Object} value The resizeable view.
  */
-org.apache.flex.html.beads.ContainerView.prototype.get_resizableView =
+org_apache_flex_html_beads_ContainerView.prototype.get_resizableView =
 function() {
 
   return this._strand;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/DataItemRendererFactoryForArrayData.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/DataItemRendererFactoryForArrayData.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/DataItemRendererFactoryForArrayData.js
index aedb250..0994346 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/DataItemRendererFactoryForArrayData.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/DataItemRendererFactoryForArrayData.js
@@ -12,22 +12,22 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.DataItemRendererFactoryForArrayData');
+goog.provide('org_apache_flex_html_beads_DataItemRendererFactoryForArrayData');
 
-goog.require('org.apache.flex.core.IDataProviderItemRendererMapper');
-goog.require('org.apache.flex.core.IListPresentationModel');
-goog.require('org.apache.flex.events.EventDispatcher');
-goog.require('org.apache.flex.html.beads.ListView');
-goog.require('org.apache.flex.html.beads.models.ArraySelectionModel');
-goog.require('org.apache.flex.html.supportClasses.ButtonBarButtonItemRenderer');
+goog.require('org_apache_flex_core_IDataProviderItemRendererMapper');
+goog.require('org_apache_flex_core_IListPresentationModel');
+goog.require('org_apache_flex_events_EventDispatcher');
+goog.require('org_apache_flex_html_beads_ListView');
+goog.require('org_apache_flex_html_beads_models_ArraySelectionModel');
+goog.require('org_apache_flex_html_supportClasses_ButtonBarButtonItemRenderer');
 
 
 
 /**
  * @constructor
- * @implements {org.apache.flex.core.IDataProviderItemRendererMapper}
+ * @implements {org_apache_flex_core_IDataProviderItemRendererMapper}
  */
-org.apache.flex.html.beads.DataItemRendererFactoryForArrayData =
+org_apache_flex_html_beads_DataItemRendererFactoryForArrayData =
     function() {
 };
 
@@ -35,7 +35,7 @@ org.apache.flex.html.beads.DataItemRendererFactoryForArrayData =
 /**
  * @expose
  */
-org.apache.flex.html.beads.DataItemRendererFactoryForArrayData.prototype.itemRendererFactory = null;
+org_apache_flex_html_beads_DataItemRendererFactoryForArrayData.prototype.itemRendererFactory = null;
 
 
 /**
@@ -43,18 +43,18 @@ org.apache.flex.html.beads.DataItemRendererFactoryForArrayData.prototype.itemRen
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.DataItemRendererFactoryForArrayData.
+org_apache_flex_html_beads_DataItemRendererFactoryForArrayData.
     prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'DataItemRendererFactoryForArrayData',
-                qName: 'org.apache.flex.html.beads.DataItemRendererFactoryForArrayData' }],
-      interfaces: [org.apache.flex.core.IDataProviderItemRendererMapper] };
+                qName: 'org_apache_flex_html_beads_DataItemRendererFactoryForArrayData' }],
+      interfaces: [org_apache_flex_core_IDataProviderItemRendererMapper] };
 
 
 /**
  * @private
  * @type {Object}
  */
-org.apache.flex.html.beads.DataItemRendererFactoryForArrayData.
+org_apache_flex_html_beads_DataItemRendererFactoryForArrayData.
     prototype.itemRendererClass_ = null;
 
 
@@ -62,25 +62,25 @@ org.apache.flex.html.beads.DataItemRendererFactoryForArrayData.
  * @expose
  * @param {Object} value The component strand.
  */
-org.apache.flex.html.beads.DataItemRendererFactoryForArrayData.
+org_apache_flex_html_beads_DataItemRendererFactoryForArrayData.
     prototype.set_strand = function(value) {
   this.strand_ = value;
 
   this.model = value.getBeadByType(
-      org.apache.flex.html.beads.models.ArraySelectionModel);
+      org_apache_flex_html_beads_models_ArraySelectionModel);
 
   this.listView = value.getBeadByType(
-      org.apache.flex.html.beads.ListView);
+      org_apache_flex_html_beads_ListView);
   this.dataGroup = this.listView.get_dataGroup();
 
   this.model.addEventListener('dataProviderChanged',
       goog.bind(this.dataProviderChangedHandler, this));
 
-  if (org.apache.flex.core.ValuesManager.valuesImpl.getValue && !this.itemRendererFactory_) {
+  if (org_apache_flex_core_ValuesManager.valuesImpl.getValue && !this.itemRendererFactory_) {
     /**
      * @type {Function}
      */
-    var c = /** @type {Function} */ (org.apache.flex.core.ValuesManager.valuesImpl.getValue(this.strand_,
+    var c = /** @type {Function} */ (org_apache_flex_core_ValuesManager.valuesImpl.getValue(this.strand_,
             'iItemRendererClassFactory'));
     this.itemRendererFactory_ = new c();
     this.strand_.addBead(this.itemRendererFactory_);
@@ -94,10 +94,10 @@ org.apache.flex.html.beads.DataItemRendererFactoryForArrayData.
  * @expose
  * @return {Object} The itemRenderer.
  */
-org.apache.flex.html.beads.DataItemRendererFactoryForArrayData.
+org_apache_flex_html_beads_DataItemRendererFactoryForArrayData.
     prototype.get_itemRendererClass = function() {
-  if (org.apache.flex.core.ValuesManager.valuesImpl.getValue && !this.itemRendererClass_) {
-    var c = org.apache.flex.core.ValuesManager.valuesImpl.getValue(this.strand_, 'iItemRenderer');
+  if (org_apache_flex_core_ValuesManager.valuesImpl.getValue && !this.itemRendererClass_) {
+    var c = org_apache_flex_core_ValuesManager.valuesImpl.getValue(this.strand_, 'iItemRenderer');
     if (c) {
       this.itemRendererClass_ = c;
     }
@@ -110,7 +110,7 @@ org.apache.flex.html.beads.DataItemRendererFactoryForArrayData.
  * @expose
  * @param {Object} value class to use for the item renderer.
  */
-org.apache.flex.html.beads.DataItemRendererFactoryForArrayData.
+org_apache_flex_html_beads_DataItemRendererFactoryForArrayData.
     prototype.set_itemRendererClass = function(value) {
   this.itemRendererClass_ = value;
 };
@@ -120,13 +120,13 @@ org.apache.flex.html.beads.DataItemRendererFactoryForArrayData.
  * @expose
  * @param {Object} event The event that triggered the dataProvider change.
  */
-org.apache.flex.html.beads.DataItemRendererFactoryForArrayData.
+org_apache_flex_html_beads_DataItemRendererFactoryForArrayData.
     prototype.dataProviderChangedHandler = function(event) {
   var dp, i, n, opt;
 
   this.dataGroup.removeAllElements();
 
-  var presModel = this.strand_.getBeadByType(org.apache.flex.core.IListPresentationModel);
+  var presModel = this.strand_.getBeadByType(org_apache_flex_core_IListPresentationModel);
 
   dp = this.model.get_dataProvider();
   n = dp.length;
@@ -138,6 +138,6 @@ org.apache.flex.html.beads.DataItemRendererFactoryForArrayData.
     if (presModel) ir.set_height(presModel.get_rowHeight());
   }
 
-  var newEvent = new org.apache.flex.events.Event('itemsCreated');
+  var newEvent = new org_apache_flex_events_Event('itemsCreated');
   this.strand_.dispatchEvent(newEvent);
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/IListView.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/IListView.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/IListView.js
index b1c8458..a4d0bf5 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/IListView.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/IListView.js
@@ -17,9 +17,9 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.html.beads.IListView');
+goog.provide('org_apache_flex_html_beads_IListView');
 
-goog.require('org.apache.flex.core.IBeadView');
+goog.require('org_apache_flex_core_IBeadView');
 
 
 
@@ -28,7 +28,7 @@ goog.require('org.apache.flex.core.IBeadView');
  *
  * @interface
  */
-org.apache.flex.html.beads.IListView = function() {
+org_apache_flex_html_beads_IListView = function() {
 };
 
 
@@ -37,7 +37,7 @@ org.apache.flex.html.beads.IListView = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.IListView.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_html_beads_IListView.prototype.FLEXJS_CLASS_INFO =
 { names: [{ name: 'IListView',
-            qName: 'org.apache.flex.html.beads.IListView'}],
-  interfaces: [org.apache.flex.core.IBeadView] };
+            qName: 'org_apache_flex_html_beads_IListView'}],
+  interfaces: [org_apache_flex_core_IBeadView] };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ImageButtonView.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ImageButtonView.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ImageButtonView.js
index 838425a..3f17c84 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ImageButtonView.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ImageButtonView.js
@@ -12,14 +12,14 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.ImageButtonView');
+goog.provide('org_apache_flex_html_beads_ImageButtonView');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.html.beads.ImageButtonView = function() {
+org_apache_flex_html_beads_ImageButtonView = function() {
 };
 
 
@@ -28,17 +28,17 @@ org.apache.flex.html.beads.ImageButtonView = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.ImageButtonView
+org_apache_flex_html_beads_ImageButtonView
   .prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ImageButtonView',
-                qName: 'org.apache.flex.html.beads.ImageButtonView'}] };
+                qName: 'org_apache_flex_html_beads_ImageButtonView'}] };
 
 
 /**
  * @expose
  * @param {Object} value The new host.
  */
-org.apache.flex.html.beads.ImageButtonView.prototype.set_strand =
+org_apache_flex_html_beads_ImageButtonView.prototype.set_strand =
     function(value) {
 
   this.strand_ = value;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ImageView.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ImageView.js b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ImageView.js
index c211975..94b6846 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ImageView.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/html/beads/ImageView.js
@@ -12,17 +12,17 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.html.beads.ImageView');
+goog.provide('org_apache_flex_html_beads_ImageView');
 
 
-goog.require('org.apache.flex.html.beads.models.ImageModel');
+goog.require('org_apache_flex_html_beads_models_ImageModel');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.html.beads.ImageView = function() {
+org_apache_flex_html_beads_ImageView = function() {
 };
 
 
@@ -31,23 +31,23 @@ org.apache.flex.html.beads.ImageView = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.html.beads.ImageView
+org_apache_flex_html_beads_ImageView
   .prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ImageView',
-                qName: 'org.apache.flex.html.beads.ImageView'}] };
+                qName: 'org_apache_flex_html_beads_ImageView'}] };
 
 
 /**
  * @expose
  * @param {Object} value The new host.
  */
-org.apache.flex.html.beads.ImageView.prototype.set_strand =
+org_apache_flex_html_beads_ImageView.prototype.set_strand =
     function(value) {
 
   this.strand_ = value;
 
   this.model = value.getBeadByType(
-      org.apache.flex.html.beads.models.ImageModel);
+      org_apache_flex_html_beads_models_ImageModel);
   this.model.addEventListener('sourceChanged',
       goog.bind(this.sourceChangeHandler, this));
 };
@@ -57,7 +57,7 @@ org.apache.flex.html.beads.ImageView.prototype.set_strand =
  * @expose
  * @param {Object} event The event triggered by the source change.
  */
-org.apache.flex.html.beads.ImageView.prototype.
+org_apache_flex_html_beads_ImageView.prototype.
     sourceChangeHandler = function(event) {
   this.strand_.element.src = this.model.get_source();
 };


[10/12] git commit: [flex-asjs] [refs/heads/develop] - switching from org.apache.flex to org_apache_flex so GCC doesn't complain

Posted by ah...@apache.org.
switching from org.apache.flex to org_apache_flex so GCC doesn't complain


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/49f207c4
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/49f207c4
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/49f207c4

Branch: refs/heads/develop
Commit: 49f207c46eedc18f2517a8520513f0ed4f4a9a71
Parents: e1f17c9
Author: Alex Harui <ah...@apache.org>
Authored: Wed Jan 28 09:09:00 2015 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Wed Jan 28 09:09:00 2015 -0800

----------------------------------------------------------------------
 .../js/FlexJS/src/flash/display/Sprite.js       |  10 +-
 .../js/FlexJS/src/mx/core/ClassFactory.js       |  18 +-
 frameworks/js/FlexJS/src/mx/core/IFactory.js    |  10 +-
 frameworks/js/FlexJS/src/mx/states/AddItems.js  |  34 +--
 .../js/FlexJS/src/mx/states/SetEventHandler.js  |  26 +--
 .../js/FlexJS/src/mx/states/SetProperty.js      |  28 +--
 frameworks/js/FlexJS/src/mx/states/State.js     |  12 +-
 .../src/org/apache/cordova/Application.js       |  22 +-
 .../js/FlexJS/src/org/apache/cordova/Weinre.js  |  14 +-
 .../src/org/apache/cordova/camera/Camera.js     |  44 ++--
 .../src/org/apache/flex/binding/BindingBase.js  |  26 +--
 .../src/org/apache/flex/binding/ChainBinding.js |  42 ++--
 .../org/apache/flex/binding/ConstantBinding.js  |  22 +-
 .../org/apache/flex/binding/GenericBinding.js   |  36 ++--
 .../org/apache/flex/binding/PropertyWatcher.js  |  36 ++--
 .../org/apache/flex/binding/SimpleBinding.js    |  32 +--
 .../src/org/apache/flex/binding/WatcherBase.js  |  46 ++--
 .../org/apache/flex/charts/core/ChartBase.js    |  38 ++--
 .../org/apache/flex/charts/core/IAxisBead.js    |  28 +--
 .../org/apache/flex/charts/core/IAxisGroup.js   |  12 +-
 .../flex/charts/core/ICartesianChartLayout.js   |  10 +-
 .../src/org/apache/flex/charts/core/IChart.js   |  14 +-
 .../org/apache/flex/charts/core/IChartAxis.js   |  10 +-
 .../apache/flex/charts/core/IChartDataGroup.js  |  20 +-
 .../flex/charts/core/IChartItemRenderer.js      |  36 ++--
 .../org/apache/flex/charts/core/IChartSeries.js |  32 +--
 .../flex/charts/core/IHorizontalAxisBead.js     |  24 +--
 .../flex/charts/core/IVerticalAxisBead.js       |  24 +--
 .../charts/supportClasses/ChartAxisGroup.js     |  56 ++---
 .../charts/supportClasses/ChartDataGroup.js     |  28 +--
 .../src/org/apache/flex/core/Application.js     |  52 ++---
 .../src/org/apache/flex/core/BeadViewBase.js    |  30 +--
 .../src/org/apache/flex/core/CallLaterBead.js   |  14 +-
 .../src/org/apache/flex/core/ContainerBase.js   |  62 +++---
 .../src/org/apache/flex/core/DataBindingBase.js |  14 +-
 .../src/org/apache/flex/core/FilledRectangle.js |  28 +--
 .../src/org/apache/flex/core/FormatBase.js      |  48 ++---
 .../org/apache/flex/core/HTMLElementWrapper.js  |  44 ++--
 .../js/FlexJS/src/org/apache/flex/core/IBead.js |  12 +-
 .../src/org/apache/flex/core/IBeadController.js |  14 +-
 .../src/org/apache/flex/core/IBeadLayout.js     |  14 +-
 .../src/org/apache/flex/core/IBeadModel.js      |  20 +-
 .../src/org/apache/flex/core/IBeadView.js       |   8 +-
 .../FlexJS/src/org/apache/flex/core/IChild.js   |  12 +-
 .../src/org/apache/flex/core/IContainer.js      |  20 +-
 .../src/org/apache/flex/core/IContentView.js    |  30 +--
 .../src/org/apache/flex/core/IDataGridModel.js  |  14 +-
 .../core/IDataProviderItemRendererMapper.js     |  18 +-
 .../src/org/apache/flex/core/IDocument.js       |  10 +-
 .../src/org/apache/flex/core/IEffectTimer.js    |  16 +-
 .../src/org/apache/flex/core/IFormatBead.js     |  24 +--
 .../src/org/apache/flex/core/IItemRenderer.js   |   8 +-
 .../flex/core/IItemRendererClassFactory.js      |   8 +-
 .../apache/flex/core/IItemRendererFactory.js    |  10 +-
 .../org/apache/flex/core/IItemRendererParent.js |  10 +-
 .../src/org/apache/flex/core/ILayoutChild.js    |  12 +-
 .../src/org/apache/flex/core/ILayoutParent.js   |  18 +-
 .../apache/flex/core/IListPresentationModel.js  |  22 +-
 .../src/org/apache/flex/core/IMXMLDocument.js   |   8 +-
 .../org/apache/flex/core/IMeasurementBead.js    |   8 +-
 .../FlexJS/src/org/apache/flex/core/IParent.js  |  18 +-
 .../src/org/apache/flex/core/IParentIUIBase.js  |  18 +-
 .../src/org/apache/flex/core/IPopUpHost.js      |  16 +-
 .../apache/flex/core/ISelectableItemRenderer.js |  38 ++--
 .../src/org/apache/flex/core/ISelectionModel.js |  30 +--
 .../src/org/apache/flex/core/IStatesImpl.js     |  20 +-
 .../FlexJS/src/org/apache/flex/core/IStrand.js  |  22 +-
 .../org/apache/flex/core/IStyleableObject.js    |  16 +-
 .../src/org/apache/flex/core/ITextModel.js      |  22 +-
 .../FlexJS/src/org/apache/flex/core/IUIBase.js  |   8 +-
 .../src/org/apache/flex/core/IValuesImpl.js     |  14 +-
 .../flex/core/ItemRendererClassFactory.js       |  30 +--
 .../FlexJS/src/org/apache/flex/core/ListBase.js |  36 ++--
 .../org/apache/flex/core/SimpleCSSValuesImpl.js |  40 ++--
 .../org/apache/flex/core/SimpleStatesImpl.js    |  84 ++++----
 .../org/apache/flex/core/SimpleValuesImpl.js    |   8 +-
 .../FlexJS/src/org/apache/flex/core/UIBase.js   | 212 +++++++++----------
 .../src/org/apache/flex/core/ValuesManager.js   |  30 +--
 .../FlexJS/src/org/apache/flex/core/ViewBase.js |  84 ++++----
 .../org/apache/flex/core/ViewBaseDataBinding.js |  44 ++--
 .../src/org/apache/flex/core/graphics/Circle.js |  28 +--
 .../org/apache/flex/core/graphics/Ellipse.js    |  24 +--
 .../apache/flex/core/graphics/GradientBase.js   |  42 ++--
 .../apache/flex/core/graphics/GradientEntry.js  |  36 ++--
 .../apache/flex/core/graphics/GraphicShape.js   |  52 ++---
 .../flex/core/graphics/GraphicsContainer.js     |  50 ++---
 .../src/org/apache/flex/core/graphics/IFill.js  |  12 +-
 .../org/apache/flex/core/graphics/IStroke.js    |  12 +-
 .../src/org/apache/flex/core/graphics/Line.js   |  22 +-
 .../apache/flex/core/graphics/LinearGradient.js |  32 +--
 .../src/org/apache/flex/core/graphics/Path.js   |  26 +--
 .../src/org/apache/flex/core/graphics/Rect.js   |  24 +--
 .../org/apache/flex/core/graphics/SolidColor.js |  26 +--
 .../flex/core/graphics/SolidColorStroke.js      |  28 +--
 .../src/org/apache/flex/core/graphics/Text.js   |  24 +--
 .../src/org/apache/flex/createjs/Application.js |  38 ++--
 .../src/org/apache/flex/createjs/CheckBox.js    |  32 +--
 .../src/org/apache/flex/createjs/Label.js       |  22 +-
 .../src/org/apache/flex/createjs/TextButton.js  |  24 +--
 .../src/org/apache/flex/createjs/core/UIBase.js |  38 ++--
 .../org/apache/flex/createjs/core/ViewBase.js   |  32 +--
 .../org/apache/flex/effects/PlatformWiper.js    |  16 +-
 .../src/org/apache/flex/events/CustomEvent.js   |  16 +-
 .../src/org/apache/flex/events/DragEvent.js     |  40 ++--
 .../FlexJS/src/org/apache/flex/events/Event.js  |  24 +--
 .../org/apache/flex/events/EventDispatcher.js   |  28 +--
 .../org/apache/flex/events/IEventDispatcher.js  |   8 +-
 .../src/org/apache/flex/events/MouseEvent.js    |  62 +++---
 .../org/apache/flex/events/ValueChangeEvent.js  |  32 +--
 .../src/org/apache/flex/events/ValueEvent.js    |  18 +-
 .../org/apache/flex/events/utils/MouseUtils.js  |  12 +-
 .../js/FlexJS/src/org/apache/flex/geom/Point.js |  12 +-
 .../src/org/apache/flex/geom/Rectangle.js       |  16 +-
 .../js/FlexJS/src/org/apache/flex/html/Alert.js |  78 +++----
 .../FlexJS/src/org/apache/flex/html/Button.js   |  24 +--
 .../src/org/apache/flex/html/ButtonBar.js       |  42 ++--
 .../FlexJS/src/org/apache/flex/html/CheckBox.js |  28 +--
 .../src/org/apache/flex/html/CloseButton.js     |  22 +-
 .../FlexJS/src/org/apache/flex/html/ComboBox.js |  32 +--
 .../src/org/apache/flex/html/Container.js       |  36 ++--
 .../src/org/apache/flex/html/ControlBar.js      |  20 +-
 .../src/org/apache/flex/html/DropDownList.js    |  31 ++-
 .../src/org/apache/flex/html/HContainer.js      |  24 +--
 .../js/FlexJS/src/org/apache/flex/html/HRule.js |  18 +-
 .../js/FlexJS/src/org/apache/flex/html/Image.js |  32 +--
 .../org/apache/flex/html/ImageAndTextButton.js  |  34 +--
 .../js/FlexJS/src/org/apache/flex/html/Label.js |  26 +--
 .../js/FlexJS/src/org/apache/flex/html/List.js  |  86 ++++----
 .../src/org/apache/flex/html/MultilineLabel.js  |  26 +--
 .../src/org/apache/flex/html/NumericStepper.js  |  56 ++---
 .../js/FlexJS/src/org/apache/flex/html/Panel.js |  52 ++---
 .../src/org/apache/flex/html/RadioButton.js     |  52 ++---
 .../src/org/apache/flex/html/SimpleAlert.js     |  20 +-
 .../src/org/apache/flex/html/SimpleList.js      |  37 ++--
 .../FlexJS/src/org/apache/flex/html/Slider.js   |  61 +++---
 .../FlexJS/src/org/apache/flex/html/Spacer.js   |  18 +-
 .../FlexJS/src/org/apache/flex/html/Spinner.js  |  53 +++--
 .../FlexJS/src/org/apache/flex/html/TextArea.js |  24 +--
 .../src/org/apache/flex/html/TextButton.js      |  22 +-
 .../src/org/apache/flex/html/TextInput.js       |  34 +--
 .../FlexJS/src/org/apache/flex/html/TitleBar.js |  34 +--
 .../org/apache/flex/html/ToggleTextButton.js    |  28 +--
 .../FlexJS/src/org/apache/flex/html/ToolTip.js  |  18 +-
 .../src/org/apache/flex/html/VContainer.js      |  24 +--
 .../accessories/NumericOnlyTextInputBead.js     |  12 +-
 .../flex/html/accessories/PasswordInputBead.js  |  10 +-
 .../flex/html/accessories/TextPromptBead.js     |  14 +-
 .../org/apache/flex/html/beads/ButtonBarView.js |  22 +-
 .../org/apache/flex/html/beads/ContainerView.js |  26 +--
 .../DataItemRendererFactoryForArrayData.js      |  52 ++---
 .../src/org/apache/flex/html/beads/IListView.js |  12 +-
 .../apache/flex/html/beads/ImageButtonView.js   |  10 +-
 .../src/org/apache/flex/html/beads/ImageView.js |  16 +-
 .../src/org/apache/flex/html/beads/ListView.js  |  60 +++---
 .../src/org/apache/flex/html/beads/PanelView.js |  28 +--
 .../flex/html/beads/ScrollingContainerView.js   |  30 +--
 .../apache/flex/html/beads/SliderThumbView.js   |  10 +-
 .../apache/flex/html/beads/SliderTrackView.js   |  10 +-
 .../flex/html/beads/TextInputWithBorderView.js  |  10 +-
 .../TextItemRendererFactoryForArrayData.js      |  41 ++--
 .../controllers/ItemRendererMouseController.js  |  31 ++-
 .../ListSingleSelectionMouseController.js       |  31 ++-
 .../beads/controllers/SliderMouseController.js  |  35 ++-
 .../beads/controllers/SpinnerMouseController.js |  17 +-
 .../flex/html/beads/layouts/ButtonBarLayout.js  |  28 +--
 .../html/beads/layouts/NonVirtualBasicLayout.js |  42 ++--
 .../layouts/NonVirtualBasicScrollingLayout.js   |  32 +--
 .../beads/layouts/NonVirtualHorizontalLayout.js |  26 +--
 .../beads/layouts/NonVirtualVerticalLayout.js   |  26 +--
 .../NonVirtualVerticalScrollingLayout.js        |  19 +-
 .../flex/html/beads/layouts/TileLayout.js       |  32 +--
 .../html/beads/models/ArraySelectionModel.js    |  42 ++--
 .../flex/html/beads/models/DataGridModel.js     |  32 +--
 .../apache/flex/html/beads/models/ImageModel.js |  24 +--
 .../html/beads/models/ListPresentationModel.js  |  32 +--
 .../apache/flex/html/beads/models/PanelModel.js |  34 +--
 .../apache/flex/html/beads/models/RangeModel.js |  42 ++--
 .../apache/flex/html/beads/models/TextModel.js  |  30 +--
 .../flex/html/beads/models/TitleBarModel.js     |  38 ++--
 .../ButtonBarButtonItemRenderer.js              |  34 ++-
 .../flex/html/supportClasses/DataGridColumn.js  |  26 +--
 .../html/supportClasses/DataItemRenderer.js     |  45 ++--
 .../html/supportClasses/NonVirtualDataGroup.js  |  42 ++--
 .../html/supportClasses/StringItemRenderer.js   |  53 +++--
 .../html/supportClasses/UIItemRendererBase.js   |  72 +++----
 .../src/org/apache/flex/html5/CheckBox.js       |  24 +--
 .../src/org/apache/flex/html5/ComboBox.js       |  28 +--
 .../src/org/apache/flex/html5/DropDownList.js   |  14 +-
 .../FlexJS/src/org/apache/flex/html5/Label.js   |  22 +-
 .../js/FlexJS/src/org/apache/flex/html5/List.js |  18 +-
 .../src/org/apache/flex/html5/RadioButton.js    |  28 +--
 .../src/org/apache/flex/html5/TextArea.js       |  20 +-
 .../src/org/apache/flex/html5/TextButton.js     |  20 +-
 .../src/org/apache/flex/html5/TextInput.js      |  20 +-
 .../src/org/apache/flex/jquery/Application.js   |  14 +-
 .../src/org/apache/flex/jquery/CheckBox.js      |  28 +--
 .../src/org/apache/flex/jquery/RadioButton.js   |  58 ++---
 .../src/org/apache/flex/jquery/TextButton.js    |  24 +--
 .../src/org/apache/flex/maps/google/Geometry.js |  14 +-
 .../src/org/apache/flex/maps/google/LatLng.js   |  12 +-
 .../src/org/apache/flex/maps/google/Map.js      |  84 ++++----
 .../src/org/apache/flex/maps/google/Marker.js   |  18 +-
 .../src/org/apache/flex/maps/google/Place.js    |  26 +--
 .../apache/flex/maps/google/beads/MapView.js    |  12 +-
 .../apache/flex/maps/google/models/MapModel.js  |  42 ++--
 .../src/org/apache/flex/net/BinaryUploader.js   |  90 ++++----
 .../src/org/apache/flex/net/HTTPHeader.js       |  14 +-
 .../src/org/apache/flex/net/HTTPService.js      |  90 ++++----
 .../src/org/apache/flex/net/JSONInputParser.js  |  10 +-
 .../org/apache/flex/net/JSONItemConverter.js    |  14 +-
 .../flex/net/dataConverters/LazyCollection.js   |  41 ++--
 .../src/org/apache/flex/svg/TextButton.js       |  26 +--
 .../src/org/apache/flex/utils/BinaryData.js     |  36 ++--
 .../src/org/apache/flex/utils/EffectTimer.js    |  36 ++--
 .../src/org/apache/flex/utils/Language.js       |  28 +--
 .../apache/flex/utils/MXMLDataInterpreter.js    |  42 ++--
 .../src/org/apache/flex/utils/MixinManager.js   |  14 +-
 .../src/org/apache/flex/utils/PointUtils.js     |  26 +--
 .../FlexJS/src/org/apache/flex/utils/Timer.js   |  40 ++--
 .../FlexJS/src/org/apache/flex/utils/UIUtils.js |  20 +-
 .../flex/utils/ViewSourceContextMenuOption.js   |  12 +-
 .../js/FlexJS/tests/MySimpleValuesImpl.js       |   6 +-
 222 files changed, 3232 insertions(+), 3255 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/flash/display/Sprite.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/flash/display/Sprite.js b/frameworks/js/FlexJS/src/flash/display/Sprite.js
index 086a7aa..8d9684d 100644
--- a/frameworks/js/FlexJS/src/flash/display/Sprite.js
+++ b/frameworks/js/FlexJS/src/flash/display/Sprite.js
@@ -12,14 +12,14 @@
  * limitations under the License.
  */
 
-goog.provide('flash.display.Sprite');
+goog.provide('flash_display_Sprite');
 
 
 
 /**
  * @constructor
  */
-flash.display.Sprite = function() {
+flash_display_Sprite = function() {
 };
 
 
@@ -28,13 +28,13 @@ flash.display.Sprite = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-flash.display.Sprite.prototype.FLEXJS_CLASS_INFO =
+flash_display_Sprite.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'Sprite',
-                qName: 'flash.display.Sprite' }] };
+                qName: 'flash_display_Sprite' }] };
 
 
 /**
  * @expose
  */
-flash.display.Sprite.prototype.start = function() {
+flash_display_Sprite.prototype.start = function() {
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/mx/core/ClassFactory.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/mx/core/ClassFactory.js b/frameworks/js/FlexJS/src/mx/core/ClassFactory.js
index 25755bd..97fec5c 100644
--- a/frameworks/js/FlexJS/src/mx/core/ClassFactory.js
+++ b/frameworks/js/FlexJS/src/mx/core/ClassFactory.js
@@ -12,18 +12,18 @@
  * limitations under the License.
  */
 
-goog.provide('mx.core.ClassFactory');
+goog.provide('mx_core_ClassFactory');
 
-goog.require('mx.core.IFactory');
+goog.require('mx_core_IFactory');
 
 
 
 /**
  * @constructor
- * @implements {mx.core.IFactory}
+ * @implements {mx_core_IFactory}
  * @param {Function} generator The class definition to use for newInstance.
  */
-mx.core.ClassFactory = function(generator) {
+mx_core_ClassFactory = function(generator) {
   /**
    * @private
    * @type {Function}
@@ -38,18 +38,18 @@ mx.core.ClassFactory = function(generator) {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-mx.core.ClassFactory.prototype.
+mx_core_ClassFactory.prototype.
     FLEXJS_CLASS_INFO =
         { names: [{ name: 'ClassFactory',
-           qName: 'mx.core.ClassFactory' }],
-    interfaces: [mx.core.IFactory] };
+           qName: 'mx_core_ClassFactory' }],
+    interfaces: [mx_core_IFactory] };
 
 
 /**
  * @expose
  * @return {Object} The new instance of the class described by generator.
  */
-mx.core.ClassFactory.
+mx_core_ClassFactory.
     prototype.newInstance = function() {
   var obj = new this.generator_();
 
@@ -61,4 +61,4 @@ mx.core.ClassFactory.
   }
 
   return obj;
-};
\ No newline at end of file
+};

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/mx/core/IFactory.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/mx/core/IFactory.js b/frameworks/js/FlexJS/src/mx/core/IFactory.js
index d74f47f..556a4e0 100644
--- a/frameworks/js/FlexJS/src/mx/core/IFactory.js
+++ b/frameworks/js/FlexJS/src/mx/core/IFactory.js
@@ -17,14 +17,14 @@
  * @suppress {checkTypes}
  */
 
-goog.provide('mx.core.IFactory');
+goog.provide('mx_core_IFactory');
 
 
 
 /**
  * @interface
  */
-mx.core.IFactory = function() {
+mx_core_IFactory = function() {
 };
 
 
@@ -32,7 +32,7 @@ mx.core.IFactory = function() {
  * @expose
  * @return {Object} A new instance of the itemRenderer.
  */
-mx.core.IFactory.prototype.newInstance = function() {};
+mx_core_IFactory.prototype.newInstance = function() {};
 
 
 /**
@@ -40,6 +40,6 @@ mx.core.IFactory.prototype.newInstance = function() {};
  *
  * @type {Object.<string, Array.<Object>>}
  */
-mx.core.IFactory.prototype.FLEXJS_CLASS_INFO =
+mx_core_IFactory.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'IFactory',
-                qName: 'mx.core.IFactory' }] };
\ No newline at end of file
+                qName: 'mx_core_IFactory' }] };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/mx/states/AddItems.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/mx/states/AddItems.js b/frameworks/js/FlexJS/src/mx/states/AddItems.js
index 00a3c73..22f7619 100644
--- a/frameworks/js/FlexJS/src/mx/states/AddItems.js
+++ b/frameworks/js/FlexJS/src/mx/states/AddItems.js
@@ -12,17 +12,17 @@
  * limitations under the License.
  */
 
-goog.provide('mx.states.AddItems');
+goog.provide('mx_states_AddItems');
 
-goog.require('org.apache.flex.core.IDocument');
+goog.require('org_apache_flex_core_IDocument');
 
 
 
 /**
  * @constructor
- * @implements {org.apache.flex.core.IDocument}
+ * @implements {org_apache_flex_core_IDocument}
  */
-mx.states.AddItems = function() {
+mx_states_AddItems = function() {
 };
 
 
@@ -31,17 +31,17 @@ mx.states.AddItems = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-mx.states.AddItems.prototype.FLEXJS_CLASS_INFO =
+mx_states_AddItems.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'AddItems',
-                qName: 'mx.states.AddItems' }],
-      interfaces: [org.apache.flex.core.IDocument] };
+                qName: 'mx_states_AddItems' }],
+      interfaces: [org_apache_flex_core_IDocument] };
 
 
 /**
  * @param {Object} document The MXML object.
  * @param {?string=} opt_id The id.
  */
-mx.states.AddItems.prototype.setDocument = function(document, opt_id) {
+mx_states_AddItems.prototype.setDocument = function(document, opt_id) {
   opt_id = typeof opt_id !== 'undefined' ? opt_id : null;
   this.document = document;
   var data = document['mxmlsd'][this.itemsDescriptorIndex];
@@ -60,14 +60,14 @@ mx.states.AddItems.prototype.setDocument = function(document, opt_id) {
  * @expose
  * @type {Object} document The MXML object.
  */
-mx.states.AddItems.prototype.document = null;
+mx_states_AddItems.prototype.document = null;
 
 
 /**
  * @expose
  * @type {Array} items The array of items to add.
  */
-mx.states.AddItems.prototype.items = null;
+mx_states_AddItems.prototype.items = null;
 
 
 /**
@@ -75,42 +75,42 @@ mx.states.AddItems.prototype.items = null;
  * @type {number} itemsDescriptor The index into the array
  *                               of itemDescriptors on the document
  */
-mx.states.AddItems.prototype.itemsDescriptorIndex = -1;
+mx_states_AddItems.prototype.itemsDescriptorIndex = -1;
 
 
 /**
  * @expose
  * @type {Object} itemsDescriptor The descriptors for items.
  */
-mx.states.AddItems.prototype.itemsDescriptor = null;
+mx_states_AddItems.prototype.itemsDescriptor = null;
 
 
 /**
  * @expose
  * @type {string} destination The id of the parent.
  */
-mx.states.AddItems.prototype.destination = '';
+mx_states_AddItems.prototype.destination = '';
 
 
 /**
  * @expose
  * @type {string} propertyName The child property name (e.g. mxmlContent).
  */
-mx.states.AddItems.prototype.propertyName = '';
+mx_states_AddItems.prototype.propertyName = '';
 
 
 /**
  * @expose
  * @type {string} position Where the item goes relative to relativeTo.
  */
-mx.states.AddItems.prototype.position = '';
+mx_states_AddItems.prototype.position = '';
 
 
 /**
  * @expose
  * @type {?string} relativeTo The id of the child where the item goes.
  */
-mx.states.AddItems.prototype.relativeTo = null;
+mx_states_AddItems.prototype.relativeTo = null;
 
 
 /**
@@ -118,7 +118,7 @@ mx.states.AddItems.prototype.relativeTo = null;
  * @param {Object} properties The properties for the new object.
  * @return {Object} The new object.
  */
-mx.states.AddItems.prototype.initializeFromObject = function(properties) {
+mx_states_AddItems.prototype.initializeFromObject = function(properties) {
   var p;
 
   for (p in properties) {

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/mx/states/SetEventHandler.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/mx/states/SetEventHandler.js b/frameworks/js/FlexJS/src/mx/states/SetEventHandler.js
index 35e583d..1edc36e 100644
--- a/frameworks/js/FlexJS/src/mx/states/SetEventHandler.js
+++ b/frameworks/js/FlexJS/src/mx/states/SetEventHandler.js
@@ -12,17 +12,17 @@
  * limitations under the License.
  */
 
-goog.provide('mx.states.SetEventHandler');
+goog.provide('mx_states_SetEventHandler');
 
-goog.require('org.apache.flex.core.IDocument');
+goog.require('org_apache_flex_core_IDocument');
 
 
 
 /**
  * @constructor
- * @implements {org.apache.flex.core.IDocument}
+ * @implements {org_apache_flex_core_IDocument}
  */
-mx.states.SetEventHandler = function() {
+mx_states_SetEventHandler = function() {
 };
 
 
@@ -31,17 +31,17 @@ mx.states.SetEventHandler = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-mx.states.SetEventHandler.prototype.FLEXJS_CLASS_INFO =
+mx_states_SetEventHandler.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'SetEventHandler',
-                qName: 'mx.states.SetEventHandler' }],
-      interfaces: [org.apache.flex.core.IDocument] };
+                qName: 'mx_states_SetEventHandler' }],
+      interfaces: [org_apache_flex_core_IDocument] };
 
 
 /**
  * @param {Object} document The MXML object.
  * @param {?string=} opt_id The id.
  */
-mx.states.SetEventHandler.prototype.setDocument = function(document, opt_id) {
+mx_states_SetEventHandler.prototype.setDocument = function(document, opt_id) {
   opt_id = typeof opt_id !== 'undefined' ? opt_id : null;
   this.document = document;
 };
@@ -51,28 +51,28 @@ mx.states.SetEventHandler.prototype.setDocument = function(document, opt_id) {
  * @expose
  * @type {Object} document The MXML object.
  */
-mx.states.SetEventHandler.prototype.document = null;
+mx_states_SetEventHandler.prototype.document = null;
 
 
 /**
  * @expose
  * @type {string} name The event to listen for.
  */
-mx.states.SetEventHandler.prototype.name = '';
+mx_states_SetEventHandler.prototype.name = '';
 
 
 /**
  * @expose
  * @type {string} target The id of the object.
  */
-mx.states.SetEventHandler.prototype.target = '';
+mx_states_SetEventHandler.prototype.target = '';
 
 
 /**
  * @expose
  * @type {Object} handlerFunction The listener to be added.
  */
-mx.states.SetEventHandler.prototype.handlerFunction = null;
+mx_states_SetEventHandler.prototype.handlerFunction = null;
 
 
 /**
@@ -80,7 +80,7 @@ mx.states.SetEventHandler.prototype.handlerFunction = null;
  * @param {Object} properties The properties for the new object.
  * @return {Object} The new object.
  */
-mx.states.SetEventHandler.prototype.initializeFromObject = function(properties) {
+mx_states_SetEventHandler.prototype.initializeFromObject = function(properties) {
   var p;
 
   for (p in properties) {

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/mx/states/SetProperty.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/mx/states/SetProperty.js b/frameworks/js/FlexJS/src/mx/states/SetProperty.js
index ab76e9f..f7feca9 100644
--- a/frameworks/js/FlexJS/src/mx/states/SetProperty.js
+++ b/frameworks/js/FlexJS/src/mx/states/SetProperty.js
@@ -12,17 +12,17 @@
  * limitations under the License.
  */
 
-goog.provide('mx.states.SetProperty');
+goog.provide('mx_states_SetProperty');
 
-goog.require('org.apache.flex.core.IDocument');
+goog.require('org_apache_flex_core_IDocument');
 
 
 
 /**
  * @constructor
- * @implements {org.apache.flex.core.IDocument}
+ * @implements {org_apache_flex_core_IDocument}
  */
-mx.states.SetProperty = function() {
+mx_states_SetProperty = function() {
 };
 
 
@@ -31,17 +31,17 @@ mx.states.SetProperty = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-mx.states.SetProperty.prototype.FLEXJS_CLASS_INFO =
+mx_states_SetProperty.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'SetProperty',
-                qName: 'mx.states.SetProperty' }],
-      interfaces: [org.apache.flex.core.IDocument] };
+                qName: 'mx_states_SetProperty' }],
+      interfaces: [org_apache_flex_core_IDocument] };
 
 
 /**
  * @param {Object} document The MXML object.
  * @param {?string=} opt_id The id.
  */
-mx.states.SetProperty.prototype.setDocument = function(document, opt_id) {
+mx_states_SetProperty.prototype.setDocument = function(document, opt_id) {
   opt_id = typeof opt_id !== 'undefined' ? opt_id : null;
   this.document = document;
 };
@@ -51,35 +51,35 @@ mx.states.SetProperty.prototype.setDocument = function(document, opt_id) {
  * @expose
  * @type {Object} document The MXML object.
  */
-mx.states.SetProperty.prototype.document = null;
+mx_states_SetProperty.prototype.document = null;
 
 
 /**
  * @expose
  * @type {string} name The target property name.
  */
-mx.states.SetProperty.prototype.name = '';
+mx_states_SetProperty.prototype.name = '';
 
 
 /**
  * @expose
  * @type {?string} target The id of the object.
  */
-mx.states.SetProperty.prototype.target = null;
+mx_states_SetProperty.prototype.target = null;
 
 
 /**
  * @expose
  * @type {Object} previousValue The value to revert to.
  */
-mx.states.SetProperty.prototype.previousValue = null;
+mx_states_SetProperty.prototype.previousValue = null;
 
 
 /**
  * @expose
  * @type {Object} value The value to set.
  */
-mx.states.SetProperty.prototype.value = null;
+mx_states_SetProperty.prototype.value = null;
 
 
 /**
@@ -87,7 +87,7 @@ mx.states.SetProperty.prototype.value = null;
  * @param {Object} properties The properties for the new object.
  * @return {Object} The new object.
  */
-mx.states.SetProperty.prototype.initializeFromObject = function(properties) {
+mx_states_SetProperty.prototype.initializeFromObject = function(properties) {
   var p;
 
   for (p in properties) {

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/mx/states/State.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/mx/states/State.js b/frameworks/js/FlexJS/src/mx/states/State.js
index d7f40bb..0d6df35 100644
--- a/frameworks/js/FlexJS/src/mx/states/State.js
+++ b/frameworks/js/FlexJS/src/mx/states/State.js
@@ -12,7 +12,7 @@
  * limitations under the License.
  */
 
-goog.provide('mx.states.State');
+goog.provide('mx_states_State');
 
 
 
@@ -20,7 +20,7 @@ goog.provide('mx.states.State');
  * @constructor
  * @param {Object=} opt_props The initial properties.
  */
-mx.states.State = function(opt_props) {
+mx_states_State = function(opt_props) {
   opt_props = typeof opt_props !== 'undefined' ? opt_props : null;
 };
 
@@ -30,20 +30,20 @@ mx.states.State = function(opt_props) {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-mx.states.State.prototype.FLEXJS_CLASS_INFO =
+mx_states_State.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'State',
-                qName: 'mx.states.State' }] };
+                qName: 'mx_states_State' }] };
 
 
 /**
  * @expose
  * @type {string} name The state name.
  */
-mx.states.State.prototype.name = '';
+mx_states_State.prototype.name = '';
 
 
 /**
  * @expose
  * @type {Array} overrides The state data.
  */
-mx.states.State.prototype.overrides = null;
+mx_states_State.prototype.overrides = null;

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/cordova/Application.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/cordova/Application.js b/frameworks/js/FlexJS/src/org/apache/cordova/Application.js
index 0c63452..00c670d 100644
--- a/frameworks/js/FlexJS/src/org/apache/cordova/Application.js
+++ b/frameworks/js/FlexJS/src/org/apache/cordova/Application.js
@@ -14,39 +14,39 @@
 
 
 /**
- * org.apache.cordova.Application
+ * org_apache_cordova_Application
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.cordova.Application');
+goog.provide('org_apache_cordova_Application');
 
-goog.require('org.apache.flex.core.Application');
+goog.require('org_apache_flex_core_Application');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.core.Application}
+ * @extends {org_apache_flex_core_Application}
  */
-org.apache.cordova.Application = function() {
-  org.apache.cordova.Application.base(this, 'constructor');
+org_apache_cordova_Application = function() {
+  org_apache_cordova_Application.base(this, 'constructor');
 
   document.addEventListener('deviceready',
                              goog.bind(this.devicereadyredispatcher, this),
                              false);
 };
-goog.inherits(org.apache.cordova.Application,
-              org.apache.flex.core.Application);
+goog.inherits(org_apache_cordova_Application,
+              org_apache_flex_core_Application);
 
 
 /**
  * @protected
  * @param {Object} event
  */
-org.apache.cordova.Application.prototype.devicereadyredispatcher = function(event) {
+org_apache_cordova_Application.prototype.devicereadyredispatcher = function(event) {
   this.dispatchEvent('deviceready');
 };
 
@@ -56,6 +56,6 @@ org.apache.cordova.Application.prototype.devicereadyredispatcher = function(even
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.cordova.Application.prototype.FLEXJS_CLASS_INFO = {
-  names: [{ name: 'Application', qName: 'org.apache.cordova.Application'}]
+org_apache_cordova_Application.prototype.FLEXJS_CLASS_INFO = {
+  names: [{ name: 'Application', qName: 'org_apache_cordova_Application'}]
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/cordova/Weinre.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/cordova/Weinre.js b/frameworks/js/FlexJS/src/org/apache/cordova/Weinre.js
index cc5f604..5aed42d 100644
--- a/frameworks/js/FlexJS/src/org/apache/cordova/Weinre.js
+++ b/frameworks/js/FlexJS/src/org/apache/cordova/Weinre.js
@@ -14,21 +14,21 @@
 
 
 /**
- * org.apache.cordova.Application
+ * org_apache_cordova_Application
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.cordova.Weinre');
+goog.provide('org_apache_cordova_Weinre');
 
 
 
 /**
  * @constructor
  */
-org.apache.cordova.Weinre = function() {
+org_apache_cordova_Weinre = function() {
 };
 
 
@@ -36,7 +36,7 @@ org.apache.cordova.Weinre = function() {
  * @expose
  * @param {Object} value The new host.
  */
-org.apache.cordova.Weinre.prototype.set_strand =
+org_apache_cordova_Weinre.prototype.set_strand =
 function(value) {
 
   this.strand_ = value;
@@ -47,7 +47,7 @@ function(value) {
  * @expose
  * @param {string} value The new guid.
  */
-org.apache.cordova.Weinre.prototype.set_guid =
+org_apache_cordova_Weinre.prototype.set_guid =
 function(value) {
 
   var scriptNode = document.createElement('SCRIPT');
@@ -66,6 +66,6 @@ function(value) {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.cordova.Weinre.prototype.FLEXJS_CLASS_INFO = {
-  names: [{ name: 'Weinre', qName: 'org.apache.cordova.Weinre'}]
+org_apache_cordova_Weinre.prototype.FLEXJS_CLASS_INFO = {
+  names: [{ name: 'Weinre', qName: 'org_apache_cordova_Weinre'}]
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/cordova/camera/Camera.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/cordova/camera/Camera.js b/frameworks/js/FlexJS/src/org/apache/cordova/camera/Camera.js
index 10cf2d7..c263770 100644
--- a/frameworks/js/FlexJS/src/org/apache/cordova/camera/Camera.js
+++ b/frameworks/js/FlexJS/src/org/apache/cordova/camera/Camera.js
@@ -22,87 +22,87 @@
  */
 
 /**
- * org.apache.cordova.camera.Camera
+ * org_apache_cordova_camera_Camera
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.cordova.camera.Camera');
+goog.provide('org_apache_cordova_camera_Camera');
 
 
 
 /**
  * @constructor
  */
-org.apache.cordova.camera.Camera = function() {
-  this.pictureSourceType = org.apache.cordova.camera.Camera.PictureSourceType.PHOTOLIBRARY;
-  this.destinationType = org.apache.cordova.camera.Camera.DestinationType.DATA_URL;
-  this.mediaType = org.apache.cordova.camera.Camera.MediaType.PICTURE;
-  this.encodingType = org.apache.cordova.camera.Camera.EncodingType.JPEG;
-  this.direction = org.apache.cordova.camera.Camera.Direction.BACK;
+org_apache_cordova_camera_Camera = function() {
+  this.pictureSourceType = org_apache_cordova_camera_Camera.PictureSourceType.PHOTOLIBRARY;
+  this.destinationType = org_apache_cordova_camera_Camera.DestinationType.DATA_URL;
+  this.mediaType = org_apache_cordova_camera_Camera.MediaType.PICTURE;
+  this.encodingType = org_apache_cordova_camera_Camera.EncodingType.JPEG;
+  this.direction = org_apache_cordova_camera_Camera.Direction.BACK;
 };
 
 
 /**
  * @type {Object}
  */
-org.apache.cordova.camera.Camera.DestinationType = {DATA_URL: 0, FILE_URI: 1, NATIVE_URI: 2};
+org_apache_cordova_camera_Camera.DestinationType = {DATA_URL: 0, FILE_URI: 1, NATIVE_URI: 2};
 
 
 /**
  * @type {Object}
  */
-org.apache.cordova.camera.Camera.PictureSourceType = {PHOTOLIBRARY: 0, CAMERA: 1, SAVEDPHOTOALBUM: 2};
+org_apache_cordova_camera_Camera.PictureSourceType = {PHOTOLIBRARY: 0, CAMERA: 1, SAVEDPHOTOALBUM: 2};
 
 
 /**
  * @type {Object}
  */
-org.apache.cordova.camera.Camera.EncodingType = {JPEG: 0, PNG: 1};
+org_apache_cordova_camera_Camera.EncodingType = {JPEG: 0, PNG: 1};
 
 
 /**
  * @type {Object}
  */
-org.apache.cordova.camera.Camera.MediaType = {PICTURE: 0, VIDEO: 1, ALLMEDIA: 2};
+org_apache_cordova_camera_Camera.MediaType = {PICTURE: 0, VIDEO: 1, ALLMEDIA: 2};
 
 
 /**
  * @type {Object}
  */
-org.apache.cordova.camera.Camera.Direction = {BACK: 0, FRONT: 1};
+org_apache_cordova_camera_Camera.Direction = {BACK: 0, FRONT: 1};
 
 
 /**
  * @type {number}
  */
-//org.apache.cordova.camera.Camera.prototype.pictureSourceType;
+//org_apache_cordova_camera_Camera.prototype.pictureSourceType;
 
 
 /**
  * @type {number}
  */
-//org.apache.cordova.camera.Camera.prototype.destinationType;
+//org_apache_cordova_camera_Camera.prototype.destinationType;
 
 
 /**
  * @type {number}
  */
-//org.apache.cordova.camera.Camera.prototype.mediaType;
+//org_apache_cordova_camera_Camera.prototype.mediaType;
 
 
 /**
  * @type {number}
  */
-//org.apache.cordova.camera.Camera.prototype.encodingType;
+//org_apache_cordova_camera_Camera.prototype.encodingType;
 
 
 /**
  * @type {number}
  */
-//org.apache.cordova.camera.Camera.prototype.direction;
+//org_apache_cordova_camera_Camera.prototype.direction;
 
 
 /**
@@ -111,7 +111,7 @@ org.apache.cordova.camera.Camera.Direction = {BACK: 0, FRONT: 1};
  * @param {Function} cameraError
  * @param {Object} cameraOptions
  */
-org.apache.cordova.camera.Camera.prototype.getPicture = function(cameraSuccess, cameraError, cameraOptions) {
+org_apache_cordova_camera_Camera.prototype.getPicture = function(cameraSuccess, cameraError, cameraOptions) {
   navigator.camera.getPicture(cameraSuccess, cameraError, cameraOptions);
 };
 
@@ -121,7 +121,7 @@ org.apache.cordova.camera.Camera.prototype.getPicture = function(cameraSuccess,
  * @param {Function} cameraSuccess
  * @param {Function} cameraError
  */
-org.apache.cordova.camera.Camera.prototype.cleanup = function(cameraSuccess, cameraError) {
+org_apache_cordova_camera_Camera.prototype.cleanup = function(cameraSuccess, cameraError) {
   navigator.camera.cleanup();
 };
 
@@ -131,6 +131,6 @@ org.apache.cordova.camera.Camera.prototype.cleanup = function(cameraSuccess, cam
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.cordova.camera.Camera.prototype.FLEXJS_CLASS_INFO = {
-  names: [{ name: 'Camera', qName: 'org.apache.cordova.camera.Camera'}]
+org_apache_cordova_camera_Camera.prototype.FLEXJS_CLASS_INFO = {
+  names: [{ name: 'Camera', qName: 'org_apache_cordova_camera_Camera'}]
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/binding/BindingBase.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/binding/BindingBase.js b/frameworks/js/FlexJS/src/org/apache/flex/binding/BindingBase.js
index 68962ac..aea3087 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/binding/BindingBase.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/binding/BindingBase.js
@@ -12,14 +12,14 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.binding.BindingBase');
+goog.provide('org_apache_flex_binding_BindingBase');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.binding.BindingBase = function() {
+org_apache_flex_binding_BindingBase = function() {
 };
 
 
@@ -28,58 +28,58 @@ org.apache.flex.binding.BindingBase = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.binding.BindingBase.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_binding_BindingBase.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'BindingBase',
-                qName: 'org.apache.flex.binding.BindingBase'}] };
+                qName: 'org_apache_flex_binding_BindingBase'}] };
 
 
 /**
  * @protected
  * @type {Object}
  */
-org.apache.flex.binding.BindingBase.prototype.document = null;
+org_apache_flex_binding_BindingBase.prototype.document = null;
 
 
 /**
  * @expose
  * @type {Object}
  */
-org.apache.flex.binding.BindingBase.prototype.destination = null;
+org_apache_flex_binding_BindingBase.prototype.destination = null;
 
 
 /**
  * @expose
  * @type {string}
  */
-org.apache.flex.binding.BindingBase.prototype.destinationPropertyName = '';
+org_apache_flex_binding_BindingBase.prototype.destinationPropertyName = '';
 
 
 /**
  * @expose
  * @type {Object}
  */
-org.apache.flex.binding.BindingBase.prototype.source = null;
+org_apache_flex_binding_BindingBase.prototype.source = null;
 
 
 /**
  * @expose
  * @type {string}
  */
-org.apache.flex.binding.BindingBase.prototype.sourcePropertyName = '';
+org_apache_flex_binding_BindingBase.prototype.sourcePropertyName = '';
 
 
 /**
  * @expose
  * @type {?string}
  */
-org.apache.flex.binding.BindingBase.prototype.sourceID = null;
+org_apache_flex_binding_BindingBase.prototype.sourceID = null;
 
 
 /**
  * @expose
  * @param {Object} value The strand (owner) of the bead.
  */
-org.apache.flex.binding.BindingBase.prototype.set_strand = function(value) {
+org_apache_flex_binding_BindingBase.prototype.set_strand = function(value) {
   if (this.destination == null)
     this.destination = value;
   if (this.sourceID != null) {
@@ -102,7 +102,7 @@ org.apache.flex.binding.BindingBase.prototype.set_strand = function(value) {
  * @expose
  * @param {Object} document The MXML object.
  */
-org.apache.flex.binding.BindingBase.prototype.setDocument = function(document) {
+org_apache_flex_binding_BindingBase.prototype.setDocument = function(document) {
   this.document = document;
 };
 
@@ -110,7 +110,7 @@ org.apache.flex.binding.BindingBase.prototype.setDocument = function(document) {
 /**
  * @param {Object} event The event.
  */
-org.apache.flex.binding.BindingBase.prototype.sourceChangeHandler = function(event) {
+org_apache_flex_binding_BindingBase.prototype.sourceChangeHandler = function(event) {
   if (event.propertyName != this.sourceID)
     return;
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/binding/ChainBinding.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/binding/ChainBinding.js b/frameworks/js/FlexJS/src/org/apache/flex/binding/ChainBinding.js
index 7e2806f..3730dbf 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/binding/ChainBinding.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/binding/ChainBinding.js
@@ -12,15 +12,15 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.binding.ChainBinding');
-goog.provide('org.apache.flex.binding.ChainWatcher');
+goog.provide('org_apache_flex_binding_ChainBinding');
+goog.provide('org_apache_flex_binding_ChainWatcher');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.binding.ChainBinding = function() {
+org_apache_flex_binding_ChainBinding = function() {
 };
 
 
@@ -29,51 +29,51 @@ org.apache.flex.binding.ChainBinding = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.binding.ChainBinding.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_binding_ChainBinding.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ChainBinding',
-                qName: 'org.apache.flex.binding.ChainBinding'}] };
+                qName: 'org_apache_flex_binding_ChainBinding'}] };
 
 
 /**
  * @protected
  * @type {Object}
  */
-org.apache.flex.binding.ChainBinding.prototype.document = null;
+org_apache_flex_binding_ChainBinding.prototype.document = null;
 
 
 /**
  * @expose
  * @type {Object}
  */
-org.apache.flex.binding.ChainBinding.prototype.destination = null;
+org_apache_flex_binding_ChainBinding.prototype.destination = null;
 
 
 /**
  * @expose
  * @type {Object}
  */
-org.apache.flex.binding.ChainBinding.prototype.value = null;
+org_apache_flex_binding_ChainBinding.prototype.value = null;
 
 
 /**
  * @expose
  * @type {Object}
  */
-org.apache.flex.binding.ChainBinding.prototype.source = null;
+org_apache_flex_binding_ChainBinding.prototype.source = null;
 
 
 /**
  * @expose
  * @param {Object} value The strand (owner) of the bead.
  */
-org.apache.flex.binding.ChainBinding.prototype.set_strand = function(value) {
+org_apache_flex_binding_ChainBinding.prototype.set_strand = function(value) {
   this.applyBinding();
 };
 
 
 /**
  */
-org.apache.flex.binding.ChainBinding.prototype.applyBinding = function() {
+org_apache_flex_binding_ChainBinding.prototype.applyBinding = function() {
   var chainSet = this.evaluateSourceChain();
   if (chainSet)
     this.applyValue();
@@ -83,7 +83,7 @@ org.apache.flex.binding.ChainBinding.prototype.applyBinding = function() {
 /**
  * @return {boolean} True if chain complete.
  */
-org.apache.flex.binding.ChainBinding.prototype.evaluateSourceChain = function() {
+org_apache_flex_binding_ChainBinding.prototype.evaluateSourceChain = function() {
   var propName;
   var n = this.source.length;
   var obj = this.document;
@@ -94,7 +94,7 @@ org.apache.flex.binding.ChainBinding.prototype.evaluateSourceChain = function()
       propObj = obj['get_' + propName]();
     else
       propObj = obj[propName];
-    var watcher = new org.apache.flex.binding.ChainWatcher(propName, this.applyBinding);
+    var watcher = new org_apache_flex_binding_ChainWatcher(propName, this.applyBinding);
     obj.addEventListener('valueChange', watcher.handler);
     if (propObj == null)
       return false;
@@ -121,7 +121,7 @@ org.apache.flex.binding.ChainBinding.prototype.evaluateSourceChain = function()
 
 /**
  */
-org.apache.flex.binding.ChainBinding.prototype.applyValue = function() {
+org_apache_flex_binding_ChainBinding.prototype.applyValue = function() {
   var destinationName, n, obj, self;
   function handler(event) {
     if (event.propertyName != propName)
@@ -166,7 +166,7 @@ org.apache.flex.binding.ChainBinding.prototype.applyValue = function() {
  * @expose
  * @param {Object} document The MXML object.
  */
-org.apache.flex.binding.ChainBinding.prototype.setDocument = function(document) {
+org_apache_flex_binding_ChainBinding.prototype.setDocument = function(document) {
   this.document = document;
 };
 
@@ -177,7 +177,7 @@ org.apache.flex.binding.ChainBinding.prototype.setDocument = function(document)
  * @param {string} propName The name of the property to watch.
  * @param {function()} cb The callback function.
  */
-org.apache.flex.binding.ChainWatcher = function(propName, cb) {
+org_apache_flex_binding_ChainWatcher = function(propName, cb) {
   this.propertyName = propName;
   this.callback = cb;
 };
@@ -188,30 +188,30 @@ org.apache.flex.binding.ChainWatcher = function(propName, cb) {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.binding.ChainWatcher.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_binding_ChainWatcher.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ChainWatcher',
-                qName: 'org.apache.flex.binding.ChainWatcher'}] };
+                qName: 'org_apache_flex_binding_ChainWatcher'}] };
 
 
 /**
  * @protected
  * @type {string}
  */
-org.apache.flex.binding.ChainWatcher.prototype.propertyName = '';
+org_apache_flex_binding_ChainWatcher.prototype.propertyName = '';
 
 
 /**
  * @protected
  * @type {?function()}
  */
-org.apache.flex.binding.ChainWatcher.prototype.callback = null;
+org_apache_flex_binding_ChainWatcher.prototype.callback = null;
 
 
 /**
  * @expose
  * @param {Object} event The event object.
  */
-org.apache.flex.binding.ChainWatcher.prototype.handler = function(event) {
+org_apache_flex_binding_ChainWatcher.prototype.handler = function(event) {
   if (event.propertyName != this.propertyName)
     return;
   if (event.oldValue != null)

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/binding/ConstantBinding.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/binding/ConstantBinding.js b/frameworks/js/FlexJS/src/org/apache/flex/binding/ConstantBinding.js
index d70a374..a4bb0c5 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/binding/ConstantBinding.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/binding/ConstantBinding.js
@@ -12,21 +12,21 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.binding.ConstantBinding');
+goog.provide('org_apache_flex_binding_ConstantBinding');
 
-goog.require('org.apache.flex.binding.BindingBase');
+goog.require('org_apache_flex_binding_BindingBase');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.binding.BindingBase}
+ * @extends {org_apache_flex_binding_BindingBase}
  */
-org.apache.flex.binding.ConstantBinding = function() {
-  org.apache.flex.binding.ConstantBinding.base(this, 'constructor');
+org_apache_flex_binding_ConstantBinding = function() {
+  org_apache_flex_binding_ConstantBinding.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.binding.ConstantBinding,
-    org.apache.flex.binding.BindingBase);
+goog.inherits(org_apache_flex_binding_ConstantBinding,
+    org_apache_flex_binding_BindingBase);
 
 
 /**
@@ -34,17 +34,17 @@ goog.inherits(org.apache.flex.binding.ConstantBinding,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.binding.ConstantBinding.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_binding_ConstantBinding.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'ConstantBinding',
-                qName: 'org.apache.flex.binding.ConstantBinding'}] };
+                qName: 'org_apache_flex_binding_ConstantBinding'}] };
 
 
 /**
  * @override
  * @param {Object} value The strand (owner) of the bead.
  */
-org.apache.flex.binding.ConstantBinding.prototype.set_strand = function(value) {
-  org.apache.flex.binding.ConstantBinding.base(this, 'set_strand', value);
+org_apache_flex_binding_ConstantBinding.prototype.set_strand = function(value) {
+  org_apache_flex_binding_ConstantBinding.base(this, 'set_strand', value);
 
   var val;
   try {

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/binding/GenericBinding.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/binding/GenericBinding.js b/frameworks/js/FlexJS/src/org/apache/flex/binding/GenericBinding.js
index b52944a..2fd6373 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/binding/GenericBinding.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/binding/GenericBinding.js
@@ -12,22 +12,22 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.binding.GenericBinding');
+goog.provide('org_apache_flex_binding_GenericBinding');
 
-goog.require('org.apache.flex.binding.BindingBase');
-goog.require('org.apache.flex.events.ValueChangeEvent');
+goog.require('org_apache_flex_binding_BindingBase');
+goog.require('org_apache_flex_events_ValueChangeEvent');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.binding.BindingBase}
+ * @extends {org_apache_flex_binding_BindingBase}
  */
-org.apache.flex.binding.GenericBinding = function() {
-  org.apache.flex.binding.GenericBinding.base(this, 'constructor');
+org_apache_flex_binding_GenericBinding = function() {
+  org_apache_flex_binding_GenericBinding.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.binding.GenericBinding,
-    org.apache.flex.binding.BindingBase);
+goog.inherits(org_apache_flex_binding_GenericBinding,
+    org_apache_flex_binding_BindingBase);
 
 
 /**
@@ -35,30 +35,30 @@ goog.inherits(org.apache.flex.binding.GenericBinding,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.binding.GenericBinding.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_binding_GenericBinding.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'GenericBinding',
-                qName: 'org.apache.flex.binding.GenericBinding'}] };
+                qName: 'org_apache_flex_binding_GenericBinding'}] };
 
 
 /**
  * @expose
  * @type {Object}
  */
-org.apache.flex.binding.GenericBinding.prototype.destinationData = null;
+org_apache_flex_binding_GenericBinding.prototype.destinationData = null;
 
 
 /**
  * @expose
  * @type {?function(?): ?}
  */
-org.apache.flex.binding.GenericBinding.prototype.destinationFunction = null;
+org_apache_flex_binding_GenericBinding.prototype.destinationFunction = null;
 
 
 /**
  * @expose
  * @param {Object} value The strand (owner) of the bead.
  */
-org.apache.flex.binding.GenericBinding.prototype.set_strand =
+org_apache_flex_binding_GenericBinding.prototype.set_strand =
     function(value) {
   this.destination = value;
 
@@ -74,7 +74,7 @@ org.apache.flex.binding.GenericBinding.prototype.set_strand =
  * @expose
  * @return {Object} The value from the source as specified.
  */
-org.apache.flex.binding.GenericBinding.prototype.getValueFromSource =
+org_apache_flex_binding_GenericBinding.prototype.getValueFromSource =
     function() {
   var obj;
   if (typeof(this.source) == 'object' &&
@@ -112,7 +112,7 @@ org.apache.flex.binding.GenericBinding.prototype.getValueFromSource =
  * @expose
  * @param {Object} value The value from the source as specified.
  */
-org.apache.flex.binding.GenericBinding.prototype.applyValue =
+org_apache_flex_binding_GenericBinding.prototype.applyValue =
     function(value) {
   if (this.destinationFunction != null)
   {
@@ -130,7 +130,7 @@ org.apache.flex.binding.GenericBinding.prototype.applyValue =
       obj = this.document[arr[0]];
     if (obj == null) {
        this.document.addEventListener(
-           org.apache.flex.events.ValueChangeEvent.VALUE_CHANGE,
+           org_apache_flex_events_ValueChangeEvent.VALUE_CHANGE,
            goog.bind(this.destinationChangeHandler, this));
        return;
     }
@@ -157,7 +157,7 @@ org.apache.flex.binding.GenericBinding.prototype.applyValue =
  * @expose
  * @param {Object} value The value from the source as specified.
  */
-org.apache.flex.binding.GenericBinding.prototype.valueChanged =
+org_apache_flex_binding_GenericBinding.prototype.valueChanged =
     function(value) {
 
   try {
@@ -172,7 +172,7 @@ org.apache.flex.binding.GenericBinding.prototype.valueChanged =
  * @expose
  * @param {Object} event The change event.
  */
-org.apache.flex.binding.GenericBinding.prototype.destinationChangeHandler =
+org_apache_flex_binding_GenericBinding.prototype.destinationChangeHandler =
     function(event) {
   if (event.propertyName == this.destinationData[0])
     this.valueChanged(null);

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/binding/PropertyWatcher.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/binding/PropertyWatcher.js b/frameworks/js/FlexJS/src/org/apache/flex/binding/PropertyWatcher.js
index b8ced05..685a40e 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/binding/PropertyWatcher.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/binding/PropertyWatcher.js
@@ -12,31 +12,31 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.binding.PropertyWatcher');
+goog.provide('org_apache_flex_binding_PropertyWatcher');
 
-goog.require('org.apache.flex.binding.WatcherBase');
+goog.require('org_apache_flex_binding_WatcherBase');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.binding.WatcherBase}
+ * @extends {org_apache_flex_binding_WatcherBase}
  * @param {Object} source The source object.
  * @param {string} propertyName The property in the source.
  * @param {Object} eventNames An array of event names or an event name.
  * @param {function(?): ?} getterFunction A function to get the source property.
  */
-org.apache.flex.binding.PropertyWatcher =
+org_apache_flex_binding_PropertyWatcher =
     function(source, propertyName, eventNames, getterFunction) {
-  org.apache.flex.binding.PropertyWatcher.base(this, 'constructor');
+  org_apache_flex_binding_PropertyWatcher.base(this, 'constructor');
 
   this.source = source;
   this.propertyName = propertyName;
   this.getterFunction = getterFunction;
   this.eventNames = eventNames;
 };
-goog.inherits(org.apache.flex.binding.PropertyWatcher,
-    org.apache.flex.binding.WatcherBase);
+goog.inherits(org_apache_flex_binding_PropertyWatcher,
+    org_apache_flex_binding_WatcherBase);
 
 
 /**
@@ -44,40 +44,40 @@ goog.inherits(org.apache.flex.binding.PropertyWatcher,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.binding.PropertyWatcher.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_binding_PropertyWatcher.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'PropertyWatcher',
-                qName: 'org.apache.flex.binding.PropertyWatcher'}] };
+                qName: 'org_apache_flex_binding_PropertyWatcher'}] };
 
 
 /**
  * @type {Object}
  */
-org.apache.flex.binding.PropertyWatcher.prototype.source = null;
+org_apache_flex_binding_PropertyWatcher.prototype.source = null;
 
 
 /**
  * @type {?string}
  */
-org.apache.flex.binding.PropertyWatcher.prototype.propertyName = null;
+org_apache_flex_binding_PropertyWatcher.prototype.propertyName = null;
 
 
 /**
  * @type {Object}
  */
-org.apache.flex.binding.PropertyWatcher.prototype.eventNames = null;
+org_apache_flex_binding_PropertyWatcher.prototype.eventNames = null;
 
 
 /**
  * @type {?function(?): ?}
  */
-org.apache.flex.binding.PropertyWatcher.prototype.getterFunction = null;
+org_apache_flex_binding_PropertyWatcher.prototype.getterFunction = null;
 
 
 /**
  * @protected
  * @param {Object} event The event.
  */
-org.apache.flex.binding.PropertyWatcher.prototype.changeHandler =
+org_apache_flex_binding_PropertyWatcher.prototype.changeHandler =
     function(event) {
   if (typeof(event.propertyName) == 'string')
   {
@@ -98,7 +98,7 @@ org.apache.flex.binding.PropertyWatcher.prototype.changeHandler =
  * @expose
  * @param {Object} parent The new parent watcher.
  */
-org.apache.flex.binding.PropertyWatcher.prototype.parentChanged =
+org_apache_flex_binding_PropertyWatcher.prototype.parentChanged =
     function(parent) {
 
   if (this.source &&
@@ -118,7 +118,7 @@ org.apache.flex.binding.PropertyWatcher.prototype.parentChanged =
 /**
  * @protected
  */
-org.apache.flex.binding.PropertyWatcher.prototype.addEventListeners =
+org_apache_flex_binding_PropertyWatcher.prototype.addEventListeners =
     function() {
   if (typeof(this.eventNames) == 'string')
     this.source.addEventListener(this.eventNames,
@@ -140,7 +140,7 @@ org.apache.flex.binding.PropertyWatcher.prototype.addEventListeners =
 /**
  * @protected
  */
-org.apache.flex.binding.PropertyWatcher.prototype.removeEventListeners =
+org_apache_flex_binding_PropertyWatcher.prototype.removeEventListeners =
     function() {
   if (typeof(this.eventNames) == 'string')
     this.source.removeEventListener(this.eventNames,
@@ -164,7 +164,7 @@ org.apache.flex.binding.PropertyWatcher.prototype.removeEventListeners =
  * Gets the actual property then updates
  * the Watcher's children appropriately.
  */
-org.apache.flex.binding.PropertyWatcher.prototype.updateProperty =
+org_apache_flex_binding_PropertyWatcher.prototype.updateProperty =
     function() {
 
   if (this.source)

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/binding/SimpleBinding.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/binding/SimpleBinding.js b/frameworks/js/FlexJS/src/org/apache/flex/binding/SimpleBinding.js
index d19c4fc..f1b16e4 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/binding/SimpleBinding.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/binding/SimpleBinding.js
@@ -12,21 +12,21 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.binding.SimpleBinding');
+goog.provide('org_apache_flex_binding_SimpleBinding');
 
-goog.require('org.apache.flex.binding.BindingBase');
+goog.require('org_apache_flex_binding_BindingBase');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.binding.BindingBase}
+ * @extends {org_apache_flex_binding_BindingBase}
  */
-org.apache.flex.binding.SimpleBinding = function() {
-  org.apache.flex.binding.SimpleBinding.base(this, 'constructor');
+org_apache_flex_binding_SimpleBinding = function() {
+  org_apache_flex_binding_SimpleBinding.base(this, 'constructor');
 };
-goog.inherits(org.apache.flex.binding.SimpleBinding,
-    org.apache.flex.binding.BindingBase);
+goog.inherits(org_apache_flex_binding_SimpleBinding,
+    org_apache_flex_binding_BindingBase);
 
 
 /**
@@ -34,22 +34,22 @@ goog.inherits(org.apache.flex.binding.SimpleBinding,
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.binding.SimpleBinding.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_binding_SimpleBinding.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'SimpleBinding',
-                qName: 'org.apache.flex.binding.SimpleBinding'}] };
+                qName: 'org_apache_flex_binding_SimpleBinding'}] };
 
 
 /**
  * @expose
  * @type {string}
  */
-org.apache.flex.binding.SimpleBinding.prototype.eventName = '';
+org_apache_flex_binding_SimpleBinding.prototype.eventName = '';
 
 
 /**
  * @expose
  */
-org.apache.flex.binding.SimpleBinding.prototype.changeHandler = function() {
+org_apache_flex_binding_SimpleBinding.prototype.changeHandler = function() {
   if (typeof(this.destination['set_' + this.destinationPropertyName]) === 'function')
     this.destination['set_' + this.destinationPropertyName](
         this.source['get_' + this.sourcePropertyName]()
@@ -64,8 +64,8 @@ org.apache.flex.binding.SimpleBinding.prototype.changeHandler = function() {
 /**
  * @override
  */
-org.apache.flex.binding.SimpleBinding.prototype.set_strand = function(value) {
-  org.apache.flex.binding.SimpleBinding.base(this, 'set_strand', value);
+org_apache_flex_binding_SimpleBinding.prototype.set_strand = function(value) {
+  org_apache_flex_binding_SimpleBinding.base(this, 'set_strand', value);
 
   if (!this.source)
     return;
@@ -80,11 +80,11 @@ org.apache.flex.binding.SimpleBinding.prototype.set_strand = function(value) {
 /**
  * @param {Object} event The event.
  */
-org.apache.flex.binding.SimpleBinding.prototype.sourceChangeHandler = function(event) {
-  org.apache.flex.binding.SimpleBinding.base(this, 'sourceChangeHandler', event);
+org_apache_flex_binding_SimpleBinding.prototype.sourceChangeHandler = function(event) {
+  org_apache_flex_binding_SimpleBinding.base(this, 'sourceChangeHandler', event);
   if (this.source) {
     this.source.addEventListener(this.eventName,
         goog.bind(this.changeHandler, this));
     this.changeHandler();
   }
-};
\ No newline at end of file
+};

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/binding/WatcherBase.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/binding/WatcherBase.js b/frameworks/js/FlexJS/src/org/apache/flex/binding/WatcherBase.js
index cd2ec80..a7183a2 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/binding/WatcherBase.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/binding/WatcherBase.js
@@ -12,14 +12,14 @@
  * limitations under the License.
  */
 
-goog.provide('org.apache.flex.binding.WatcherBase');
+goog.provide('org_apache_flex_binding_WatcherBase');
 
 
 
 /**
  * @constructor
  */
-org.apache.flex.binding.WatcherBase = function() {
+org_apache_flex_binding_WatcherBase = function() {
 
   /**
      * @protected
@@ -42,9 +42,9 @@ org.apache.flex.binding.WatcherBase = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.binding.WatcherBase.prototype.FLEXJS_CLASS_INFO =
+org_apache_flex_binding_WatcherBase.prototype.FLEXJS_CLASS_INFO =
     { names: [{ name: 'WatcherBase',
-                qName: 'org.apache.flex.binding.WatcherBase'}] };
+                qName: 'org_apache_flex_binding_WatcherBase'}] };
 
 
 /**
@@ -52,16 +52,16 @@ org.apache.flex.binding.WatcherBase.prototype.FLEXJS_CLASS_INFO =
  *  @type {Object|number|string|boolean}
  *  The value itself.
  */
-org.apache.flex.binding.WatcherBase.prototype.value = null;
+org_apache_flex_binding_WatcherBase.prototype.value = null;
 
 
 /**
  *  @expose
  *  This is an abstract method that subclasses implement.
- *  @this {org.apache.flex.binding.WatcherBase}
+ *  @this {org_apache_flex_binding_WatcherBase}
  *  @param {Object} parent The new parent.
  */
-org.apache.flex.binding.WatcherBase.prototype.parentChanged =
+org_apache_flex_binding_WatcherBase.prototype.parentChanged =
     function(parent) {
 };
 
@@ -70,10 +70,10 @@ org.apache.flex.binding.WatcherBase.prototype.parentChanged =
  *  @expose
  *  Add a child to this watcher, meaning that the child
  *  is watching a sub value of ours.
- *  @this {org.apache.flex.binding.WatcherBase}
+ *  @this {org_apache_flex_binding_WatcherBase}
  *  @param {Object} child The new child.
  */
-org.apache.flex.binding.WatcherBase.prototype.addChild =
+org_apache_flex_binding_WatcherBase.prototype.addChild =
     function(child) {
   if (!this.children)
     this.children = [child];
@@ -88,10 +88,10 @@ org.apache.flex.binding.WatcherBase.prototype.addChild =
  *  @expose
  *  Add a binding to this watcher, meaning that the binding
  *  is notified when our value changes.
- *  @this {org.apache.flex.binding.WatcherBase}
+ *  @this {org_apache_flex_binding_WatcherBase}
  *  @param {Object} binding The new binding.
  */
-org.apache.flex.binding.WatcherBase.prototype.addBinding =
+org_apache_flex_binding_WatcherBase.prototype.addBinding =
     function(binding) {
   if (!this.listeners)
     this.listeners = [binding];
@@ -104,11 +104,11 @@ org.apache.flex.binding.WatcherBase.prototype.addBinding =
 
 /**
  *  @expose
- *  @this {org.apache.flex.binding.WatcherBase}
+ *  @this {org_apache_flex_binding_WatcherBase}
  *  We have probably changed, so go through
  *  and make sure our children are updated.
  */
-org.apache.flex.binding.WatcherBase.prototype.updateChildren = function() {
+org_apache_flex_binding_WatcherBase.prototype.updateChildren = function() {
   if (this.children)
   {
     var n = this.children.length;
@@ -122,11 +122,11 @@ org.apache.flex.binding.WatcherBase.prototype.updateChildren = function() {
 
 /**
  *  @protected
- *  @this {org.apache.flex.binding.WatcherBase}
+ *  @this {org_apache_flex_binding_WatcherBase}
  *  @param {Object} oldValue The prior value.
  *  @return {boolean} True if value changed.
  */
-org.apache.flex.binding.WatcherBase.prototype.valueChanged =
+org_apache_flex_binding_WatcherBase.prototype.valueChanged =
     function(oldValue) {
 
   if (oldValue == null && this.value == null)
@@ -169,10 +169,10 @@ org.apache.flex.binding.WatcherBase.prototype.valueChanged =
 
 /**
  *  @protected
- *  @this {org.apache.flex.binding.WatcherBase}
+ *  @this {org_apache_flex_binding_WatcherBase}
  *  @param {function(?): ?} wrappedFunction The function to call.
  */
-org.apache.flex.binding.WatcherBase.prototype.wrapUpdate =
+org_apache_flex_binding_WatcherBase.prototype.wrapUpdate =
     function(wrappedFunction) {
   try
   {
@@ -180,11 +180,11 @@ org.apache.flex.binding.WatcherBase.prototype.wrapUpdate =
   }
   catch (error)
   {
-    var staticClass = org.apache.flex.binding.WatcherBase;
+    var staticClass = org_apache_flex_binding_WatcherBase;
     var n = staticClass.allowedErrorTypes.length;
     for (var i = 0; i < n; i++)
     {
-      if (org.apache.flex.utils.Language.is(error, staticClass.allowedErrorTypes[i].type))
+      if (org_apache_flex_utils_Language.is(error, staticClass.allowedErrorTypes[i].type))
       {
         var handler = staticClass.allowedErrorTypes[i].handler;
         if (handler != null)
@@ -204,7 +204,7 @@ org.apache.flex.binding.WatcherBase.prototype.wrapUpdate =
 /**
  * Certain errors are normal when executing an update, so we swallow them:
  */
-org.apache.flex.binding.WatcherBase.allowedErrors = [
+org_apache_flex_binding_WatcherBase.allowedErrors = [
   1006, //   Error #1006: Call attempted on an object
   //                that is not a function.
   1009, //   Error #1009: null has no properties.
@@ -220,7 +220,7 @@ org.apache.flex.binding.WatcherBase.allowedErrors = [
  * Certain types of errors are normal when executing an update,
  * so we custom handle them or swallow them:
  */
-org.apache.flex.binding.WatcherBase.allowedErrorTypes = [
+org_apache_flex_binding_WatcherBase.allowedErrorTypes = [
   { type: RangeError /*,
               handler: function(w:WatcherBase,
                     wrappedFunction:Function):Object { return null }*/
@@ -230,9 +230,9 @@ org.apache.flex.binding.WatcherBase.allowedErrorTypes = [
 
 /**
  *  @protected
- *  @this {org.apache.flex.binding.WatcherBase}
+ *  @this {org_apache_flex_binding_WatcherBase}
  */
-org.apache.flex.binding.WatcherBase.prototype.notifyListeners = function()
+org_apache_flex_binding_WatcherBase.prototype.notifyListeners = function()
     {
   if (this.listeners)
   {

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/charts/core/ChartBase.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/ChartBase.js b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/ChartBase.js
index 854b055..b048c85 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/ChartBase.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/ChartBase.js
@@ -11,34 +11,34 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * org.apache.flex.charts.core.IChart
+ * org_apache_flex_charts_core_IChart
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.charts.core.ChartBase');
+goog.provide('org_apache_flex_charts_core_ChartBase');
 
-goog.require('org.apache.flex.charts.core.IChart');
-goog.require('org.apache.flex.events.Event');
-goog.require('org.apache.flex.html.List');
+goog.require('org_apache_flex_charts_core_IChart');
+goog.require('org_apache_flex_events_Event');
+goog.require('org_apache_flex_html_List');
 
 
 
 /**
  * @constructor
- * @extends {org.apache.flex.html.List}
- * @implements {org.apache.flex.charts.core.IChart}
+ * @extends {org_apache_flex_html_List}
+ * @implements {org_apache_flex_charts_core_IChart}
  */
-org.apache.flex.charts.core.ChartBase =
+org_apache_flex_charts_core_ChartBase =
     function() {
-  org.apache.flex.charts.core.ChartBase.base(this, 'constructor');
+  org_apache_flex_charts_core_ChartBase.base(this, 'constructor');
   this.className = 'ChartBase';
 };
 goog.inherits(
-    org.apache.flex.charts.core.ChartBase,
-    org.apache.flex.html.List);
+    org_apache_flex_charts_core_ChartBase,
+    org_apache_flex_html_List);
 
 
 /**
@@ -46,16 +46,16 @@ goog.inherits(
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.charts.core.ChartBase.prototype.FLEXJS_CLASS_INFO = {
-    names: [{ name: 'ChartBase', qName: 'org.apache.flex.charts.core.ChartBase'}]
+org_apache_flex_charts_core_ChartBase.prototype.FLEXJS_CLASS_INFO = {
+    names: [{ name: 'ChartBase', qName: 'org_apache_flex_charts_core_ChartBase'}]
   };
 
 
 /**
  * @override
  */
-org.apache.flex.charts.core.ChartBase.prototype.createElement = function() {
-    org.apache.flex.charts.core.ChartBase.base(this, 'createElement');
+org_apache_flex_charts_core_ChartBase.prototype.createElement = function() {
+    org_apache_flex_charts_core_ChartBase.base(this, 'createElement');
     this.element.style.border = 'none';
     this.element.style.overflow = 'visible';
     return this.element;
@@ -66,14 +66,14 @@ org.apache.flex.charts.core.ChartBase.prototype.createElement = function() {
  * @private
  * @type {Array}
  */
-org.apache.flex.charts.core.ChartBase.prototype.series_ = null;
+org_apache_flex_charts_core_ChartBase.prototype.series_ = null;
 
 
 /**
  * @expose
  * @return {Array} The series for the chart.
  */
-org.apache.flex.charts.core.ChartBase.prototype.get_series = function() {
+org_apache_flex_charts_core_ChartBase.prototype.get_series = function() {
   return this.series_;
 };
 
@@ -82,7 +82,7 @@ org.apache.flex.charts.core.ChartBase.prototype.get_series = function() {
  * @expose
  * @param {Array} value The series for the chart.
  */
-org.apache.flex.charts.core.ChartBase.prototype.set_series = function(value) {
+org_apache_flex_charts_core_ChartBase.prototype.set_series = function(value) {
   this.series_ = value;
-  this.dispatchEvent(new org.apache.flex.events.Event('seriesChanged'));
+  this.dispatchEvent(new org_apache_flex_events_Event('seriesChanged'));
 };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IAxisBead.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IAxisBead.js b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IAxisBead.js
index 25d1c3c..6af847a 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IAxisBead.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IAxisBead.js
@@ -11,61 +11,61 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * org.apache.flex.charts.core.IAxisBead
+ * org_apache_flex_charts_core_IAxisBead
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.charts.core.IAxisBead');
+goog.provide('org_apache_flex_charts_core_IAxisBead');
 
-goog.require('org.apache.flex.core.IBead');
+goog.require('org_apache_flex_core_IBead');
 
 
 
 /**
  * @interface
- * @extends {org.apache.flex.core.IBead}
+ * @extends {org_apache_flex_core_IBead}
  */
-org.apache.flex.charts.core.IAxisBead = function() {
+org_apache_flex_charts_core_IAxisBead = function() {
 };
 
 
 /**
  * @return {string}
  */
-org.apache.flex.charts.core.IAxisBead.prototype.get_placement = function() {};
+org_apache_flex_charts_core_IAxisBead.prototype.get_placement = function() {};
 
 
 /**
  * @param {string} value
  */
-org.apache.flex.charts.core.IAxisBead.prototype.set_placement = function(value) {};
+org_apache_flex_charts_core_IAxisBead.prototype.set_placement = function(value) {};
 
 
 /**
  * @return {Object}
  */
-org.apache.flex.charts.core.IAxisBead.prototype.get_axisStroke = function() {};
+org_apache_flex_charts_core_IAxisBead.prototype.get_axisStroke = function() {};
 
 
 /**
  * @param {Object} value
  */
-org.apache.flex.charts.core.IAxisBead.prototype.set_axisStroke = function(value) {};
+org_apache_flex_charts_core_IAxisBead.prototype.set_axisStroke = function(value) {};
 
 
 /**
  * @return {Object}
  */
-org.apache.flex.charts.core.IAxisBead.prototype.get_tickStroke = function() {};
+org_apache_flex_charts_core_IAxisBead.prototype.get_tickStroke = function() {};
 
 
 /**
  * @param {Object} value
  */
-org.apache.flex.charts.core.IAxisBead.prototype.set_tickStroke = function(value) {};
+org_apache_flex_charts_core_IAxisBead.prototype.set_tickStroke = function(value) {};
 
 
 /**
@@ -73,7 +73,7 @@ org.apache.flex.charts.core.IAxisBead.prototype.set_tickStroke = function(value)
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.charts.core.IAxisBead.prototype.FLEXJS_CLASS_INFO = {
-    names: [{ name: 'IAxisBead', qName: 'org.apache.flex.charts.core.IAxisBead'}],
-    interfaces: [org.apache.flex.core.IBead]
+org_apache_flex_charts_core_IAxisBead.prototype.FLEXJS_CLASS_INFO = {
+    names: [{ name: 'IAxisBead', qName: 'org_apache_flex_charts_core_IAxisBead'}],
+    interfaces: [org_apache_flex_core_IBead]
   };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IAxisGroup.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IAxisGroup.js b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IAxisGroup.js
index f0a5348..d7b826c 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IAxisGroup.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IAxisGroup.js
@@ -11,28 +11,28 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * org.apache.flex.charts.core.IAxisGroup
+ * org_apache_flex_charts_core_IAxisGroup
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.charts.core.IAxisGroup');
+goog.provide('org_apache_flex_charts_core_IAxisGroup');
 
 
 
 /**
  * @interface
  */
-org.apache.flex.charts.core.IAxisGroup = function() {
+org_apache_flex_charts_core_IAxisGroup = function() {
 };
 
 
 /**
  * @return {void}
  */
-org.apache.flex.charts.core.IAxisGroup.prototype.removeAllElements = function() {};
+org_apache_flex_charts_core_IAxisGroup.prototype.removeAllElements = function() {};
 
 
 /**
@@ -40,6 +40,6 @@ org.apache.flex.charts.core.IAxisGroup.prototype.removeAllElements = function()
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.charts.core.IAxisGroup.prototype.FLEXJS_CLASS_INFO = {
-    names: [{ name: 'IAxisGroup', qName: 'org.apache.flex.charts.core.IAxisGroup'}]
+org_apache_flex_charts_core_IAxisGroup.prototype.FLEXJS_CLASS_INFO = {
+    names: [{ name: 'IAxisGroup', qName: 'org_apache_flex_charts_core_IAxisGroup'}]
   };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/charts/core/ICartesianChartLayout.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/ICartesianChartLayout.js b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/ICartesianChartLayout.js
index 09078a8..9acd74d 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/ICartesianChartLayout.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/ICartesianChartLayout.js
@@ -11,21 +11,21 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * org.apache.flex.charts.core.IChart
+ * org_apache_flex_charts_core_IChart
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.charts.core.ICartesianChartLayout');
+goog.provide('org_apache_flex_charts_core_ICartesianChartLayout');
 
 
 
 /**
  * @interface
  */
-org.apache.flex.charts.core.ICartesianChartLayout = function() {
+org_apache_flex_charts_core_ICartesianChartLayout = function() {
 };
 
 
@@ -34,6 +34,6 @@ org.apache.flex.charts.core.ICartesianChartLayout = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.charts.core.ICartesianChartLayout.prototype.FLEXJS_CLASS_INFO = {
-    names: [{ name: 'ICartesianChartLayout', qName: 'org.apache.flex.charts.core.ICartesianChartLayout'}]
+org_apache_flex_charts_core_ICartesianChartLayout.prototype.FLEXJS_CLASS_INFO = {
+    names: [{ name: 'ICartesianChartLayout', qName: 'org_apache_flex_charts_core_ICartesianChartLayout'}]
   };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChart.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChart.js b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChart.js
index 9e256ba..3a76657 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChart.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChart.js
@@ -11,34 +11,34 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * org.apache.flex.charts.core.IChart
+ * org_apache_flex_charts_core_IChart
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.charts.core.IChart');
+goog.provide('org_apache_flex_charts_core_IChart');
 
 
 
 /**
  * @interface
  */
-org.apache.flex.charts.core.IChart = function() {
+org_apache_flex_charts_core_IChart = function() {
 };
 
 
 /**
  * @return {Array}
  */
-org.apache.flex.charts.core.IChart.prototype.get_series = function() {};
+org_apache_flex_charts_core_IChart.prototype.get_series = function() {};
 
 
 /**
  * @param {Array} value
  */
-org.apache.flex.charts.core.IChart.prototype.set_series = function(value) {};
+org_apache_flex_charts_core_IChart.prototype.set_series = function(value) {};
 
 
 /**
@@ -46,6 +46,6 @@ org.apache.flex.charts.core.IChart.prototype.set_series = function(value) {};
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.charts.core.IChart.prototype.FLEXJS_CLASS_INFO = {
-    names: [{ name: 'IChart', qName: 'org.apache.flex.charts.core.IChart'}]
+org_apache_flex_charts_core_IChart.prototype.FLEXJS_CLASS_INFO = {
+    names: [{ name: 'IChart', qName: 'org_apache_flex_charts_core_IChart'}]
   };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChartAxis.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChartAxis.js b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChartAxis.js
index bc572c1..386fa6f 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChartAxis.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChartAxis.js
@@ -11,21 +11,21 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * org.apache.flex.charts.core.IChartAxis
+ * org_apache_flex_charts_core_IChartAxis
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.charts.core.IChartAxis');
+goog.provide('org_apache_flex_charts_core_IChartAxis');
 
 
 
 /**
  * @interface
  */
-org.apache.flex.charts.core.IChartAxis = function() {
+org_apache_flex_charts_core_IChartAxis = function() {
 };
 
 
@@ -34,6 +34,6 @@ org.apache.flex.charts.core.IChartAxis = function() {
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.charts.core.IChartAxis.prototype.FLEXJS_CLASS_INFO = {
-    names: [{ name: 'IChartAxis', qName: 'org.apache.flex.charts.core.IChartAxis'}]
+org_apache_flex_charts_core_IChartAxis.prototype.FLEXJS_CLASS_INFO = {
+    names: [{ name: 'IChartAxis', qName: 'org_apache_flex_charts_core_IChartAxis'}]
   };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChartDataGroup.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChartDataGroup.js b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChartDataGroup.js
index bc2a90d..22c4d76 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChartDataGroup.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChartDataGroup.js
@@ -11,25 +11,25 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * org.apache.flex.charts.core.IChartDataGroup
+ * org_apache_flex_charts_core_IChartDataGroup
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.charts.core.IChartDataGroup');
+goog.provide('org_apache_flex_charts_core_IChartDataGroup');
 
-goog.require('mx.core.IFactory');
-goog.require('org.apache.flex.core.IItemRendererParent');
+goog.require('mx_core_IFactory');
+goog.require('org_apache_flex_core_IItemRendererParent');
 
 
 
 /**
  * @interface
- * @extends {org.apache.flex.core.IItemRendererParent}
+ * @extends {org_apache_flex_core_IItemRendererParent}
  */
-org.apache.flex.charts.core.IChartDataGroup = function() {
+org_apache_flex_charts_core_IChartDataGroup = function() {
 };
 
 
@@ -38,7 +38,7 @@ org.apache.flex.charts.core.IChartDataGroup = function() {
  * @param {number} index The position of the itemRenderer within the series.
  * @return {Object} The itemRenderer matching the series and index.
  */
-org.apache.flex.charts.core.IChartDataGroup.prototype.getItemRendererForSeriesAtIndex =
+org_apache_flex_charts_core_IChartDataGroup.prototype.getItemRendererForSeriesAtIndex =
   function(series, index) {};
 
 
@@ -47,7 +47,7 @@ org.apache.flex.charts.core.IChartDataGroup.prototype.getItemRendererForSeriesAt
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.charts.core.IChartDataGroup.prototype.FLEXJS_CLASS_INFO = {
-    names: [{ name: 'IChartDataGroup', qName: 'org.apache.flex.charts.core.IChartDataGroup'}],
-    interfaces: [org.apache.flex.core.IItemRendererParent]
+org_apache_flex_charts_core_IChartDataGroup.prototype.FLEXJS_CLASS_INFO = {
+    names: [{ name: 'IChartDataGroup', qName: 'org_apache_flex_charts_core_IChartDataGroup'}],
+    interfaces: [org_apache_flex_core_IItemRendererParent]
   };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/49f207c4/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChartItemRenderer.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChartItemRenderer.js b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChartItemRenderer.js
index 7a589c4..7ffddcf 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChartItemRenderer.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IChartItemRenderer.js
@@ -11,85 +11,85 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  *
- * org.apache.flex.charts.core.IChartItemRenderer
+ * org_apache_flex_charts_core_IChartItemRenderer
  *
  * @fileoverview
  *
  * @suppress {checkTypes}
  */
 
-goog.provide('org.apache.flex.charts.core.IChartItemRenderer');
+goog.provide('org_apache_flex_charts_core_IChartItemRenderer');
 
-goog.require('org.apache.flex.core.IItemRenderer');
+goog.require('org_apache_flex_core_IItemRenderer');
 
 
 
 /**
  * @interface
- * @extends {org.apache.flex.core.IItemRenderer}
+ * @extends {org_apache_flex_core_IItemRenderer}
  */
-org.apache.flex.charts.core.IChartItemRenderer = function() {
+org_apache_flex_charts_core_IChartItemRenderer = function() {
 };
 
 
 /**
  * @return {string}
  */
-org.apache.flex.charts.core.IChartItemRenderer.prototype.get_xField = function() {};
+org_apache_flex_charts_core_IChartItemRenderer.prototype.get_xField = function() {};
 
 
 /**
  * @param {string} value
  */
-org.apache.flex.charts.core.IChartItemRenderer.prototype.set_xField = function(value) {};
+org_apache_flex_charts_core_IChartItemRenderer.prototype.set_xField = function(value) {};
 
 
 /**
  * @return {string}
  */
-org.apache.flex.charts.core.IChartItemRenderer.prototype.get_yField = function() {};
+org_apache_flex_charts_core_IChartItemRenderer.prototype.get_yField = function() {};
 
 
 /**
  * @param {string} value
  */
-org.apache.flex.charts.core.IChartItemRenderer.prototype.set_yField = function(value) {};
+org_apache_flex_charts_core_IChartItemRenderer.prototype.set_yField = function(value) {};
 
 
 /**
  * @return {number}
  */
-org.apache.flex.charts.core.IChartItemRenderer.prototype.get_fillColor = function() {};
+org_apache_flex_charts_core_IChartItemRenderer.prototype.get_fillColor = function() {};
 
 
 /**
  * @param {number} value
  */
-org.apache.flex.charts.core.IChartItemRenderer.prototype.set_fillColor = function(value) {};
+org_apache_flex_charts_core_IChartItemRenderer.prototype.set_fillColor = function(value) {};
 
 
 /**
  * @param {number} value
  */
-org.apache.flex.charts.core.IChartItemRenderer.prototype.set_x = function(value) {};
+org_apache_flex_charts_core_IChartItemRenderer.prototype.set_x = function(value) {};
 
 
 /**
  * @param {number} value
  */
-org.apache.flex.charts.core.IChartItemRenderer.prototype.set_y = function(value) {};
+org_apache_flex_charts_core_IChartItemRenderer.prototype.set_y = function(value) {};
 
 
 /**
  * @param {number} value
  */
-org.apache.flex.charts.core.IChartItemRenderer.prototype.set_width = function(value) {};
+org_apache_flex_charts_core_IChartItemRenderer.prototype.set_width = function(value) {};
 
 
 /**
  * @param {number} value
  */
-org.apache.flex.charts.core.IChartItemRenderer.prototype.set_height = function(value) {};
+org_apache_flex_charts_core_IChartItemRenderer.prototype.set_height = function(value) {};
 
 
 /**
@@ -97,7 +97,7 @@ org.apache.flex.charts.core.IChartItemRenderer.prototype.set_height = function(v
  *
  * @type {Object.<string, Array.<Object>>}
  */
-org.apache.flex.charts.core.IChartItemRenderer.prototype.FLEXJS_CLASS_INFO = {
-    names: [{ name: 'IChartItemRenderer', qName: 'org.apache.flex.charts.core.IChartItemRenderer'}],
-    interfaces: [org.apache.flex.core.IItemRenderer]
+org_apache_flex_charts_core_IChartItemRenderer.prototype.FLEXJS_CLASS_INFO = {
+    names: [{ name: 'IChartItemRenderer', qName: 'org_apache_flex_charts_core_IChartItemRenderer'}],
+    interfaces: [org_apache_flex_core_IItemRenderer]
   };