Project

General

Profile

1
/*
2
License: LGPL as per: http://www.gnu.org/copyleft/lesser.html
3
$Id$
4
*/
5

    
6
/**
7
 * Stores a WFS DescribeFeatureType request reponse as defined by the Open GIS Consortium
8
 * http://opengis.org (WFS).  
9
 *
10
 * @constructor
11
 * @base ModelBase
12
 * @author Mike Adair
13
 * @param modelNode Pointer to the xml node for this model from the config file.
14
 * @param parent    The parent model for the object.
15
 */
16
function FeatureTypeSchema(modelNode, parent) {
17
  // Inherit the ModelBase functions and parameters
18
  ModelBase.apply(this, new Array(modelNode, parent));
19
}
20

    
(5-5/18)