diff --git a/src/ol/geom/linestring.js b/src/ol/geom/linestring.js index 3750973196..ad9dc96026 100644 --- a/src/ol/geom/linestring.js +++ b/src/ol/geom/linestring.js @@ -9,7 +9,7 @@ goog.require('ol.geom.Geometry'); /** * @constructor * @extends {ol.geom.Geometry} - * @param {Array.} coordinates Coordinates. + * @param {ol.geom.RawLineString} coordinates Coordinates. */ ol.geom.LineString = function(coordinates) { @@ -17,7 +17,7 @@ ol.geom.LineString = function(coordinates) { /** * @private - * @type {Array.>} + * @type {ol.geom.RawLineString} */ this.coordinates_ = coordinates; @@ -26,7 +26,7 @@ goog.inherits(ol.geom.LineString, ol.geom.Geometry); /** - * @return {Array.>} Coordinates. + * @return {ol.geom.RawLineString} Coordinates. */ ol.geom.LineString.prototype.getCoordinates = function() { return this.coordinates_; @@ -56,7 +56,7 @@ ol.geom.LineString.prototype.getType = function() { /** - * @param {Array.} coordinates Coordinates. + * @param {ol.geom.RawLineString} coordinates Coordinates. */ ol.geom.LineString.prototype.setCoordinates = function(coordinates) { this.coordinates_ = coordinates; diff --git a/src/ol/geom/multilinestring.js b/src/ol/geom/multilinestring.js index f42ad41be8..5c9649d6fd 100644 --- a/src/ol/geom/multilinestring.js +++ b/src/ol/geom/multilinestring.js @@ -9,7 +9,7 @@ goog.require('ol.geom.Geometry'); /** * @constructor * @extends {ol.geom.Geometry} - * @param {Array.>} coordinatess Coordinatess. + * @param {ol.geom.RawMultiLineString} coordinatess Coordinatess. */ ol.geom.MultiLineString = function(coordinatess) { @@ -17,7 +17,7 @@ ol.geom.MultiLineString = function(coordinatess) { /** * @private - * @type {Array.>} + * @type {ol.geom.RawMultiLineString} */ this.coordinatess_ = coordinatess; @@ -26,7 +26,7 @@ goog.inherits(ol.geom.MultiLineString, ol.geom.Geometry); /** - * @return {Array.>} Coordinatess. + * @return {ol.geom.RawMultiLineString} Coordinatess. */ ol.geom.MultiLineString.prototype.getCoordinatess = function() { return this.coordinatess_; @@ -60,7 +60,7 @@ ol.geom.MultiLineString.prototype.getType = function() { /** - * @param {Array.>} coordinatess Coordinatess. + * @param {ol.geom.RawMultiLineString} coordinatess Coordinatess. */ ol.geom.MultiLineString.prototype.setCoordinatess = function(coordinatess) { this.coordinatess_ = coordinatess; diff --git a/src/ol/geom/multipolygon.js b/src/ol/geom/multipolygon.js index 19f5ca1e08..24205a9b0c 100644 --- a/src/ol/geom/multipolygon.js +++ b/src/ol/geom/multipolygon.js @@ -9,7 +9,7 @@ goog.require('ol.geom.Geometry'); /** * @constructor * @extends {ol.geom.Geometry} - * @param {Array.>>} ringss Ringss. + * @param {ol.geom.RawMultiPolygon} ringss Ringss. */ ol.geom.MultiPolygon = function(ringss) { @@ -17,7 +17,7 @@ ol.geom.MultiPolygon = function(ringss) { /** * @private - * @type {Array.>>} + * @type {ol.geom.RawMultiPolygon} */ this.ringss_ = ringss; @@ -43,7 +43,7 @@ ol.geom.MultiPolygon.prototype.getExtent = function(opt_extent) { /** - * @return {Array.>>} Ringss. + * @return {ol.geom.RawMultiPolygon} Ringss. */ ol.geom.MultiPolygon.prototype.getRingss = function() { return this.ringss_; @@ -59,7 +59,7 @@ ol.geom.MultiPolygon.prototype.getType = function() { /** - * @param {Array.>>} ringss Ringss. + * @param {ol.geom.RawMultiPolygon} ringss Ringss. */ ol.geom.MultiPolygon.prototype.setRingss = function(ringss) { this.ringss_ = ringss; diff --git a/src/ol/geom/point.js b/src/ol/geom/point.js index f006a061f9..90ff74b821 100644 --- a/src/ol/geom/point.js +++ b/src/ol/geom/point.js @@ -9,7 +9,7 @@ goog.require('ol.geom.Geometry'); /** * @constructor * @extends {ol.geom.Geometry} - * @param {ol.Coordinate} coordinate Coordinate. + * @param {ol.geom.RawPoint} coordinate Coordinate. */ ol.geom.Point = function(coordinate) { @@ -17,7 +17,7 @@ ol.geom.Point = function(coordinate) { /** * @private - * @type {Array.} + * @type {ol.geom.RawPoint} */ this.coordinate_ = coordinate; @@ -26,7 +26,7 @@ goog.inherits(ol.geom.Point, ol.geom.Geometry); /** - * @return {ol.Coordinate} Coordinate. + * @return {ol.geom.RawPoint} Coordinate. */ ol.geom.Point.prototype.getCoordinate = function() { return this.coordinate_; @@ -56,7 +56,7 @@ ol.geom.Point.prototype.getType = function() { /** - * @param {ol.Coordinate} coordinate Coordinate. + * @param {ol.geom.RawPoint} coordinate Coordinate. */ ol.geom.Point.prototype.setCoordinate = function(coordinate) { this.coordinate_ = coordinate; diff --git a/src/ol/geom/polygon.js b/src/ol/geom/polygon.js index 5d84c063b6..eb1ad7651f 100644 --- a/src/ol/geom/polygon.js +++ b/src/ol/geom/polygon.js @@ -9,7 +9,7 @@ goog.require('ol.geom.Geometry'); /** * @constructor * @extends {ol.geom.Geometry} - * @param {Array.>} rings Rings. + * @param {ol.geom.RawPolygon} rings Rings. */ ol.geom.Polygon = function(rings) { @@ -17,7 +17,7 @@ ol.geom.Polygon = function(rings) { /** * @private - * @type {Array.>} + * @type {ol.geom.RawPolygon} */ this.rings_ = rings; @@ -39,7 +39,7 @@ ol.geom.Polygon.prototype.getExtent = function(opt_extent) { /** - * @return {Array.>} Rings. + * @return {ol.geom.RawPolygon} Rings. */ ol.geom.Polygon.prototype.getRings = function() { return this.rings_; @@ -55,7 +55,7 @@ ol.geom.Polygon.prototype.getType = function() { /** - * @param {Array.>} rings Rings. + * @param {ol.geom.RawPolygon} rings Rings. */ ol.geom.Polygon.prototype.setRings = function(rings) { this.rings_ = rings;