public TextPredictor getPredictor() { return next.getPredictor(); }
/** * @param externalLocator If the caller is producing SAX events from sources other than Unicode * and angle brackets, the caller can override the default SAX {@link Locator} object by this * object to provide better location information. */ public SAXConnector(XmlVisitor next, LocatorEx externalLocator) { this.next = next; this.context = next.getContext(); this.predictor = next.getPredictor(); this.loc = externalLocator; }