SAX2: Namespace Processing and NSUtils helper class
Clark C. Evans
clark.evans at manhattanproject.com
Wed Dec 15 21:33:24 GMT 1999
On Wed, 15 Dec 1999, Clark C. Evans wrote:
> void startElement(SaxNode node);
Just thinking...
Or better yet, rather than using the flat Node
model DOM uses, have mix-ins.
interface Node {
unsigned short nodeType;
}
interface AttributeAxis {
NamedNodeMap attributes;
}
interface Name {
String nodeName;
String prefix;
String namespaceURI;
String localName;
}
interface Value {
String nodeValue;
}
interface AncestorAxis {
Node parentNode();
}
interface ElementNode extends Node, Name, AttributeAxis, AncestorAxis { }
interface AttributeNode extends Node, Name, Value {]
// for DOM...
interface Node extends Node, Name, AttributeAxis, AncestorAxis, etc...
{
// add child Axis, mutators, etc.
}
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev at ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To unsubscribe, mailto:majordomo at ic.ac.uk the following message;
unsubscribe xml-dev
To subscribe to the digests, mailto:majordomo at ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa at ic.ac.uk)
More information about the Xml-dev
mailing list