Add stable tags to interactions

This commit is contained in:
tsauerwein
2014-06-20 18:22:53 +02:00
parent b0a1444da0
commit b8ab6fd771
16 changed files with 28 additions and 28 deletions

View File

@@ -28,13 +28,13 @@ ol.DragBoxEventType = {
/**
* Triggered upon drag box start.
* @event ol.DragBoxEvent#boxstart
* @todo api
* @todo api stable
*/
BOXSTART: 'boxstart',
/**
* Triggered upon drag box end.
* @event ol.DragBoxEvent#boxend
* @todo api
* @todo api stable
*/
BOXEND: 'boxend'
};
@@ -58,7 +58,7 @@ ol.DragBoxEvent = function(type, coordinate) {
* The coordinate of the drag event.
* @const
* @type {ol.Coordinate}
* @todo api
* @todo api stable
*/
this.coordinate = coordinate;
@@ -79,7 +79,7 @@ goog.inherits(ol.DragBoxEvent, goog.events.Event);
* @extends {ol.interaction.Pointer}
* @fires ol.DragBoxEvent
* @param {olx.interaction.DragBoxOptions=} opt_options Options.
* @todo api
* @todo api stable
*/
ol.interaction.DragBox = function(opt_options) {
@@ -131,7 +131,7 @@ ol.interaction.DragBox.prototype.handlePointerDrag = function(mapBrowserEvent) {
/**
* Returns geometry of last drawn box.
* @return {ol.geom.Geometry} Geometry.
* @todo api
* @todo api stable
*/
ol.interaction.DragBox.prototype.getGeometry = function() {
return this.box_.getGeometry();