Use @api annotations where geom methods are implemented

This commit is contained in:
Tim Schaub
2015-04-02 14:40:21 +02:00
parent 5c87efccdb
commit 6134a8bf7a

View File

@@ -96,7 +96,6 @@ goog.inherits(ol.geom.Geometry, ol.Object);
* Make a complete copy of the geometry.
* @function
* @return {!ol.geom.Geometry} Clone.
* @api stable
*/
ol.geom.Geometry.prototype.clone = goog.abstractMethod;
@@ -180,7 +179,6 @@ ol.geom.Geometry.prototype.getSimplifiedGeometry = goog.abstractMethod;
* Get the type of this geometry.
* @function
* @return {ol.geom.GeometryType} Geometry type.
* @api stable
*/
ol.geom.Geometry.prototype.getType = goog.abstractMethod;
@@ -192,7 +190,6 @@ ol.geom.Geometry.prototype.getType = goog.abstractMethod;
* then use this function on the clone.
* @function
* @param {ol.TransformFunction} transformFn Transform.
* @api stable
*/
ol.geom.Geometry.prototype.applyTransform = goog.abstractMethod;
@@ -202,7 +199,6 @@ ol.geom.Geometry.prototype.applyTransform = goog.abstractMethod;
* @param {ol.Extent} extent Extent.
* @return {boolean} `true` if the geometry and the extent intersect.
* @function
* @api stable
*/
ol.geom.Geometry.prototype.intersectsExtent = goog.abstractMethod;
@@ -213,7 +209,6 @@ ol.geom.Geometry.prototype.intersectsExtent = goog.abstractMethod;
* @param {number} deltaX Delta X.
* @param {number} deltaY Delta Y.
* @function
* @api stable
*/
ol.geom.Geometry.prototype.translate = goog.abstractMethod;
@@ -231,7 +226,6 @@ ol.geom.Geometry.prototype.translate = goog.abstractMethod;
* string identifier or a {@link ol.proj.Projection} object.
* @return {ol.geom.Geometry} This geometry. Note that original geometry is
* modified in place.
* @api stable
*/
ol.geom.Geometry.prototype.transform = function(source, destination) {
this.applyTransform(ol.proj.getTransform(source, destination));