1 57 58 package com.sun.org.apache.xerces.internal.impl; 59 60 import com.sun.org.apache.xerces.internal.xni.Augmentations; 61 import com.sun.org.apache.xerces.internal.xni.XMLResourceIdentifier; 62 import com.sun.org.apache.xerces.internal.xni.XNIException; 63 64 74 public interface XMLEntityHandler { 75 76 80 96 public void startEntity(String name, 97 XMLResourceIdentifier identifier, 98 String encoding, Augmentations augs) throws XNIException; 99 100 110 public void endEntity(String name, Augmentations augs) throws XNIException; 111 112 } | Popular Tags |