Skip to content

Commit

Permalink
Added missing @Protected
Browse files Browse the repository at this point in the history
  • Loading branch information
sdesai committed Jul 23, 2011
1 parent 655c0be commit 6a45602
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build/widget-position/widget-position-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand All @@ -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) {
Expand All @@ -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) {
Expand All @@ -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() {
Expand All @@ -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() {
Expand Down
5 changes: 5 additions & 0 deletions build/widget-position/widget-position.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand All @@ -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) {
Expand All @@ -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) {
Expand All @@ -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() {
Expand All @@ -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() {
Expand Down
5 changes: 5 additions & 0 deletions src/widget-position/js/Widget-Position.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand All @@ -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) {
Expand All @@ -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) {
Expand All @@ -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() {
Expand All @@ -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() {
Expand Down

0 comments on commit 6a45602

Please sign in to comment.