first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
package org.apache.xerces.xni;
import org.apache.xerces.xni.parser.XMLDTDContentModelSource;
public interface XMLDTDContentModelHandler {
public static final short SEPARATOR_CHOICE = 0;
public static final short SEPARATOR_SEQUENCE = 1;
public static final short OCCURS_ZERO_OR_ONE = 2;
public static final short OCCURS_ZERO_OR_MORE = 3;
public static final short OCCURS_ONE_OR_MORE = 4;
void any(Augmentations paramAugmentations) throws XNIException;
void empty(Augmentations paramAugmentations) throws XNIException;
void endContentModel(Augmentations paramAugmentations) throws XNIException;
void endGroup(Augmentations paramAugmentations) throws XNIException;
void pcdata(Augmentations paramAugmentations) throws XNIException;
void startGroup(Augmentations paramAugmentations) throws XNIException;
void occurrence(short paramShort, Augmentations paramAugmentations) throws XNIException;
void separator(short paramShort, Augmentations paramAugmentations) throws XNIException;
XMLDTDContentModelSource getDTDContentModelSource();
void setDTDContentModelSource(XMLDTDContentModelSource paramXMLDTDContentModelSource);
void element(String paramString, Augmentations paramAugmentations) throws XNIException;
void startContentModel(String paramString, Augmentations paramAugmentations) throws XNIException;
}