1 19 package org.netbeans.api.xml.services; 20 21 import java.util.Iterator ; 22 import javax.xml.transform.URIResolver ; 23 24 import org.xml.sax.EntityResolver ; 25 import org.openide.util.Lookup; 26 27 import org.openide.xml.EntityCatalog; 29 30 45 public abstract class UserCatalog { 46 47 49 53 public static UserCatalog getDefault() { 54 return (UserCatalog) Lookup.getDefault().lookup(UserCatalog.class); 55 } 56 57 61 public URIResolver getURIResolver() { 62 return null; 63 } 64 65 69 public EntityResolver getEntityResolver() { 70 return null; 71 } 72 73 77 public Iterator getPublicIDs() { 80 return null; 81 } 82 } 83 | Popular Tags |