You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by er...@apache.org on 2013/11/07 14:58:27 UTC

[08/17] git commit: [flex-asjs] [refs/heads/develop] - Was working too deep, forgot about 'flash' and 'mx' classes. Fixed whitespace according to --strict run results.

Was working too deep, forgot about 'flash' and 'mx' classes. Fixed whitespace according to --strict run results.

Signed-off-by: Erik de Bruin <er...@ixsoftware.nl>


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

Branch: refs/heads/develop
Commit: 670c5f985dd5d6806070c82a7dcd02d96e9c08a3
Parents: 3510e0a
Author: Erik de Bruin <er...@ixsoftware.nl>
Authored: Thu Nov 7 13:47:52 2013 +0100
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Thu Nov 7 13:47:52 2013 +0100

----------------------------------------------------------------------
 frameworks/js/FlexJS/src/mx/states/AddItems.js    | 10 ++++++++++
 frameworks/js/FlexJS/src/mx/states/SetProperty.js |  8 ++++++++
 frameworks/js/FlexJS/src/mx/states/State.js       |  3 +++
 3 files changed, 21 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/670c5f98/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 6dc5a6d..8c63c5a 100644
--- a/frameworks/js/FlexJS/src/mx/states/AddItems.js
+++ b/frameworks/js/FlexJS/src/mx/states/AddItems.js
@@ -15,12 +15,14 @@
 goog.provide('mx.states.AddItems');
 
 
+
 /**
  * @constructor
  */
 mx.states.AddItems = function() {
 };
 
+
 /**
  * @this {mx.states.AddItems}
  * @param {Object} document The MXML object.
@@ -29,47 +31,55 @@ mx.states.AddItems.prototype.setDocument = function(document) {
   this.document = document;
 };
 
+
 /**
  * @type {string} document The type of override.
  */
 mx.states.AddItems.prototype.type = 'AddItems';
 
+
 /**
  * @expose
  * @type {Object} document The MXML object.
  */
 mx.states.AddItems.prototype.document = null;
 
+
 /**
  * @expose
  * @type {Array} items The array of items to add.
  */
 mx.states.AddItems.prototype.items = null;
 
+
 /**
  * @expose
  * @type {Array} itemsDescriptor The descriptors for items.
  */
 mx.states.AddItems.prototype.itemsDescriptor = null;
 
+
 /**
  * @expose
  * @type {string} destination The id of the parent.
  */
 mx.states.AddItems.prototype.destination = null;
 
+
 /**
  * @expose
  * @type {string} propertyName The child property name (e.g. mxmlContent).
  */
 mx.states.AddItems.prototype.propertyName = null;
 
+
 /**
  * @expose
  * @type {string} position Where the item goes relative to relativeTo.
  */
 mx.states.AddItems.prototype.position = null;
 
+
 /**
  * @expose
  * @type {string} relativeTo The id of the child where the item goes.

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/670c5f98/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 a6e5e56..1453cad 100644
--- a/frameworks/js/FlexJS/src/mx/states/SetProperty.js
+++ b/frameworks/js/FlexJS/src/mx/states/SetProperty.js
@@ -15,12 +15,14 @@
 goog.provide('mx.states.SetProperty');
 
 
+
 /**
  * @constructor
  */
 mx.states.SetProperty = function() {
 };
 
+
 /**
  * @this {mx.states.SetProperty}
  * @param {Object} document The MXML object.
@@ -29,35 +31,41 @@ mx.states.SetProperty.prototype.setDocument = function(document) {
   this.document = document;
 };
 
+
 /**
  * @type {string} document The type of override.
  */
 mx.states.SetProperty.prototype.type = 'SetProperty';
 
+
 /**
  * @expose
  * @type {Object} document The MXML object.
  */
 mx.states.SetProperty.prototype.document = null;
 
+
 /**
  * @expose
  * @type {string} name The target property name.
  */
 mx.states.SetProperty.prototype.name = null;
 
+
 /**
  * @expose
  * @type {string} target The id of the object.
  */
 mx.states.SetProperty.prototype.target = null;
 
+
 /**
  * @expose
  * @type {Object} previousValue The value to revert to.
  */
 mx.states.SetProperty.prototype.previousValue = null;
 
+
 /**
  * @expose
  * @type {Object} value The value to set.

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/670c5f98/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 c78be6a..29541f9 100644
--- a/frameworks/js/FlexJS/src/mx/states/State.js
+++ b/frameworks/js/FlexJS/src/mx/states/State.js
@@ -15,18 +15,21 @@
 goog.provide('mx.states.State');
 
 
+
 /**
  * @constructor
  */
 mx.states.State = function() {
 };
 
+
 /**
  * @expose
  * @type {string} name The state name.
  */
 mx.states.State.prototype.name = null;
 
+
 /**
  * @expose
  * @type {Array} overrides The state data.