| Method from com.sun.org.apache.xalan.internal.xsltc.trax.StAXEvent2SAX Detail: |
public int getColumnNumber() {
return 0;
}
This class is only used internally so this method should never
be called. |
public ContentHandler getContentHandler() {
return _sax;
}
|
public DTDHandler getDTDHandler() {
return null;
}
This class is only used internally so this method should never
be called. |
public EntityResolver getEntityResolver() {
return null;
}
This class is only used internally so this method should never
be called. |
public ErrorHandler getErrorHandler() {
return null;
}
This class is only used internally so this method should never
be called. |
public boolean getFeature(String name) throws SAXNotSupportedException, SAXNotRecognizedException {
return false;
}
This class is only used internally so this method should never
be called. |
public int getLineNumber() {
return 0;
}
This class is only used internally so this method should never
be called. |
public Object getProperty(String name) throws SAXNotSupportedException, SAXNotRecognizedException {
return null;
}
This class is only used internally so this method should never
be called. |
public String getPublicId() {
return null;
}
This class is only used internally so this method should never
be called. |
public String getSystemId() {
return null;
}
This class is only used internally so this method should never
be called. |
public void parse() throws XMLStreamException, IOException, SAXException {
bridge();
}
|
public void parse(InputSource unused) throws IOException, SAXException {
try {
bridge();
} catch (XMLStreamException e) {
throw new SAXException(e);
}
}
|
public void parse(String sysId) throws IOException, SAXException {
throw new IOException("This method is not yet implemented.");
}
This class is only used internally so this method should never
be called. |
public void setContentHandler(ContentHandler handler) throws NullPointerException {
_sax = handler;
if (handler instanceof LexicalHandler) {
_lex = (LexicalHandler) handler;
}
if (handler instanceof SAXImpl) {
_saxImpl = (SAXImpl)handler;
}
}
|
public void setDTDHandler(DTDHandler handler) throws NullPointerException {
}
This class is only used internally so this method should never
be called. |
public void setEntityResolver(EntityResolver resolver) throws NullPointerException {
}
This class is only used internally so this method should never
be called. |
public void setErrorHandler(ErrorHandler handler) throws NullPointerException {
}
This class is only used internally so this method should never
be called. |
public void setFeature(String name,
boolean value) throws SAXNotSupportedException, SAXNotRecognizedException {
}
This class is only used internally so this method should never
be called. |
public void setProperty(String name,
Object value) throws SAXNotSupportedException, SAXNotRecognizedException {
}
This class is only used internally so this method should never
be called. |