1 16 17 package org.apache.xerces.xpointer; 18 19 import org.apache.xerces.xni.Augmentations; 20 import org.apache.xerces.xni.QName; 21 import org.apache.xerces.xni.XMLAttributes; 22 import org.apache.xerces.xni.XNIException; 23 24 36 public interface XPointerProcessor { 37 38 public static final int EVENT_ELEMENT_START = 0; 40 41 public static final int EVENT_ELEMENT_END = 1; 43 44 public static final int EVENT_ELEMENT_EMPTY = 2; 46 47 58 public void parseXPointer(String xpointer) throws XNIException; 59 60 76 public boolean resolveXPointer(QName element, XMLAttributes attributes, 77 Augmentations augs, int event) throws XNIException; 78 79 88 public boolean isFragmentResolved() throws XNIException; 89 90 99 public boolean isXPointerResolved() throws XNIException; 100 101 } | Popular Tags |