1 19 package org.netbeans.modules.xml.tools.generator; 20 21 import org.xml.sax.*; 22 23 public interface SAXBindingsHandler { 24 25 29 public void handle_parslet(final Attributes meta) throws SAXException; 30 31 35 public void start_SAX_bindings(final Attributes meta) throws SAXException; 36 37 40 public void end_SAX_bindings() throws SAXException; 41 42 46 public void handle_attbind(final Attributes meta) throws SAXException; 47 48 52 public void start_bind(final Attributes meta) throws SAXException; 53 54 57 public void end_bind() throws SAXException; 58 59 } 60 | Popular Tags |