1 31 package org.objectweb.proactive.core.xml.io; 32 33 41 public interface XMLHandler { 42 43 50 public void startElement(String name, Attributes attributes) throws org.xml.sax.SAXException ; 51 52 53 58 public void readValue(String value) throws org.xml.sax.SAXException ; 59 60 61 67 public void endElement(String name) throws org.xml.sax.SAXException ; 68 69 70 76 public void startPrefixMapping(String prefix, String uri) throws org.xml.sax.SAXException ; 77 78 83 public void endPrefixMapping(String prefix) throws org.xml.sax.SAXException ; 84 85 } | Popular Tags |