[
Lists Home |
Date Index |
Thread Index
]
- From: "Clark C. Evans" <clark.evans@manhattanproject.com>
- To: "Clark C. Evans" <clark.evans@manhattanproject.com>
- Date: Wed, 15 Dec 1999 04:36:15 -0500 (EST)
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@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@ic.ac.uk the following message;
unsubscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)
|