1 38 39 package org.jvnet.fastinfoset.sax; 40 41 import org.xml.sax.SAXException ; 42 43 public interface RestrictedAlphabetContentHandler { 44 45 public void numericCharacters(char ch[], int start, int length) throws SAXException ; 46 47 public void dateTimeCharacters(char ch[], int start, int length) throws SAXException ; 48 49 public void alphabetCharacters(String alphabet, char ch[], int start, int length) throws SAXException ; 50 } 51 | Popular Tags |