XMLReader.js

Summary

No overview generated for 'XMLReader.js'


Class Summary
XMLReader  

/**
 *	@class
 *	@constructor
 *	@param {string} url
 */
function XMLReader(url) {}

//properties
/**
 *	@type number
 */
XMLReader.prototype.attributeCount = 0;

/**
 *	@type string
 */
XMLReader.prototype.baseURI = null;

/**
 *	@type number
 */
XMLReader.prototype.depth = 0;

/**
 *	@type boolean
 */
XMLReader.prototype.EOF = false;

/**
 *	@type boolean
 */
XMLReader.prototype.hasAttributes = false;

/**
 *	@type boolean
 */
XMLReader.prototype.hasValue = false;

/**
 *	@type boolean
 */
XMLReader.prototype.isDefault = false;

/**
 *	@type boolean
 */
XMLReader.prototype.isEmptyElement = false;

/**
 *	@type string
 */
XMLReader.prototype.localName = null;

/**
 *	@type string
 */
XMLReader.prototype.name = null;

/**
 *	@type string
 */
XMLReader.prototype.namespaceURI = null;

/**
 *	@type number
 */
XMLReader.prototype.nodeType = 0;

/**
 *	@type string
 */
XMLReader.prototype.prefix = null;

/**
 *	@type string
 */
XMLReader.prototype.quoteChar = null;

/**
 *	@type number
 */
XMLReader.prototype.readState = 0;

/**
 *	@type string
 */
XMLReader.prototype.value = null;

/**
 *	@type string
 */
XMLReader.prototype.XMLLang = null;


/**
 *	@throws
 *	@param {string} propName
 *	@param {boolean} propValue
 *	@returns {void}
 */
XMLReader.prototype.setProperty = function(propName, propValue) {};

/**
 *	@param {string} foobar
 *	@returns {boolean}
 */
XMLReader.prototype.getProperty = function(propName) {};

/**
 *	@throws
 *	@param {string} foobar
 *	@returns {boolean}
 */
XMLReader.prototype.read = function() {};

/**
 *	@returns {string}
 */
XMLReader.prototype.readInnerXML = function() {};

/**
 *	@returns {string}
 */
XMLReader.prototype.readOuterXML = function() {};

/**
 *	@returns {string}
 */
XMLReader.prototype.readString = function() {};

/**
 *	@throws
 *	@returns {boolean}
 */
XMLReader.prototype.readAttributeValue = function() {};

/**
 *	@throws
 *	@returns {boolean}
 */
XMLReader.prototype.moveToElement = function() {};

/**
 *	@throws
 *	@param {string} qName
 *	@returns {boolean}
 */
XMLReader.prototype.moveToAttribute = function(qName) {};

/**
 *	@throws
 *	@param {string} localName
 *	@param {string} nsURI
 *	@returns {boolean}
 */
XMLReader.prototype.moveToAttributeNS = function(localName, nsURI) {};

/**
 *	@throws
 *	@returns {boolean}
 */
XMLReader.prototype.moveToFirstAttribute = function() {};

/**
 *	@throws
 *	@returns {void}
 */
XMLReader.prototype.moveToNextAttribute = function() {};

/**
 *	@throws
 *	@param {number} index
 *	@returns {void}
 */
XMLReader.prototype.moveToAttributeAtIndex = function(index) {};

/**
 *	@returns {void}
 */
XMLReader.prototype.close = function() {};

/**
 *	@param {string} qName
 *	@returns {string}
 */
XMLReader.prototype.getAttribute = function(qName) {};

/**
 *	@param {string} localName
 *	@param {string} nsURI
 *	@returns {string}
 */
XMLReader.prototype.getAttributeNS = function(localName, nsURI) {};

/**
 *	@param {number} index
 *	@returns {string}
 */
XMLReader.prototype.getAttributeAtIndex = function(index) {};

/**
 *	@throws
 *	@param {string} foobar
 *	@returns {void}
 */
XMLReader.prototype.isValid = function() {};

/**
 *	@throws
 *	@param {string} foobar
 *	@returns {void}
 */
XMLReader.prototype.normalization = function() {};

/**
 *	@returns {string}
 */
XMLReader.prototype.encoding = function() {};

/**
 *	@throws
 *	@returns {boolean}
 */
XMLReader.prototype.skip = function() {};

/**
 *	@param {string} prefix
 *	@returns {string}
 */
XMLReader.prototype.lookupNamespace = function(prefix) {};
	
/**
 *	@returns {string} <tt>"[object XMLReader]"</tt>
 */
XMLReader.prototype.toString = function() {};


Documentation generated by JSDoc on Wed Aug 1 10:08:42 2007