Uses of Class
com.ctc.wstx.ent.EntityDecl
-
Packages that use EntityDecl Package Description com.ctc.wstx.api 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.*).com.ctc.wstx.dtd Package that contains Woodstox classes that implement DTD handling.com.ctc.wstx.ent Package contains internal entity object implementations, which are used by stream reader classes, but parsed by dtd functionality.com.ctc.wstx.sr 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 EntityDecl Modifier and Type Method Description EntityDeclReaderConfig. findCustomInternalEntity(java.lang.String id)Methods in com.ctc.wstx.api that return types with arguments of type EntityDecl Modifier and Type Method Description java.util.Map<java.lang.String,EntityDecl>ReaderConfig. getCustomInternalEntities() -
Uses of EntityDecl in com.ctc.wstx.dtd
Fields in com.ctc.wstx.dtd with type parameters of type EntityDecl Modifier and Type Field Description protected static java.util.HashMap<java.lang.String,EntityDecl>DTDValidatorBase. EMPTY_MAPLet's actually just reuse a local Map...(package private) java.util.HashMap<java.lang.String,EntityDecl>DTDSubsetImpl. mDefinedPEsMap (name-to-WEntityDeclaration) that contains all parameter entities defined by this subset.(package private) java.util.HashMap<java.lang.String,EntityDecl>DTDSubsetImpl. mGeneralEntitiesMap (name-to-EntityDecl) of general entity declarations (internal, external) for this DTD subset.(package private) java.util.Map<java.lang.String,EntityDecl>DTDValidatorBase. mGeneralEntitiesGeneral entities defined in DTD subsets; needed for validating ENTITY/ENTITIES attributes.(package private) java.util.HashMap<java.lang.String,EntityDecl>FullDTDReader. mGeneralEntitiesSet of generic entities defined so far in this subset.(package private) java.util.List<EntityDecl>DTDSubsetImpl. mGeneralEntityListLazily instantiated List that contains all notations fromDTDSubsetImpl.mGeneralEntities(preferably in their declaration order; depends on whether platform, ie.(package private) java.util.HashMap<java.lang.String,EntityDecl>FullDTDReader. mParamEntitiesSet of parameter entities defined so far in the currently parsed subset.(package private) java.util.HashMap<java.lang.String,EntityDecl>FullDTDReader. mPredefdGEsSet 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) java.util.HashMap<java.lang.String,EntityDecl>FullDTDReader. mPredefdPEsSet 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 EntityDecl Modifier and Type Method Description EntityDeclFullDTDReader. findEntity(java.lang.String entName)Method that may need to be called by attribute default value validation code, during parsing....protected EntityDeclFullDTDReader. findEntity(java.lang.String id, java.lang.Object arg)EntityDeclMinimalDTDReader. findEntity(java.lang.String entName)Method that may need to be called by attribute default value validation code, during parsing....protected EntityDeclMinimalDTDReader. findEntity(java.lang.String id, java.lang.Object arg)protected EntityDeclDTDAttribute. findEntityDecl(DTDValidatorBase v, char[] ch, int start, int len)private EntityDeclFullDTDReader. handleExternalEntityDecl(WstxInputSource inputSource, boolean isParam, java.lang.String id, char c, javax.xml.stream.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 EntityDecl Modifier and Type Method Description (package private) java.util.Map<java.lang.String,EntityDecl>DTDValidatorBase. getEntityMap()abstract java.util.List<EntityDecl>DTDSubset. getGeneralEntityList()java.util.List<EntityDecl>DTDSubsetImpl. getGeneralEntityList()abstract java.util.HashMap<java.lang.String,EntityDecl>DTDSubset. getGeneralEntityMap()java.util.HashMap<java.lang.String,EntityDecl>DTDSubsetImpl. getGeneralEntityMap()abstract java.util.HashMap<java.lang.String,EntityDecl>DTDSubset. getParameterEntityMap()java.util.HashMap<java.lang.String,EntityDecl>DTDSubsetImpl. getParameterEntityMap()Methods in com.ctc.wstx.dtd with parameters of type EntityDecl Modifier and Type Method Description protected voidDTDAttribute. checkEntity(InputProblemReporter rep, java.lang.String id, EntityDecl ent)Method parameters in com.ctc.wstx.dtd with type arguments of type EntityDecl Modifier and Type Method Description static DTDSubsetImplDTDSubsetImpl. constructInstance(boolean cachable, java.util.HashMap<java.lang.String,EntityDecl> genEnt, java.util.Set<java.lang.String> refdGEs, java.util.HashMap<java.lang.String,EntityDecl> paramEnt, java.util.Set<java.lang.String> refdPEs, java.util.HashMap<java.lang.String,javax.xml.stream.events.NotationDeclaration> notations, java.util.HashMap<PrefixedName,DTDElement> elements, boolean fullyValidating)Constructor parameters in com.ctc.wstx.dtd with type arguments of type EntityDecl Constructor Description DTDSubsetImpl(boolean cachable, java.util.HashMap<java.lang.String,EntityDecl> genEnt, java.util.Set<java.lang.String> refdGEs, java.util.HashMap<java.lang.String,EntityDecl> paramEnt, java.util.Set<java.lang.String> peRefs, java.util.HashMap<java.lang.String,javax.xml.stream.events.NotationDeclaration> notations, java.util.HashMap<PrefixedName,DTDElement> elements, boolean fullyValidating) -
Uses of EntityDecl in com.ctc.wstx.ent
Subclasses of EntityDecl in com.ctc.wstx.ent Modifier and Type Class Description classExtEntityclassIntEntityclassParsedExtEntityclassUnparsedExtEntity -
Uses of EntityDecl in com.ctc.wstx.sr
Fields in com.ctc.wstx.sr declared as EntityDecl Modifier and Type Field Description protected EntityDeclStreamScanner. mCurrEntityEntity reference stream currently points to.Fields in com.ctc.wstx.sr with type parameters of type EntityDecl Modifier and Type Field Description protected java.util.Map<java.lang.String,EntityDecl>BasicStreamReader. mGeneralEntitiesEntities parsed from internal/external DTD subsets.Methods in com.ctc.wstx.sr that return EntityDecl Modifier and Type Method Description protected EntityDeclStreamScanner. expandEntity(java.lang.String id, boolean allowExt, java.lang.Object extraArg)Helper method that will try to expand a parsed entity (parameter or generic entity).private EntityDeclStreamScanner. expandUnresolvedEntity(java.lang.String id)note: only called from the local expandEntity() methodprotected EntityDeclBasicStreamReader. findEntity(java.lang.String id, java.lang.Object arg)protected abstract EntityDeclStreamScanner. findEntity(java.lang.String id, java.lang.Object arg)Abstract method for sub-classes to implement, for finding a declared general or parsed entity.EntityDeclBasicStreamReader. getCurrentEntityDecl()EntityDeclStreamReaderImpl. getCurrentEntityDecl()protected EntityDeclStreamScanner. getIntEntity(int ch, char[] originalChars)Returns an entity (possibly from cache) for the argument character using the encoded representation in mInputBuffer[entityStartPos ...protected EntityDeclStreamScanner. 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 EntityDecl Modifier and Type Method Description private voidStreamScanner. expandEntity(EntityDecl ed, boolean allowExt)note: defined as private for documentation, ie.
-