Method from org.apache.xmlbeans.impl.validator.ValidatingXMLStreamReader$AttributeEventImpl Detail: |
public Location getLocation() {
return _xmlStream.getLocation();
}
|
public XmlCursor getLocationAsCursor() {
return null;
}
|
public QName getName() {
assert _xmlStream.isStartElement() : "Not on Start Element.";
String uri = _xmlStream.getAttributeNamespace(_attIndex);
QName qn = new QName(uri==null ? "" : uri, _xmlStream.getAttributeLocalName(_attIndex));
//System.out.println(" Att QName: " + qn);
return qn;
}
|
public String getNamespaceForPrefix(String prefix) {
assert _xmlStream.isStartElement() : "Not on Start Element.";
return _xmlStream.getNamespaceURI(prefix);
}
|
public String getText() {
assert _xmlStream.isStartElement() : "Not on Start Element.";
return _xmlStream.getAttributeValue(_attIndex);
}
|
public String getText(int wsr) {
assert _xmlStream.isStartElement() : "Not on Start Element.";
return XmlWhitespace.collapse( _xmlStream.getAttributeValue(_attIndex), wsr );
}
|
public String getXsiLoc() {
throw new IllegalStateException();
}
|
public String getXsiNil() {
throw new IllegalStateException();
}
|
public String getXsiNoLoc() {
throw new IllegalStateException();
}
|
public String getXsiType() {
throw new IllegalStateException();
}
|
public boolean textIsWhitespace() {
throw new IllegalStateException();
}
|