From a09b5d61aedfa691a4a0e284c0e367d6b185c96c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Lemoine?= Date: Tue, 26 Aug 2014 10:43:40 +0200 Subject: [PATCH] Add @api stable annotations for OSMXML format --- src/ol/format/osmxmlformat.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ol/format/osmxmlformat.js b/src/ol/format/osmxmlformat.js index fb23b224a2..ebc332de4f 100644 --- a/src/ol/format/osmxmlformat.js +++ b/src/ol/format/osmxmlformat.js @@ -23,7 +23,7 @@ goog.require('ol.xml'); * * @constructor * @extends {ol.format.XMLFeature} - * @api + * @api stable */ ol.format.OSMXML = function() { goog.base(this); @@ -201,7 +201,7 @@ ol.format.OSMXML.NODE_PARSERS_ = ol.xml.makeParsersNS( * @param {ArrayBuffer|Document|Node|Object|string} source Source. * @param {olx.format.ReadOptions=} opt_options Read options. * @return {Array.} Features. - * @api + * @api stable */ ol.format.OSMXML.prototype.readFeatures; @@ -231,7 +231,7 @@ ol.format.OSMXML.prototype.readFeaturesFromNode = function(node, opt_options) { * @function * @param {ArrayBuffer|Document|Node|Object|string} source Source. * @return {ol.proj.Projection} Projection. - * @api + * @api stable */ ol.format.OSMXML.prototype.readProjection;