From 6ed414e8f78da23861d0dc9136a297014349f782 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Tue, 5 Sep 2017 08:07:10 +0200 Subject: [PATCH] Add missing 'abstract' tag in ol.format.filter classes --- src/ol/format/filter/and.js | 1 + src/ol/format/filter/comparison.js | 1 + src/ol/format/filter/comparisonbinary.js | 1 + src/ol/format/filter/filter.js | 1 + src/ol/format/filter/logicalnary.js | 1 + src/ol/format/filter/spatial.js | 1 + 6 files changed, 6 insertions(+) diff --git a/src/ol/format/filter/and.js b/src/ol/format/filter/and.js index aa173c2aa9..52c9468a7a 100644 --- a/src/ol/format/filter/and.js +++ b/src/ol/format/filter/and.js @@ -8,6 +8,7 @@ goog.require('ol.format.filter.LogicalNary'); * Represents a logical `` operator between two or more filter conditions. * * @constructor + * @abstract * @param {...ol.format.filter.Filter} conditions Conditions. * @extends {ol.format.filter.LogicalNary} * @api diff --git a/src/ol/format/filter/comparison.js b/src/ol/format/filter/comparison.js index dc9a069a19..86de8ab7cf 100644 --- a/src/ol/format/filter/comparison.js +++ b/src/ol/format/filter/comparison.js @@ -10,6 +10,7 @@ goog.require('ol.format.filter.Filter'); * Base class for WFS GetFeature property comparison filters. * * @constructor + * @abstract * @param {!string} tagName The XML tag name for this filter. * @param {!string} propertyName Name of the context property to compare. * @extends {ol.format.filter.Filter} diff --git a/src/ol/format/filter/comparisonbinary.js b/src/ol/format/filter/comparisonbinary.js index 45a3d815a9..f52a6810e2 100644 --- a/src/ol/format/filter/comparisonbinary.js +++ b/src/ol/format/filter/comparisonbinary.js @@ -10,6 +10,7 @@ goog.require('ol.format.filter.Comparison'); * Base class for WFS GetFeature property binary comparison filters. * * @constructor + * @abstract * @param {!string} tagName The XML tag name for this filter. * @param {!string} propertyName Name of the context property to compare. * @param {!(string|number)} expression The value to compare. diff --git a/src/ol/format/filter/filter.js b/src/ol/format/filter/filter.js index 48c9f0f3b8..847994b4e0 100644 --- a/src/ol/format/filter/filter.js +++ b/src/ol/format/filter/filter.js @@ -7,6 +7,7 @@ goog.provide('ol.format.filter.Filter'); * Base class for WFS GetFeature filters. * * @constructor + * @abstract * @param {!string} tagName The XML tag name for this filter. * @struct * @api diff --git a/src/ol/format/filter/logicalnary.js b/src/ol/format/filter/logicalnary.js index 530c5e4d4f..748bb8f6af 100644 --- a/src/ol/format/filter/logicalnary.js +++ b/src/ol/format/filter/logicalnary.js @@ -11,6 +11,7 @@ goog.require('ol.format.filter.Filter'); * Base class for WFS GetFeature n-ary logical filters. * * @constructor + * @abstract * @param {!string} tagName The XML tag name for this filter. * @param {...ol.format.filter.Filter} conditions Conditions. * @extends {ol.format.filter.Filter} diff --git a/src/ol/format/filter/spatial.js b/src/ol/format/filter/spatial.js index c63a2a8944..016fe432bd 100644 --- a/src/ol/format/filter/spatial.js +++ b/src/ol/format/filter/spatial.js @@ -11,6 +11,7 @@ goog.require('ol.format.filter.Filter'); * relates to a given geometry. * * @constructor + * @abstract * @param {!string} tagName The XML tag name for this filter. * @param {!string} geometryName Geometry name to use. * @param {!ol.geom.Geometry} geometry Geometry.