OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

 


 

   Re: SAX: org.xml.sax.AttributeMap

[ Lists Home | Date Index | Thread Index ]
  • From: Toby Speight <tms@ansa.co.uk>
  • To: "XML developers' list" <xml-dev@ic.ac.uk>
  • Date: 25 Feb 1998 10:42:35 +0000

David> David Megginson <URL:mailto:ak117@freenet.carleton.ca>

=> In article <199802250138.UAA00524@unready.microstar.com>, David
=> wrote:

David> David Megginson writes:

David>   package org.xml.sax;
David>
David>   public interface AttributeList {
David>
David>     //...
David>     public abstract String getType (int index);
David>     //...
David>
David>   }

We're returning one of a bounded, known set of values.  I'd prefer to
use an int for this type of thing, along with a set of constants.
I.e.

    public abstract String getType (int index);
    public static final int CDATA = 0;
    public static final int NMTOKEN = 1;
    // etc.

The only advantage a String has over this is that you can meaningfully
present it to the user as it is.  A disadvantage of String is that it is
computationally expensive to compare for equality (or equivalently, and
worse, to switch() on it).  Comparison becomes easier if one provides a
set of String constants and guarantees that returned values will test
equal with "==".  That is not too different to my suggestion of using
numeric constants.


Converting integers to human-readable Strings is easy:

   public static String[] typeNames = new String[/* some size */];
   static {
       typeNames[CDATA]   = "CDATA";
       typeNames[NMTOKEN] = "NMTOKEN";
       // etc.
   }

but I don't think this needs to be part of the interface.

One might wish to use short or char instead of int if storage space is
at a premium; I'm making no judgement on which arithmetic type is
best.

This proposal is not Java-specific.

-- 

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/
To (un)subscribe, mailto:majordomo@ic.ac.uk the following message;
(un)subscribe 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)





 

News | XML in Industry | Calendar | XML Registry
Marketplace | Resources | MyXML.org | Sponsors | Privacy Statement

Copyright 2001 XML.org. This site is hosted by OASIS