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

@@ -30,13 +30,13 @@ ol.DrawEventType = {
/**
* Triggered upon feature draw start
* @event ol.DrawEvent#drawstart
* @todo api
* @todo api stable
*/
DRAWSTART: 'drawstart',
/**
* Triggered upon feature draw end
* @event ol.DrawEvent#drawend
* @todo api
* @todo api stable
*/
DRAWEND: 'drawend'
};
@@ -57,7 +57,7 @@ ol.DrawEvent = function(type, feature) {
/**
* The feature being drawn.
* @type {ol.Feature}
* @todo api
* @todo api stable
*/
this.feature = feature;
@@ -74,7 +74,7 @@ goog.inherits(ol.DrawEvent, goog.events.Event);
* @extends {ol.interaction.Pointer}
* @fires ol.DrawEvent
* @param {olx.interaction.DrawOptions} options Options.
* @todo api
* @todo api stable
*/
ol.interaction.Draw = function(options) {