1 19 package org.enhydra.zeus.source; 20 21 import java.io.IOException ; 22 23 import org.enhydra.zeus.Source; 25 26 import org.jdom.Document; 28 29 import org.xml.sax.EntityResolver ; 31 32 51 public abstract class BaseSource implements Source { 52 53 54 protected String systemID; 55 56 57 protected EntityResolver entityResolver; 58 59 69 public String getSystemID() { 70 return systemID; 71 } 72 73 84 public void setSystemID(String systemID) { 85 this.systemID = systemID; 86 } 87 88 99 public abstract Document getDocument() throws IOException ; 100 101 110 public void setEntityResolver(EntityResolver entityResolver) { 111 this.entityResolver = entityResolver; 112 } 113 } 114 | Popular Tags |