JSDOC updates

git-svn-id: http://svn.openlayers.org/trunk/openlayers@73 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
euzuro
2006-05-17 02:02:30 +00:00
parent aa1630bf41
commit 029683e84e

View File

@@ -12,13 +12,12 @@ OpenLayers.Util=new Object();
OpenLayers.Pixel = Class.create();
OpenLayers.Pixel.prototype = {
/* @type float */
/** @type float */
x: 0.0,
/* @type float */
/** @type float */
y: 0.0,
/**
* @constructor
*
@@ -31,7 +30,7 @@ OpenLayers.Pixel.prototype = {
},
/**
* @return string representation of Pixel, ex: "x=200.4,y=242.2"
* @return string representation of Pixel. ex: "x=200.4,y=242.2"
* @type str
*/
toString:function() {
@@ -88,7 +87,7 @@ OpenLayers.Pixel.prototype = {
return new OpenLayers.Pixel(this.x + x, this.y + y);
},
/* @type str */
/** @type str */
CLASS_NAME: "OpenLayers.Pixel"
};