Community Map Builder 27 Apr 2008

Transaction.js

Summary

No overview generated for 'Transaction.js'


Class Summary
Transaction  

/*
License: LGPL as per: http://www.gnu.org/copyleft/lesser.html
$Id: Transaction.js 3657 2007-11-29 09:04:26Z gjvoosten $
*/

// Ensure this object's dependancies are loaded.
mapbuilder.loadScript(baseDir+"/model/ModelBase.js");

/**
 * Stores a WFS Transaction reponse as defined by the Open Geospatial Consortium
 * (http://www.opengeospatial.org/) (WFS).  
 * Extends ModelBase, which extends Listener.
 *
 * Listeners implemented:
 *
 * @constructor
 * @base ModelBase
 * @author Mike Adair
 * @param modelNode Pointer to the xml node for this model from the config file.
 * @param parent    The parent model for the object.
 */
function Transaction(modelNode, parent) {
  // Inherit the ModelBase functions and parameters
  ModelBase.apply(this, new Array(modelNode, parent));
  this.namespace = "xmlns:gml='http://www.opengis.net/gml' xmlns:wfs='http://www.opengis.net/wfs'";

}


Community Map Builder 27 Apr 2008

Documentation generated by JSDoc on Sun Apr 27 20:30:54 2008