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
+7 -7
View File
@@ -10,7 +10,7 @@ goog.require('ol.color');
*
* @constructor
* @param {olx.style.StrokeOptions=} opt_options Options.
* @todo api
* @api
*/
ol.style.Stroke = function(opt_options) {
@@ -56,7 +56,7 @@ ol.style.Stroke = function(opt_options) {
/**
* @return {ol.Color|string} Color.
* @todo api
* @api
*/
ol.style.Stroke.prototype.getColor = function() {
return this.color_;
@@ -65,7 +65,7 @@ ol.style.Stroke.prototype.getColor = function() {
/**
* @return {string|undefined} Line cap.
* @todo api
* @api
*/
ol.style.Stroke.prototype.getLineCap = function() {
return this.lineCap_;
@@ -74,7 +74,7 @@ ol.style.Stroke.prototype.getLineCap = function() {
/**
* @return {Array.<number>} Line dash.
* @todo api
* @api
*/
ol.style.Stroke.prototype.getLineDash = function() {
return this.lineDash_;
@@ -83,7 +83,7 @@ ol.style.Stroke.prototype.getLineDash = function() {
/**
* @return {string|undefined} Line join.
* @todo api
* @api
*/
ol.style.Stroke.prototype.getLineJoin = function() {
return this.lineJoin_;
@@ -92,7 +92,7 @@ ol.style.Stroke.prototype.getLineJoin = function() {
/**
* @return {number|undefined} Miter limit.
* @todo api
* @api
*/
ol.style.Stroke.prototype.getMiterLimit = function() {
return this.miterLimit_;
@@ -101,7 +101,7 @@ ol.style.Stroke.prototype.getMiterLimit = function() {
/**
* @return {number|undefined} Width.
* @todo api
* @api
*/
ol.style.Stroke.prototype.getWidth = function() {
return this.width_;