|
Community Map Builder 21 Aug 2007 | |||||||
PREV NEXT | FRAMES NO FRAMES |
No overview generated for 'Transaction.js'
Class Summary | |
Transaction |
/* License: LGPL as per: http://www.gnu.org/copyleft/lesser.html $Id: Transaction.js 3091 2007-08-09 12:21:54Z gjvoosten $ */ // Ensure this object's dependancies are loaded. mapbuilder.loadScript(baseDir+"/model/ModelBase.js"); /** * Stores a WFS Transaction reponse as defined by the Open GIS Consortium * http://opengis.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 21 Aug 2007 | |||||||
PREV NEXT | FRAMES NO FRAMES |