1 19 20 package org.netbeans.modules.project.libraries; 21 22 import org.xml.sax.*; 23 24 public interface LibraryDeclarationHandler { 25 26 31 public void start_volume(final Attributes meta) throws SAXException; 32 33 37 public void end_volume() throws SAXException; 38 39 45 public void handle_type(final java.lang.String data, final Attributes meta) throws SAXException; 46 47 52 public void handle_description(final java.lang.String data, final Attributes meta) throws SAXException; 53 54 59 public void start_library(final Attributes meta) throws SAXException; 60 61 65 public void end_library() throws SAXException; 66 67 73 public void handle_resource(final java.net.URL data, final Attributes meta) throws SAXException; 74 75 81 public void handle_name(final java.lang.String data, final Attributes meta) throws SAXException; 82 83 public void handle_localizingBundle (final String data, final Attributes meta) throws SAXException; 84 85 } 86 87 | Popular Tags |