SAX2 Namespace Support

John Aldridge john.aldridge at informatix.co.uk
Wed Jan 5 17:22:53 GMT 2000


At 10:12 05/01/00 -0500, David Megginson <david at megginson.com> wrote:
>John Aldridge <john.aldridge at informatix.co.uk> writes:
>
>In principle (the principle of least surprise), it's very bad
>behaviour for two objects to be == in C++ or equals() in Java if any
>of their publicly-accessible fields differ.  Think of sets, for
>example.

OK, let me try again...

---------

class QName {
public:
    wstring nsURI () const;        // http://www.w3c.org/1999/xhtml
    wstring localPart () const;    // p
    bool operator== (const QName &rhs) const;
};

class ElementInfo {
    QName name () const;
    wstring nsPrefix () const;     // html
    wstring prefixedName () const; // html:p
    AttributeList &attributes () const;
};

void startElement (const ElementInfo &info) throws SAXException;

----------

Advantages:

(a) All values can be lazily evaluated if this speeds things up (i.e. the
QName and ElementInfo classes need contain no more than a raw pointer into
the parser's internal data structures).

(b) ElementInfo can be extended later to add extra methods without source
level incompatibility.

(c) QName has no public fields which do not participate in equality
testing, yet the equality operator has the "right" behaviour.
-- 
Cheers,
John

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