Use @observable annotation instead of @todo observable

This commit is contained in:
Tim Schaub
2014-07-05 15:51:13 -04:00
parent fd659d63e9
commit d99a61545c
20 changed files with 82 additions and 97 deletions

View File

@@ -58,7 +58,7 @@ goog.inherits(ol.dom.Input, ol.Object);
/**
* If the input is a checkbox, return whether or not the checkbox is checked.
* @return {boolean|undefined} The checked state of the Input.
* @todo observable
* @observable
* @api
*/
ol.dom.Input.prototype.getChecked = function() {
@@ -73,7 +73,7 @@ goog.exportProperty(
/**
* Get the value of the input.
* @return {string|undefined} The value of the Input.
* @todo observable
* @observable
* @api
*/
ol.dom.Input.prototype.getValue = function() {
@@ -88,7 +88,7 @@ goog.exportProperty(
/**
* Sets the value of the input.
* @param {string} value The value of the Input.
* @todo observable
* @observable
* @api
*/
ol.dom.Input.prototype.setValue = function(value) {
@@ -103,7 +103,7 @@ goog.exportProperty(
/**
* Set whether or not a checkbox is checked.
* @param {boolean} checked The checked state of the Input.
* @todo observable
* @observable
* @api
*/
ol.dom.Input.prototype.setChecked = function(checked) {