diff --git a/build/widget-position/widget-position-debug.js b/build/widget-position/widget-position-debug.js index 61595efdfe5..47f8df2be9a 100644 --- a/build/widget-position/widget-position-debug.js +++ b/build/widget-position/widget-position-debug.js @@ -187,6 +187,7 @@ YUI.add('widget-position', function(Y) { * Default validator for the XY attribute * * @method _validateXY + * @protected * @param {Array} val The XY page co-ordinate value which is being set. * @return {boolean} true if valid, false if not. */ @@ -199,6 +200,7 @@ YUI.add('widget-position', function(Y) { * to the XY attribute, which is the sole store for the XY state. * * @method _setX + * @protected * @param {Number} val The X page co-ordinate value */ _setX : function(val) { @@ -210,6 +212,7 @@ YUI.add('widget-position', function(Y) { * to the XY attribute, which is the sole store for the XY state. * * @method _setY + * @protected * @param {Number} val The Y page co-ordinate value */ _setY : function(val) { @@ -221,6 +224,7 @@ YUI.add('widget-position', function(Y) { * the XY attribute, which is the sole store for the XY state. * * @method _getX + * @protected * @return {Number} The X page co-ordinate value */ _getX : function() { @@ -232,6 +236,7 @@ YUI.add('widget-position', function(Y) { * the XY attribute, which is the sole store for the XY state. * * @method _getY + * @protected * @return {Number} The Y page co-ordinate value */ _getY : function() { diff --git a/build/widget-position/widget-position.js b/build/widget-position/widget-position.js index 61595efdfe5..47f8df2be9a 100644 --- a/build/widget-position/widget-position.js +++ b/build/widget-position/widget-position.js @@ -187,6 +187,7 @@ YUI.add('widget-position', function(Y) { * Default validator for the XY attribute * * @method _validateXY + * @protected * @param {Array} val The XY page co-ordinate value which is being set. * @return {boolean} true if valid, false if not. */ @@ -199,6 +200,7 @@ YUI.add('widget-position', function(Y) { * to the XY attribute, which is the sole store for the XY state. * * @method _setX + * @protected * @param {Number} val The X page co-ordinate value */ _setX : function(val) { @@ -210,6 +212,7 @@ YUI.add('widget-position', function(Y) { * to the XY attribute, which is the sole store for the XY state. * * @method _setY + * @protected * @param {Number} val The Y page co-ordinate value */ _setY : function(val) { @@ -221,6 +224,7 @@ YUI.add('widget-position', function(Y) { * the XY attribute, which is the sole store for the XY state. * * @method _getX + * @protected * @return {Number} The X page co-ordinate value */ _getX : function() { @@ -232,6 +236,7 @@ YUI.add('widget-position', function(Y) { * the XY attribute, which is the sole store for the XY state. * * @method _getY + * @protected * @return {Number} The Y page co-ordinate value */ _getY : function() { diff --git a/src/widget-position/js/Widget-Position.js b/src/widget-position/js/Widget-Position.js index d9ad4f49310..b37e7ee24ed 100644 --- a/src/widget-position/js/Widget-Position.js +++ b/src/widget-position/js/Widget-Position.js @@ -185,6 +185,7 @@ * Default validator for the XY attribute * * @method _validateXY + * @protected * @param {Array} val The XY page co-ordinate value which is being set. * @return {boolean} true if valid, false if not. */ @@ -197,6 +198,7 @@ * to the XY attribute, which is the sole store for the XY state. * * @method _setX + * @protected * @param {Number} val The X page co-ordinate value */ _setX : function(val) { @@ -208,6 +210,7 @@ * to the XY attribute, which is the sole store for the XY state. * * @method _setY + * @protected * @param {Number} val The Y page co-ordinate value */ _setY : function(val) { @@ -219,6 +222,7 @@ * the XY attribute, which is the sole store for the XY state. * * @method _getX + * @protected * @return {Number} The X page co-ordinate value */ _getX : function() { @@ -230,6 +234,7 @@ * the XY attribute, which is the sole store for the XY state. * * @method _getY + * @protected * @return {Number} The Y page co-ordinate value */ _getY : function() {