/* Woodstox XML processor
 *
 * Copyright (c) 2004- Tatu Saloranta, tatu.saloranta@iki.fi
 *
 * Licensed under the License specified in the file LICENSE which is
 * included with the source code.
 * You may not use this file except in compliance with the License.
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.ctc.wstx.dtd;

import java.util.*;

import javax.xml.stream.XMLStreamException;
import javax.xml.stream.events.NotationDeclaration;

import org.codehaus.stax2.validation.*;

import com.ctc.wstx.ent.EntityDecl;
import com.ctc.wstx.sr.InputProblemReporter;
import com.ctc.wstx.util.PrefixedName;

This is the abstract base class that implements the standard Stax2 validation schema base class (XMLValidationSchema, as well as specifies extended Woodstox-specific interface for accessing DTD-specific things like entity expansions and notation properties.

API is separated from its implementation to reduce coupling; for example, it is possible to have DTD subset implementations that do not implement validation logics, just entity expansion.

/** * This is the abstract base class that implements the standard Stax2 * validation schema base class ({@link XMLValidationSchema}, as well * as specifies extended Woodstox-specific interface for accessing * DTD-specific things like entity expansions and notation properties. *<p> * API is separated from its implementation to reduce coupling; for example, * it is possible to have DTD subset implementations that do not implement * validation logics, just entity expansion. */
public abstract class DTDSubset implements DTDValidationSchema { /* ////////////////////////////////////////////////////// // Life-cycle ////////////////////////////////////////////////////// */ protected DTDSubset() { }
Method that will combine definitions from this internal subset with definitions from passed-in external subset, producing a new combined DTDSubset instance.
/** * Method that will combine definitions from this internal subset with * definitions from passed-in external subset, producing a new combined * DTDSubset instance. */
public abstract DTDSubset combineWithExternalSubset(InputProblemReporter rep, DTDSubset extSubset) throws XMLStreamException; /* ////////////////////////////////////////////////////// // XMLValidationSchema implementation ////////////////////////////////////////////////////// */ @Override public abstract XMLValidator createValidator(ValidationContext ctxt) throws XMLStreamException; @Override public String getSchemaType() { return XMLValidationSchema.SCHEMA_ID_DTD; } /* ////////////////////////////////////////////////////// // And extended DTDValidationSchema ////////////////////////////////////////////////////// */ @Override public abstract int getEntityCount(); @Override public abstract int getNotationCount(); /* ////////////////////////////////////////////////////// // Woodstox-specific API, caching support ////////////////////////////////////////////////////// */ public abstract boolean isCachable();
Method used in determining whether cached external subset instance can be used with specified internal subset. If ext. subset references any parameter entities int subset (re-)defines, it can not; otherwise it can be used.
Returns:True if this (external) subset refers to a parameter entity defined in passed-in internal subset.
/** * Method used in determining whether cached external subset instance * can be used with specified internal subset. If ext. subset references * any parameter entities int subset (re-)defines, it can not; otherwise * it can be used. * * @return True if this (external) subset refers to a parameter entity * defined in passed-in internal subset. */
public abstract boolean isReusableWith(DTDSubset intSubset); /* ////////////////////////////////////////////////////// // Woodstox-specific API, entity/notation handling ////////////////////////////////////////////////////// */ public abstract HashMap<String,EntityDecl> getGeneralEntityMap(); public abstract List<EntityDecl> getGeneralEntityList(); public abstract HashMap<String,EntityDecl> getParameterEntityMap(); public abstract HashMap<String,NotationDeclaration> getNotationMap(); public abstract List<NotationDeclaration> getNotationList(); public abstract HashMap<PrefixedName,DTDElement> getElementMap(); }