Uses of Class
org.xml.sax.HandlerBase
Packages that useHandlerBase
Package
Description
Provides the classes for processing XML documents with a SAX (Simple API for XML) parser or a DOM (Document Object Model) Document builder.
Uses ofHandlerBase injavax.xml.parsers
Methods injavax.xml.parsers with parameters of typeHandlerBaseModifier and TypeMethodDescriptionvoid
SAXParser.parse
(File f,HandlerBase hb) Parse the content of the file specified as XML using the specifiedHandlerBase
.void
SAXParser.parse
(InputStream is,HandlerBase hb) Parse the content of the givenInputStream
instance as XML using the specifiedHandlerBase
.void
SAXParser.parse
(InputStream is,HandlerBase hb,String systemId) Parse the content of the givenInputStream
instance as XML using the specifiedHandlerBase
.void
SAXParser.parse
(String uri,HandlerBase hb) Parse the content described by the giving Uniform Resource Identifier (URI) as XML using the specifiedHandlerBase
.void
SAXParser.parse
(InputSource is,HandlerBase hb) Parse the content givenInputSource
as XML using the specifiedHandlerBase
.