Annotations for exports

This commit is contained in:
Tim Schaub
2014-04-08 13:40:35 -06:00
parent 457cfe851a
commit fb497f5288
243 changed files with 456 additions and 451 deletions

View File

@@ -7,6 +7,7 @@ goog.require('ol.color');
/**
* @constructor
* @param {olx.style.StrokeOptions=} opt_options Options.
* @todo api
*/
ol.style.Stroke = function(opt_options) {
@@ -52,6 +53,7 @@ ol.style.Stroke = function(opt_options) {
/**
* @return {ol.Color|string} Color.
* @todo api
*/
ol.style.Stroke.prototype.getColor = function() {
return this.color_;
@@ -60,6 +62,7 @@ ol.style.Stroke.prototype.getColor = function() {
/**
* @return {string|undefined} Line cap.
* @todo api
*/
ol.style.Stroke.prototype.getLineCap = function() {
return this.lineCap_;
@@ -68,6 +71,7 @@ ol.style.Stroke.prototype.getLineCap = function() {
/**
* @return {Array.<number>} Line dash.
* @todo api
*/
ol.style.Stroke.prototype.getLineDash = function() {
return this.lineDash_;
@@ -76,6 +80,7 @@ ol.style.Stroke.prototype.getLineDash = function() {
/**
* @return {string|undefined} Line join.
* @todo api
*/
ol.style.Stroke.prototype.getLineJoin = function() {
return this.lineJoin_;
@@ -84,6 +89,7 @@ ol.style.Stroke.prototype.getLineJoin = function() {
/**
* @return {number|undefined} Miter limit.
* @todo api
*/
ol.style.Stroke.prototype.getMiterLimit = function() {
return this.miterLimit_;
@@ -92,6 +98,7 @@ ol.style.Stroke.prototype.getMiterLimit = function() {
/**
* @return {number|undefined} Width.
* @todo api
*/
ol.style.Stroke.prototype.getWidth = function() {
return this.width_;