]> dev.renevier.net Git - syp.git/blob - openlayers/lib/OpenLayers/Format/WFSCapabilities/v1_1_0.js
initial commit
[syp.git] / openlayers / lib / OpenLayers / Format / WFSCapabilities / v1_1_0.js
1 /**
2  * @requires OpenLayers/Format/WFSCapabilities/v1.js
3  */
4
5 /**
6  * Class: OpenLayers.Format.WFSCapabilities/v1_1_0
7  * Read WFS Capabilities version 1.1.0.
8  * 
9  * Inherits from:
10  *  - <OpenLayers.Format.WFSCapabilities>
11  */
12 OpenLayers.Format.WFSCapabilities.v1_1_0 = OpenLayers.Class(
13     OpenLayers.Format.WFSCapabilities.v1, {
14     
15     /**
16      * Constructor: OpenLayers.Format.WFSCapabilities.v1_1_0
17      * Create a new parser for WFS capabilities version 1.1.0.
18      *
19      * Parameters:
20      * options - {Object} An optional object whose properties will be set on
21      *     this instance.
22      */
23     initialize: function(options) {
24         OpenLayers.Format.WFSCapabilities.v1.prototype.initialize.apply(
25             this, [options]
26         );
27     },
28
29     CLASS_NAME: "OpenLayers.Format.WFSCapabilities.v1_1_0" 
30
31 });