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
+6
View File
@@ -9,6 +9,7 @@ goog.require('ol.style.Image');
* @constructor
* @param {olx.style.StyleOptions=} opt_options Style options.
* @todo stability experimental
* @todo api
*/
ol.style.Style = function(opt_options) {
@@ -49,6 +50,7 @@ ol.style.Style = function(opt_options) {
/**
* @return {ol.style.Fill} Fill style.
* @todo api
*/
ol.style.Style.prototype.getFill = function() {
return this.fill_;
@@ -57,6 +59,7 @@ ol.style.Style.prototype.getFill = function() {
/**
* @return {ol.style.Image} Image style.
* @todo api
*/
ol.style.Style.prototype.getImage = function() {
return this.image_;
@@ -65,6 +68,7 @@ ol.style.Style.prototype.getImage = function() {
/**
* @return {ol.style.Stroke} Stroke style.
* @todo api
*/
ol.style.Style.prototype.getStroke = function() {
return this.stroke_;
@@ -73,6 +77,7 @@ ol.style.Style.prototype.getStroke = function() {
/**
* @return {ol.style.Text} Text style.
* @todo api
*/
ol.style.Style.prototype.getText = function() {
return this.text_;
@@ -81,6 +86,7 @@ ol.style.Style.prototype.getText = function() {
/**
* @return {number|undefined} ZIndex.
* @todo api
*/
ol.style.Style.prototype.getZIndex = function() {
return this.zIndex_;