Add abstract tag at class level
This commit is contained in:
committed by
Guillaume Beraudo
parent
2e63590791
commit
546fc97cd4
@@ -15,6 +15,7 @@ goog.require('ol.proj');
|
||||
* file formats. See the documentation for each format for more details.
|
||||
*
|
||||
* @constructor
|
||||
* @abstract
|
||||
* @api stable
|
||||
*/
|
||||
ol.format.Feature = function() {
|
||||
|
||||
@@ -31,6 +31,7 @@ goog.require('ol.xml');
|
||||
* ol.format.GML3.
|
||||
*
|
||||
* @constructor
|
||||
* @abstract
|
||||
* @param {olx.format.GMLOptions=} opt_options
|
||||
* Optional configuration object.
|
||||
* @extends {ol.format.XMLFeature}
|
||||
|
||||
@@ -12,6 +12,7 @@ goog.require('ol.format.FormatType');
|
||||
* Base class for JSON feature formats.
|
||||
*
|
||||
* @constructor
|
||||
* @abstract
|
||||
* @extends {ol.format.Feature}
|
||||
*/
|
||||
ol.format.JSONFeature = function() {
|
||||
|
||||
@@ -12,6 +12,7 @@ goog.require('ol.format.FormatType');
|
||||
* Base class for text feature formats.
|
||||
*
|
||||
* @constructor
|
||||
* @abstract
|
||||
* @extends {ol.format.Feature}
|
||||
*/
|
||||
ol.format.TextFeature = function() {
|
||||
|
||||
@@ -8,6 +8,7 @@ goog.require('ol.xml');
|
||||
* Generic format for reading non-feature XML data
|
||||
*
|
||||
* @constructor
|
||||
* @abstract
|
||||
* @struct
|
||||
*/
|
||||
ol.format.XML = function() {
|
||||
|
||||
@@ -14,6 +14,7 @@ goog.require('ol.xml');
|
||||
* Base class for XML feature formats.
|
||||
*
|
||||
* @constructor
|
||||
* @abstract
|
||||
* @extends {ol.format.Feature}
|
||||
*/
|
||||
ol.format.XMLFeature = function() {
|
||||
|
||||
Reference in New Issue
Block a user