Add ol.format.XML

This commit is contained in:
Frederic Junod
2014-02-12 10:05:58 +01:00
parent 55a8f9a5ec
commit 13698d0d06

View File

@@ -0,0 +1,45 @@
goog.provide('ol.format.XML');
goog.require('goog.asserts');
goog.require('ol.xml');
/**
* @constructor
*/
ol.format.XML = function() {
};
/**
* @param {Document|Node|string} source Source.
* @return {Object}
*/
ol.format.XML.prototype.read = function(source) {
if (ol.xml.isDocument(source)) {
return this.readFromDocument(/** @type {Document} */ (source));
} else if (ol.xml.isNode(source)) {
return this.readFromNode(/** @type {Node} */ (source));
} else if (goog.isString(source)) {
var doc = ol.xml.load(source);
return this.readFromDocument(doc);
} else {
goog.asserts.fail();
return null;
}
};
/**
* @param {Document} doc Document.
* @return {Object}
*/
ol.format.XML.prototype.readFromDocument = goog.abstractMethod;
/**
* @param {Node} node Node.
* @return {Object}
*/
ol.format.XML.prototype.readFromNode = goog.abstractMethod;