[Home] [By Thread] [By Date] [Recent Entries]

  • From: "Don Park" <donpark@d...>
  • To: "'XMLDev list'" <xml-dev@i...>
  • Date: Wed, 15 Dec 1999 12:51:12 -0800

Tim Bray wrote:
> while (iterator.hasNext())
> {
>    whatever = (Whatever) iterator.next();
>    if (whatever.ns().equals(myNamespace))
>    doMyProcessing(whatever.name());
> }

composite name doesn't have to be taken apart.

String nss = "{" + myNamespace + "}";
while (iterator.hasNext()) {
  whatever = (Whatever) iterator.next();
  if (whatever.name().startsWith(myNamespace))
    doMyProcessing(whatever);
}

Not very efficient but workable.

David, how about introducing a new class: Name.

static final String FOO_NS = "http://www.foo.com/ns";
private Name foobar = new Name(FOO_NS, "bar");
private Name fooid = new Name(FOO_NS, "id");
...
void startElement(Name name, AttributeList atts) {
  if (name.equals(foobar)) {
    String id = atts.getValue(fooid);
  }
}

Best,

Don Park    -   mailto:donpark@d...
Docuverse   -   http://www.docuverse.com


xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@i...
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To unsubscribe, mailto:majordomo@i... the following message;
unsubscribe xml-dev
To subscribe to the digests, mailto:majordomo@i... the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@i...)



Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member