Uses of Class
com.ctc.wstx.ent.EntityDecl
Packages that use EntityDecl
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.
Package contains internal entity object implementations, which are used
by stream reader classes, but parsed by dtd functionality.
This package contains supporting code for handling namespace information;
element stacks that keep track of elements parsed and such.
-
Uses of EntityDecl in com.ctc.wstx.api
Methods in com.ctc.wstx.api that return EntityDeclMethods in com.ctc.wstx.api that return types with arguments of type EntityDecl -
Uses of EntityDecl in com.ctc.wstx.dtd
Fields in com.ctc.wstx.dtd with type parameters of type EntityDeclModifier and TypeFieldDescriptionprotected static final HashMap
<String, EntityDecl> DTDValidatorBase.EMPTY_MAP
Let's actually just reuse a local Map...(package private) final HashMap
<String, EntityDecl> DTDSubsetImpl.mDefinedPEs
Map (name-to-WEntityDeclaration) that contains all parameter entities defined by this subset.(package private) final HashMap
<String, EntityDecl> DTDSubsetImpl.mGeneralEntities
Map (name-to-EntityDecl) of general entity declarations (internal, external) for this DTD subset.(package private) final Map
<String, EntityDecl> DTDValidatorBase.mGeneralEntities
General entities defined in DTD subsets; needed for validating ENTITY/ENTITIES attributes.(package private) HashMap
<String, EntityDecl> FullDTDReader.mGeneralEntities
Set of generic entities defined so far in this subset.(package private) List
<EntityDecl> DTDSubsetImpl.mGeneralEntityList
Lazily instantiated List that contains all notations fromDTDSubsetImpl.mGeneralEntities
(preferably in their declaration order; depends on whether platform, ie.(package private) HashMap
<String, EntityDecl> FullDTDReader.mParamEntities
Set of parameter entities defined so far in the currently parsed subset.(package private) final HashMap
<String, EntityDecl> FullDTDReader.mPredefdGEs
Set of general entities already defined for the subset being parsed; namely, PEs defined in the internal subset passed when parsing matching external subset.(package private) final HashMap
<String, EntityDecl> FullDTDReader.mPredefdPEs
Set of parameter entities already defined for the subset being parsed; namely, PEs defined in the internal subset passed when parsing matching external subset.Methods in com.ctc.wstx.dtd that return EntityDeclModifier and TypeMethodDescriptionFullDTDReader.findEntity
(String entName) Method that may need to be called by attribute default value validation code, during parsing....protected EntityDecl
FullDTDReader.findEntity
(String id, Object arg) MinimalDTDReader.findEntity
(String entName) Method that may need to be called by attribute default value validation code, during parsing....protected EntityDecl
MinimalDTDReader.findEntity
(String id, Object arg) protected EntityDecl
DTDAttribute.findEntityDecl
(DTDValidatorBase v, char[] ch, int start, int len) private EntityDecl
FullDTDReader.handleExternalEntityDecl
(WstxInputSource inputSource, boolean isParam, String id, char c, Location evtLoc) Method that handles rest of external entity declaration, after it's been figured out entity is not internal (does not continue with a quote).Methods in com.ctc.wstx.dtd that return types with arguments of type EntityDeclModifier and TypeMethodDescription(package private) Map
<String, EntityDecl> DTDValidatorBase.getEntityMap()
abstract List
<EntityDecl> DTDSubset.getGeneralEntityList()
DTDSubsetImpl.getGeneralEntityList()
abstract HashMap
<String, EntityDecl> DTDSubset.getGeneralEntityMap()
DTDSubsetImpl.getGeneralEntityMap()
abstract HashMap
<String, EntityDecl> DTDSubset.getParameterEntityMap()
DTDSubsetImpl.getParameterEntityMap()
Methods in com.ctc.wstx.dtd with parameters of type EntityDeclModifier and TypeMethodDescriptionprotected void
DTDAttribute.checkEntity
(InputProblemReporter rep, String id, EntityDecl ent) Method parameters in com.ctc.wstx.dtd with type arguments of type EntityDeclModifier and TypeMethodDescriptionstatic DTDSubsetImpl
DTDSubsetImpl.constructInstance
(boolean cachable, HashMap<String, EntityDecl> genEnt, Set<String> refdGEs, HashMap<String, EntityDecl> paramEnt, Set<String> refdPEs, HashMap<String, NotationDeclaration> notations, HashMap<PrefixedName, DTDElement> elements, boolean fullyValidating) Constructor parameters in com.ctc.wstx.dtd with type arguments of type EntityDeclModifierConstructorDescriptionprivate
DTDSubsetImpl
(boolean cachable, HashMap<String, EntityDecl> genEnt, Set<String> refdGEs, HashMap<String, EntityDecl> paramEnt, Set<String> peRefs, HashMap<String, NotationDeclaration> notations, HashMap<PrefixedName, DTDElement> elements, boolean fullyValidating) -
Uses of EntityDecl in com.ctc.wstx.ent
Subclasses of EntityDecl in com.ctc.wstx.entModifier and TypeClassDescriptionclass
class
class
class
-
Uses of EntityDecl in com.ctc.wstx.sr
Fields in com.ctc.wstx.sr declared as EntityDeclModifier and TypeFieldDescriptionprotected EntityDecl
StreamScanner.mCurrEntity
Entity reference stream currently points to.Fields in com.ctc.wstx.sr with type parameters of type EntityDeclModifier and TypeFieldDescriptionprotected Map
<String, EntityDecl> BasicStreamReader.mGeneralEntities
Entities parsed from internal/external DTD subsets.Methods in com.ctc.wstx.sr that return EntityDeclModifier and TypeMethodDescriptionprotected EntityDecl
StreamScanner.expandEntity
(String id, boolean allowExt, Object extraArg) Helper method that will try to expand a parsed entity (parameter or generic entity).private EntityDecl
StreamScanner.expandUnresolvedEntity
(String id) note: only called from the local expandEntity() methodprotected EntityDecl
BasicStreamReader.findEntity
(String id, Object arg) protected abstract EntityDecl
StreamScanner.findEntity
(String id, Object arg) Abstract method for sub-classes to implement, for finding a declared general or parsed entity.BasicStreamReader.getCurrentEntityDecl()
StreamReaderImpl.getCurrentEntityDecl()
protected EntityDecl
StreamScanner.getIntEntity
(int ch, char[] originalChars) Returns an entity (possibly from cache) for the argument character using the encoded representation in mInputBuffer[entityStartPos ...protected EntityDecl
StreamScanner.resolveNonCharEntity()
Reverse ofStreamScanner.resolveCharOnlyEntity(boolean)
; will only resolve entity if it is NOT a character entity (or pre-defined 'generic' entity; amp, apos, lt, gt or quot).Methods in com.ctc.wstx.sr with parameters of type EntityDeclModifier and TypeMethodDescriptionprivate void
StreamScanner.expandEntity
(EntityDecl ed, boolean allowExt) note: defined as private for documentation, ie.