~mortenoh/+junk/dhis2-detailed-import-export

« back to all changes in this revision

Viewing changes to gis/dhis-gis-geostat/mfbase/openlayers/lib/OpenLayers/Format/Filter/v1_0_0.js

  • Committer: larshelge at gmail
  • Date: 2009-03-03 16:46:36 UTC
  • Revision ID: larshelge@gmail.com-20090303164636-2sjlrquo7ib1gf7r
Initial check-in

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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/Filter/v1.js
 
7
 */
 
8
 
 
9
/**
 
10
 * Class: OpenLayers.Format.Filter.v1_0_0
 
11
 * Write ogc:Filter version 1.0.0.
 
12
 * 
 
13
 * Inherits from:
 
14
 *  - <OpenLayers.Format.Filter.v1>
 
15
 */
 
16
OpenLayers.Format.Filter.v1_0_0 = OpenLayers.Class(
 
17
    OpenLayers.Format.Filter.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/ogc/filter/1.0.0/filter.xsd
 
28
     */
 
29
    schemaLocation: "http://www.opengis.net/ogc/filter/1.0.0/filter.xsd",
 
30
 
 
31
    /**
 
32
     * Constructor: OpenLayers.Format.Filter.v1_0_0
 
33
     * Instances of this class are not created directly.  Use the
 
34
     *     <OpenLayers.Format.Filter> constructor instead.
 
35
     *
 
36
     * Parameters:
 
37
     * options - {Object} An optional object whose properties will be set on
 
38
     *     this instance.
 
39
     */
 
40
    initialize: function(options) {
 
41
        OpenLayers.Format.Filter.v1.prototype.initialize.apply(
 
42
            this, [options]
 
43
        );
 
44
    },
 
45
 
 
46
    CLASS_NAME: "OpenLayers.Format.Filter.v1_0_0" 
 
47
 
 
48
});
 
 
b'\\ No newline at end of file'