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

@@ -5,6 +5,7 @@ goog.provide('ol.style.Text');
/**
* @constructor
* @param {olx.style.TextOptions=} opt_options Options.
* @todo api
*/
ol.style.Text = function(opt_options) {
@@ -74,6 +75,7 @@ ol.style.Text = function(opt_options) {
/**
* @return {string|undefined} Font.
* @todo api
*/
ol.style.Text.prototype.getFont = function() {
return this.font_;
@@ -98,6 +100,7 @@ ol.style.Text.prototype.getOffsetY = function() {
/**
* @return {ol.style.Fill} Fill style.
* @todo api
*/
ol.style.Text.prototype.getFill = function() {
return this.fill_;
@@ -106,6 +109,7 @@ ol.style.Text.prototype.getFill = function() {
/**
* @return {number|undefined} Rotation.
* @todo api
*/
ol.style.Text.prototype.getRotation = function() {
return this.rotation_;
@@ -114,6 +118,7 @@ ol.style.Text.prototype.getRotation = function() {
/**
* @return {number|undefined} Scale.
* @todo api
*/
ol.style.Text.prototype.getScale = function() {
return this.scale_;
@@ -122,6 +127,7 @@ ol.style.Text.prototype.getScale = function() {
/**
* @return {ol.style.Stroke} Stroke style.
* @todo api
*/
ol.style.Text.prototype.getStroke = function() {
return this.stroke_;
@@ -130,6 +136,7 @@ ol.style.Text.prototype.getStroke = function() {
/**
* @return {string|undefined} Text.
* @todo api
*/
ol.style.Text.prototype.getText = function() {
return this.text_;
@@ -138,6 +145,7 @@ ol.style.Text.prototype.getText = function() {
/**
* @return {string|undefined} Text align.
* @todo api
*/
ol.style.Text.prototype.getTextAlign = function() {
return this.textAlign_;
@@ -146,6 +154,7 @@ ol.style.Text.prototype.getTextAlign = function() {
/**
* @return {string|undefined} Text baseline.
* @todo api
*/
ol.style.Text.prototype.getTextBaseline = function() {
return this.textBaseline_;