1 16 17 package org.apache.xerces.impl; 18 19 import org.apache.xerces.xni.Augmentations; 20 import org.apache.xerces.xni.XMLResourceIdentifier; 21 import org.apache.xerces.xni.XNIException; 22 23 35 public interface XMLEntityHandler { 36 37 41 57 public void startEntity(String name, 58 XMLResourceIdentifier identifier, 59 String encoding, Augmentations augs) throws XNIException; 60 61 71 public void endEntity(String name, Augmentations augs) throws XNIException; 72 73 } | Popular Tags |