StartElement

package javax.xml.stream.events;

public interface StartElement extends XMLEvent {

  public QName     getName();
  public Iterator  getAttributes();
  public Iterator  getNamespaces();
  public Attribute getAttributeByName(QName name);
  public String    getNamespaceURI(String prefix);
  public NamespaceContext getNamespaceContext();

}

Previous | Next | Top | Cafe con Leche

Copyright 2000-2004 Elliotte Rusty Harold
elharo@metalab.unc.edu
Last Modified January 8, 2004