Use @api annotation instead of @todo api

This commit is contained in:
Tim Schaub
2014-07-05 15:41:14 -04:00
parent 297503e7c9
commit 4cf5ab4620
155 changed files with 759 additions and 757 deletions
+6 -6
View File
@@ -11,7 +11,7 @@ goog.require('ol.style.Image');
*
* @constructor
* @param {olx.style.StyleOptions=} opt_options Style options.
* @todo api
* @api
*/
ol.style.Style = function(opt_options) {
@@ -52,7 +52,7 @@ ol.style.Style = function(opt_options) {
/**
* @return {ol.style.Fill} Fill style.
* @todo api
* @api
*/
ol.style.Style.prototype.getFill = function() {
return this.fill_;
@@ -61,7 +61,7 @@ ol.style.Style.prototype.getFill = function() {
/**
* @return {ol.style.Image} Image style.
* @todo api
* @api
*/
ol.style.Style.prototype.getImage = function() {
return this.image_;
@@ -70,7 +70,7 @@ ol.style.Style.prototype.getImage = function() {
/**
* @return {ol.style.Stroke} Stroke style.
* @todo api
* @api
*/
ol.style.Style.prototype.getStroke = function() {
return this.stroke_;
@@ -79,7 +79,7 @@ ol.style.Style.prototype.getStroke = function() {
/**
* @return {ol.style.Text} Text style.
* @todo api
* @api
*/
ol.style.Style.prototype.getText = function() {
return this.text_;
@@ -88,7 +88,7 @@ ol.style.Style.prototype.getText = function() {
/**
* @return {number|undefined} ZIndex.
* @todo api
* @api
*/
ol.style.Style.prototype.getZIndex = function() {
return this.zIndex_;