Rename non-api sub-namespace typedefs

This commit is contained in:
Peter Robins
2016-05-13 09:58:25 +00:00
parent 4626554a18
commit 176ddd3403
36 changed files with 315 additions and 324 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ goog.inherits(ol.layer.Layer, ol.layer.Base);
* Return `true` if the layer is visible, and if the passed resolution is
* between the layer's minResolution and maxResolution. The comparison is
* inclusive for `minResolution` and exclusive for `maxResolution`.
* @param {ol.layer.LayerState} layerState Layer state.
* @param {ol.LayerState} layerState Layer state.
* @param {number} resolution Resolution.
* @return {boolean} The layer is visible at the given resolution.
*/
+3 -3
View File
@@ -60,7 +60,7 @@ goog.inherits(ol.layer.Base, ol.Object);
/**
* @return {ol.layer.LayerState} Layer state.
* @return {ol.LayerState} Layer state.
*/
ol.layer.Base.prototype.getLayerState = function() {
var opacity = this.getOpacity();
@@ -93,9 +93,9 @@ ol.layer.Base.prototype.getLayersArray = goog.abstractMethod;
/**
* @param {Array.<ol.layer.LayerState>=} opt_states Optional list of layer
* @param {Array.<ol.LayerState>=} opt_states Optional list of layer
* states (to be modified in place).
* @return {Array.<ol.layer.LayerState>} List of layer states.
* @return {Array.<ol.LayerState>} List of layer states.
*/
ol.layer.Base.prototype.getLayerStatesArray = goog.abstractMethod;