1 19 20 28 29 package org.netbeans.modules.xml.xam.locator; 30 31 import java.net.URI ; 32 import org.netbeans.modules.xml.xam.ModelSource; 33 import org.w3c.dom.ls.LSResourceResolver ; 34 import org.xml.sax.EntityResolver ; 35 36 40 public interface CatalogModel extends EntityResolver , LSResourceResolver { 41 42 59 public ModelSource getModelSource(URI locationURI) throws CatalogModelException; 60 61 62 81 public ModelSource getModelSource(URI locationURI, ModelSource modelSourceOfSourceDocument) throws CatalogModelException; 82 83 } 84 | Popular Tags |