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 = Class.create();
OpenLayers.Pixel.prototype = { OpenLayers.Pixel.prototype = {
/* @type float */ /** @type float */
x: 0.0, x: 0.0,
/* @type float */ /** @type float */
y: 0.0, y: 0.0,
/** /**
* @constructor * @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 * @type str
*/ */
toString:function() { toString:function() {
@@ -88,7 +87,7 @@ OpenLayers.Pixel.prototype = {
return new OpenLayers.Pixel(this.x + x, this.y + y); return new OpenLayers.Pixel(this.x + x, this.y + y);
}, },
/* @type str */ /** @type str */
CLASS_NAME: "OpenLayers.Pixel" CLASS_NAME: "OpenLayers.Pixel"
}; };