Uses of Class
com.ctc.wstx.io.InputBootstrapper
Packages that use InputBootstrapper
Package
Description
Package that contains Woodstox classes that implement DTD handling.
Low-level classes that are used to abstract most details of stream I/O
access from actual parsing classes.
This package contains supporting code for handling namespace information;
element stacks that keep track of elements parsed and such.
This package contains miscellaneous classes that implement Woodstox.
-
Uses of InputBootstrapper in com.ctc.wstx.dtd
Methods in com.ctc.wstx.dtd with parameters of type InputBootstrapperModifier and TypeMethodDescriptionprotected org.codehaus.stax2.validation.XMLValidationSchema
DTDSchemaFactory.doCreateSchema
(ReaderConfig rcfg, InputBootstrapper bs, String publicId, String systemIdStr, URL ctxt) The main validator construction method, called by all externally visible methods. -
Uses of InputBootstrapper in com.ctc.wstx.io
Subclasses of InputBootstrapper in com.ctc.wstx.ioModifier and TypeClassDescriptionfinal class
Input bootstrap class used when input comes from a Reader; in this case, encoding is already known, and thus encoding from XML declaration (if any) is only double-checked, not really used.final class
Input bootstrap class used with streams, when encoding is not known (when encoding is specified by application, a reader is constructed, and then reader-based bootstrapper is used).Methods in com.ctc.wstx.io with parameters of type InputBootstrapperModifier and TypeMethodDescriptionstatic BranchingReaderSource
InputSourceFactory.constructDocumentSource
(ReaderConfig cfg, InputBootstrapper bs, String pubId, SystemId sysId, Reader r, boolean realClose) Factory method used for creating the main-level document reader source.static ReaderSource
InputSourceFactory.constructEntitySource
(ReaderConfig cfg, WstxInputSource parent, String entityName, InputBootstrapper bs, String pubId, SystemId sysId, int xmlVersion, Reader r) protected void
InputBootstrapper.initFrom
(InputBootstrapper src) -
Uses of InputBootstrapper in com.ctc.wstx.sr
Methods in com.ctc.wstx.sr with parameters of type InputBootstrapperModifier and TypeMethodDescriptionstatic TypedStreamReader
TypedStreamReader.createStreamReader
(BranchingReaderSource input, ReaderCreator owner, ReaderConfig cfg, InputBootstrapper bs, boolean forER) Factory method for constructing readers.static ValidatingStreamReader
ValidatingStreamReader.createValidatingStreamReader
(BranchingReaderSource input, ReaderCreator owner, ReaderConfig cfg, InputBootstrapper bs, boolean forER) Factory method for constructing readers.Constructors in com.ctc.wstx.sr with parameters of type InputBootstrapperModifierConstructorDescriptionprotected
BasicStreamReader
(InputBootstrapper bs, BranchingReaderSource input, ReaderCreator owner, ReaderConfig cfg, InputElementStack elemStack, boolean forER) protected
TypedStreamReader
(InputBootstrapper bs, BranchingReaderSource input, ReaderCreator owner, ReaderConfig cfg, InputElementStack elemStack, boolean forER) private
ValidatingStreamReader
(InputBootstrapper bs, BranchingReaderSource input, ReaderCreator owner, ReaderConfig cfg, InputElementStack elemStack, boolean forER) -
Uses of InputBootstrapper in com.ctc.wstx.stax
Methods in com.ctc.wstx.stax with parameters of type InputBootstrapperModifier and TypeMethodDescriptionorg.codehaus.stax2.XMLStreamReader2
WstxInputFactory.createSR
(ReaderConfig cfg, SystemId systemId, InputBootstrapper bs, boolean forER, boolean autoCloseInput) org.codehaus.stax2.XMLStreamReader2
WstxInputFactory.createSR
(ReaderConfig cfg, String systemId, InputBootstrapper bs, boolean forER, boolean autoCloseInput) Method that is eventually called to create a (full) stream read instance.private org.codehaus.stax2.XMLStreamReader2
WstxInputFactory.doCreateSR
(ReaderConfig cfg, SystemId systemId, InputBootstrapper bs, boolean forER, boolean autoCloseInput) Bottleneck method used for creating ALL full stream reader instances (via other createSR() methods and directly)