Avoiding closure compiler warnings.

These comments are not parsed by Natural Docs and result in unnecessary warnings from closure compiler.
This commit is contained in:
Tim Schaub
2011-11-30 22:25:38 -08:00
parent 2d5a770ab5
commit 3844b91cd6

View File

@@ -151,7 +151,7 @@ OpenLayers.Format.WKT = OpenLayers.Class(OpenLayers.Format, {
extract: { extract: {
/** /**
* Return a space delimited string of point coordinates. * Return a space delimited string of point coordinates.
* @param {<OpenLayers.Geometry.Point>} point * @param {OpenLayers.Geometry.Point} point
* @returns {String} A string of coordinates representing the point * @returns {String} A string of coordinates representing the point
*/ */
'point': function(point) { 'point': function(point) {
@@ -160,7 +160,7 @@ OpenLayers.Format.WKT = OpenLayers.Class(OpenLayers.Format, {
/** /**
* Return a comma delimited string of point coordinates from a multipoint. * Return a comma delimited string of point coordinates from a multipoint.
* @param {<OpenLayers.Geometry.MultiPoint>} multipoint * @param {OpenLayers.Geometry.MultiPoint} multipoint
* @returns {String} A string of point coordinate strings representing * @returns {String} A string of point coordinate strings representing
* the multipoint * the multipoint
*/ */
@@ -176,7 +176,7 @@ OpenLayers.Format.WKT = OpenLayers.Class(OpenLayers.Format, {
/** /**
* Return a comma delimited string of point coordinates from a line. * Return a comma delimited string of point coordinates from a line.
* @param {<OpenLayers.Geometry.LineString>} linestring * @param {OpenLayers.Geometry.LineString} linestring
* @returns {String} A string of point coordinate strings representing * @returns {String} A string of point coordinate strings representing
* the linestring * the linestring
*/ */
@@ -190,7 +190,7 @@ OpenLayers.Format.WKT = OpenLayers.Class(OpenLayers.Format, {
/** /**
* Return a comma delimited string of linestring strings from a multilinestring. * Return a comma delimited string of linestring strings from a multilinestring.
* @param {<OpenLayers.Geometry.MultiLineString>} multilinestring * @param {OpenLayers.Geometry.MultiLineString} multilinestring
* @returns {String} A string of of linestring strings representing * @returns {String} A string of of linestring strings representing
* the multilinestring * the multilinestring
*/ */
@@ -206,7 +206,7 @@ OpenLayers.Format.WKT = OpenLayers.Class(OpenLayers.Format, {
/** /**
* Return a comma delimited string of linear ring arrays from a polygon. * Return a comma delimited string of linear ring arrays from a polygon.
* @param {<OpenLayers.Geometry.Polygon>} polygon * @param {OpenLayers.Geometry.Polygon} polygon
* @returns {String} An array of linear ring arrays representing the polygon * @returns {String} An array of linear ring arrays representing the polygon
*/ */
'polygon': function(polygon) { 'polygon': function(polygon) {
@@ -221,7 +221,7 @@ OpenLayers.Format.WKT = OpenLayers.Class(OpenLayers.Format, {
/** /**
* Return an array of polygon arrays from a multipolygon. * Return an array of polygon arrays from a multipolygon.
* @param {<OpenLayers.Geometry.MultiPolygon>} multipolygon * @param {OpenLayers.Geometry.MultiPolygon} multipolygon
* @returns {String} An array of polygon arrays representing * @returns {String} An array of polygon arrays representing
* the multipolygon * the multipolygon
*/ */
@@ -237,7 +237,7 @@ OpenLayers.Format.WKT = OpenLayers.Class(OpenLayers.Format, {
/** /**
* Return the WKT portion between 'GEOMETRYCOLLECTION(' and ')' for an <OpenLayers.Geometry.Collection> * Return the WKT portion between 'GEOMETRYCOLLECTION(' and ')' for an <OpenLayers.Geometry.Collection>
* @param {<OpenLayers.Geometry.Collection>} collection * @param {OpenLayers.Geometry.Collection} collection
* @returns {String} internal WKT representation of the collection * @returns {String} internal WKT representation of the collection
*/ */
'collection': function(collection) { 'collection': function(collection) {
@@ -258,7 +258,7 @@ OpenLayers.Format.WKT = OpenLayers.Class(OpenLayers.Format, {
/** /**
* Return point feature given a point WKT fragment. * Return point feature given a point WKT fragment.
* @param {String} str A WKT fragment representing the point * @param {String} str A WKT fragment representing the point
* @returns {<OpenLayers.Feature.Vector>} A point feature * @returns {OpenLayers.Feature.Vector} A point feature
* @private * @private
*/ */
'point': function(str) { 'point': function(str) {
@@ -271,7 +271,7 @@ OpenLayers.Format.WKT = OpenLayers.Class(OpenLayers.Format, {
/** /**
* Return a multipoint feature given a multipoint WKT fragment. * Return a multipoint feature given a multipoint WKT fragment.
* @param {String} A WKT fragment representing the multipoint * @param {String} A WKT fragment representing the multipoint
* @returns {<OpenLayers.Feature.Vector>} A multipoint feature * @returns {OpenLayers.Feature.Vector} A multipoint feature
* @private * @private
*/ */
'multipoint': function(str) { 'multipoint': function(str) {
@@ -290,7 +290,7 @@ OpenLayers.Format.WKT = OpenLayers.Class(OpenLayers.Format, {
/** /**
* Return a linestring feature given a linestring WKT fragment. * Return a linestring feature given a linestring WKT fragment.
* @param {String} A WKT fragment representing the linestring * @param {String} A WKT fragment representing the linestring
* @returns {<OpenLayers.Feature.Vector>} A linestring feature * @returns {OpenLayers.Feature.Vector} A linestring feature
* @private * @private
*/ */
'linestring': function(str) { 'linestring': function(str) {
@@ -307,7 +307,7 @@ OpenLayers.Format.WKT = OpenLayers.Class(OpenLayers.Format, {
/** /**
* Return a multilinestring feature given a multilinestring WKT fragment. * Return a multilinestring feature given a multilinestring WKT fragment.
* @param {String} A WKT fragment representing the multilinestring * @param {String} A WKT fragment representing the multilinestring
* @returns {<OpenLayers.Feature.Vector>} A multilinestring feature * @returns {OpenLayers.Feature.Vector} A multilinestring feature
* @private * @private
*/ */
'multilinestring': function(str) { 'multilinestring': function(str) {
@@ -326,7 +326,7 @@ OpenLayers.Format.WKT = OpenLayers.Class(OpenLayers.Format, {
/** /**
* Return a polygon feature given a polygon WKT fragment. * Return a polygon feature given a polygon WKT fragment.
* @param {String} A WKT fragment representing the polygon * @param {String} A WKT fragment representing the polygon
* @returns {<OpenLayers.Feature.Vector>} A polygon feature * @returns {OpenLayers.Feature.Vector} A polygon feature
* @private * @private
*/ */
'polygon': function(str) { 'polygon': function(str) {
@@ -347,7 +347,7 @@ OpenLayers.Format.WKT = OpenLayers.Class(OpenLayers.Format, {
/** /**
* Return a multipolygon feature given a multipolygon WKT fragment. * Return a multipolygon feature given a multipolygon WKT fragment.
* @param {String} A WKT fragment representing the multipolygon * @param {String} A WKT fragment representing the multipolygon
* @returns {<OpenLayers.Feature.Vector>} A multipolygon feature * @returns {OpenLayers.Feature.Vector} A multipolygon feature
* @private * @private
*/ */
'multipolygon': function(str) { 'multipolygon': function(str) {