Merge pull request #2178 from probins/classdesc

Use @classdesc notation.
This commit is contained in:
Tim Schaub
2014-06-09 11:18:14 -06:00
114 changed files with 372 additions and 43 deletions

View File

@@ -5,7 +5,9 @@ goog.require('goog.functions');
/**
* ol.format.Feature subclasses provide the ability to decode and encode
* @classdesc
* Abstract base class for feature formats.
* {ol.format.Feature} subclasses provide the ability to decode and encode
* {@link ol.Feature} objects from a variety of commonly used geospatial
* file formats. See the documentation for each format for more details.
*

View File

@@ -21,7 +21,8 @@ goog.require('ol.proj');
/**
* Provide access to features stored in the GeoJSON format.
* @classdesc
* Feature format for reading and writing data in the GeoJSON format.
*
* @constructor
* @extends {ol.format.JSONFeature}

View File

@@ -24,6 +24,9 @@ goog.require('ol.xml');
/**
* @classdesc
* Feature format for reading and writing data in the GML format.
*
* @constructor
* @param {olx.format.GMLOptions=} opt_options
* Optional configuration object.

View File

@@ -17,6 +17,9 @@ goog.require('ol.xml');
/**
* @classdesc
* Feature format for reading and writing data in the GPX format.
*
* @constructor
* @extends {ol.format.XMLFeature}
* @todo api

View File

@@ -22,6 +22,9 @@ ol.format.IGCZ = {
/**
* @classdesc
* Feature format for `*.igc` flight recording files.
*
* @constructor
* @extends {ol.format.TextFeature}
* @param {olx.format.IGCOptions=} opt_options Options.

View File

@@ -9,6 +9,9 @@ goog.require('ol.format.FormatType');
/**
* @classdesc
* Abstract base class for JSON feature formats.
*
* @constructor
* @extends {ol.format.Feature}
*/

View File

@@ -51,6 +51,9 @@ ol.format.KMLGxTrackObject_;
/**
* @classdesc
* Feature format for reading and writing data in the KML format.
*
* @constructor
* @extends {ol.format.XMLFeature}
* @param {olx.format.KMLOptions=} opt_options Options.

View File

@@ -16,6 +16,9 @@ goog.require('ol.xml');
/**
* @classdesc
* Feature format for reading and writing data in the OSMXML format.
*
* @constructor
* @extends {ol.format.XMLFeature}
* @todo api

View File

@@ -7,6 +7,9 @@ goog.require('ol.format.FormatType');
/**
* @classdesc
* Abstract base class for text feature formats.
*
* @constructor
* @extends {ol.format.Feature}
*/

View File

@@ -15,6 +15,9 @@ goog.require('ol.proj');
/**
* @classdesc
* Feature format for reading and writing data in the TopoJSON format.
*
* @constructor
* @extends {ol.format.JSONFeature}
* @param {olx.format.TopoJSONOptions=} opt_options Options.

View File

@@ -13,6 +13,9 @@ goog.require('ol.xml');
/**
* @classdesc
* Feature format for reading and writing data in the WFS format.
*
* @constructor
* @param {olx.format.WFSOptions=} opt_options
* Optional configuration object.

View File

@@ -13,6 +13,9 @@ goog.require('ol.xml');
/**
* @classdesc
* Format for reading WMS capabilities data
*
* @constructor
* @extends {ol.format.XML}
* @todo api

View File

@@ -10,6 +10,9 @@ goog.require('ol.xml');
/**
* @classdesc
* Abstract base class for XML feature formats.
*
* @constructor
* @extends {ol.format.Feature}
*/

View File

@@ -6,6 +6,9 @@ goog.require('ol.xml');
/**
* @classdesc
* Generic format for reading non-feature XML data
*
* @constructor
*/
ol.format.XML = function() {