Method from org.apache.xmlbeans.impl.validator.ValidatingXMLStreamReader$ElementEventImpl Detail: |
public Location getLocation() {
return _xmlStream.getLocation();
}
|
public XmlCursor getLocationAsCursor() {
return null;
}
|
public QName getName() {
// avoid construction of a new QName object after the bug in getName() is fixed.
if (_xmlStream.hasName())
return new QName(_xmlStream.getNamespaceURI(), _xmlStream.getLocalName());
else
return null;
}
|
public String getNamespaceForPrefix(String prefix) {
return _xmlStream.getNamespaceURI(prefix);
}
|
public String getText() {
_length = 0;
addTextToBuffer();
return new String( _buf, 0, _length );
// return _xmlStream.getText();
}
|
public String getText(int wsr) {
return XmlWhitespace.collapse( _xmlStream.getText(), wsr );
}
|
public String getXsiLoc() {
return _xmlStream.getAttributeValue(URI_XSI, "schemaLocation");
}
|
public String getXsiNil() {
return _xmlStream.getAttributeValue(URI_XSI, "nil");
}
|
public String getXsiNoLoc() {
return _xmlStream.getAttributeValue(URI_XSI, "noNamespaceSchemaLocation");
}
|
public String getXsiType() {
return _xmlStream.getAttributeValue(URI_XSI, "type");
}
|
public boolean textIsWhitespace() {
return _xmlStream.isWhiteSpace();
}
|