1 3 19 20 package com.sun.org.apache.xml.internal.resolver.readers; 21 22 import java.io.IOException ; 23 import java.net.MalformedURLException ; 24 import com.sun.org.apache.xml.internal.resolver.CatalogException; 25 26 import java.io.InputStream ; 27 import com.sun.org.apache.xml.internal.resolver.Catalog; 28 29 44 public interface CatalogReader { 45 60 public void readCatalog(Catalog catalog, String fileUrl) 61 throws MalformedURLException , IOException , CatalogException; 62 63 76 public void readCatalog(Catalog catalog, InputStream is) 77 throws IOException , CatalogException; 78 } 79 | Popular Tags |