Methods Summary |
---|
public void | emptyElement(com.sun.org.apache.xerces.internal.xni.QName element, com.sun.org.apache.xerces.internal.xni.XMLAttributes attributes, com.sun.org.apache.xerces.internal.xni.Augmentations augs)
startElement(element,attributes,augs);
endElement(element,augs);
|
public void | endElement(com.sun.org.apache.xerces.internal.xni.QName element, com.sun.org.apache.xerces.internal.xni.Augmentations augs)
try {
fCurrentAugs = augs;
super.endElement(element, augs);
} finally {
fCurrentAugs = null;
}
|
public com.sun.org.apache.xerces.internal.xni.XMLAttributes | getCurrentAttributes()
if( fCurrentAtts==null ) throw new IllegalStateException();
return fCurrentAtts;
|
public com.sun.org.apache.xerces.internal.xni.Augmentations | getCurrentAugmentation()
return fCurrentAugs;
|
public void | startElement(com.sun.org.apache.xerces.internal.xni.QName element, com.sun.org.apache.xerces.internal.xni.XMLAttributes attributes, com.sun.org.apache.xerces.internal.xni.Augmentations augs)
try {
fCurrentAugs = augs;
fCurrentAtts = attributes;
super.startElement(element, attributes, augs);
} finally {
fCurrentAugs = null;
fCurrentAtts = null;
}
|