Merge pull request #2597 from elemoine/apistable-attribution

Add @api stable annotations for ol.Attribution
This commit is contained in:
Éric Lemoine
2014-08-22 18:02:20 +02:00
2 changed files with 3 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ var olx;
/**
* @typedef {{html: string,
* tileRanges: (Object.<string, Array.<ol.TileRange>>|undefined)}}
* @api stable
* @api
*/
olx.AttributionOptions;

View File

@@ -23,7 +23,7 @@ goog.require('ol.TileRange');
* @constructor
* @param {olx.AttributionOptions} options Attribution options.
* @struct
* @api
* @api stable
*/
ol.Attribution = function(options) {
@@ -45,7 +45,7 @@ ol.Attribution = function(options) {
/**
* @return {string} HTML.
* @api
* @api stable
*/
ol.Attribution.prototype.getHTML = function() {
return this.html_;