Uses of Class
com.ctc.wstx.util.SymbolTable
Packages that use SymbolTable
Package
Description
Package that contains subset of Woodstox classes that are considered to be
its public API (in addition to regular Stax 1.0 -- javax.xml.stream.* -- and
Stax2 -- org.codehaus.stax2.*).
Package that contains Woodstox classes that implement DTD handling.
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.
Contains utility classes that are not directly Woodstox specific, but are
for now only used by Woodstox.
-
Uses of SymbolTable in com.ctc.wstx.api
Fields in com.ctc.wstx.api declared as SymbolTableMethods in com.ctc.wstx.api that return SymbolTableMethods in com.ctc.wstx.api with parameters of type SymbolTableConstructors in com.ctc.wstx.api with parameters of type SymbolTableModifierConstructorDescriptionprivate
ReaderConfig
(ReaderConfig base, boolean j2meSubset, SymbolTable symbols, int configFlags, int configFlagMods, int inputBufLen, int minTextSegmentLen) -
Uses of SymbolTable in com.ctc.wstx.dtd
Fields in com.ctc.wstx.dtd declared as SymbolTableModifier and TypeFieldDescription(package private) static final SymbolTable
DTDSchemaFactory.mRootSymbols
'Root' symbol table, used for creating actual symbol table instances, but never as is. -
Uses of SymbolTable in com.ctc.wstx.sr
Fields in com.ctc.wstx.sr declared as SymbolTableMethods in com.ctc.wstx.sr with parameters of type SymbolTable -
Uses of SymbolTable in com.ctc.wstx.stax
Fields in com.ctc.wstx.stax declared as SymbolTableModifier and TypeFieldDescription(package private) static final SymbolTable
WstxInputFactory.mRootSymbols
'Root' symbol table, used for creating actual symbol table instances, but never as is.private SymbolTable
WstxInputFactory.mSymbols
Actual current 'parent' symbol table; concrete instances will be created from this instance usingmakeChild
methodMethods in com.ctc.wstx.stax with parameters of type SymbolTableModifier and TypeMethodDescriptionvoid
WstxInputFactory.updateSymbolTable
(SymbolTable t) Method individual parsers call to pass back symbol table that they updated, which may be useful for other parser to reuse, instead of previous base symbol table. -
Uses of SymbolTable in com.ctc.wstx.util
Fields in com.ctc.wstx.util declared as SymbolTableModifier and TypeFieldDescription(package private) static final SymbolTable
DefaultXmlSymbolTable.sInstance
Root symbol table from which child instances are derived.Methods in com.ctc.wstx.util that return SymbolTableModifier and TypeMethodDescriptionstatic SymbolTable
DefaultXmlSymbolTable.getInstance()
Method that will return an instance of SymbolTable that has basic XML 1.0 constants pre-populated.SymbolTable.makeChild()
"Factory" method; will create a new child instance of this symbol table.Methods in com.ctc.wstx.util with parameters of type SymbolTableModifier and TypeMethodDescriptionboolean
SymbolTable.isDirectChildOf
(SymbolTable t) void
SymbolTable.mergeChild
(SymbolTable child) Method that allows contents of child table to potentially be "merged in" with contents of this symbol table.