1 19 package org.netbeans.tax.io; 20 21 26 public abstract class TreeEntityResolver { 27 28 34 public abstract TreeInputSource resolveEntity (String publicId, String systemId, String baseSystemId); 35 36 41 public TreeInputSource resolveEntity (String publicId, String systemId) { 42 return resolveEntity (publicId, systemId, null); 43 } 44 45 50 public String expandSystemId (String systemId, String baseSystemId) { 51 if ( Util.THIS.isLoggable() ) Util.THIS.debug ("[PENDING]: TreeEntityResolver.expandSystemId ( " + systemId + " , " + baseSystemId + " ) : " + systemId); 53 return systemId; 54 } 55 56 60 public String expandSystemId (String systemId) { 61 return expandSystemId (systemId, null); 62 } 63 64 } 65 | Popular Tags |