]> dev.renevier.net Git - syp.git/blob - openlayers/lib/OpenLayers/Format/WMC/v1_0_0.js
initial commit
[syp.git] / openlayers / lib / OpenLayers / Format / WMC / v1_0_0.js
1 /* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD
2  * license.  See http://svn.openlayers.org/trunk/openlayers/license.txt for the
3  * full text of the license. */
4
5 /**
6  * @requires OpenLayers/Format/WMC/v1.js
7  */
8
9 /**
10  * Class: OpenLayers.Format.WMC.v1_0_0
11  * Read and write WMC version 1.0.0.
12  * 
13  * Inherits from:
14  *  - <OpenLayers.Format.WMC.v1>
15  */
16 OpenLayers.Format.WMC.v1_0_0 = OpenLayers.Class(
17     OpenLayers.Format.WMC.v1, {
18     
19     /**
20      * Constant: VERSION
21      * {String} 1.0.0
22      */
23     VERSION: "1.0.0",
24     
25     /**
26      * Property: schemaLocation
27      * {String} http://www.opengis.net/context
28      *     http://schemas.opengis.net/context/1.0.0/context.xsd
29      */
30     schemaLocation: "http://www.opengis.net/context http://schemas.opengis.net/context/1.0.0/context.xsd",
31
32     /**
33      * Constructor: OpenLayers.Format.WMC.v1_0_0
34      * Instances of this class are not created directly.  Use the
35      *     <OpenLayers.Format.WMC> constructor instead.
36      *
37      * Parameters:
38      * options - {Object} An optional object whose properties will be set on
39      *     this instance.
40      */
41     initialize: function(options) {
42         OpenLayers.Format.WMC.v1.prototype.initialize.apply(
43             this, [options]
44         );
45     },
46
47     CLASS_NAME: "OpenLayers.Format.WMC.v1_0_0" 
48
49 });