1 18 package org.apache.tomcat.util.digester; 19 20 21 import org.xml.sax.Attributes ; 22 23 24 28 abstract public class AbstractObjectCreationFactory implements ObjectCreationFactory { 29 30 31 33 34 38 protected Digester digester = null; 39 40 41 43 44 52 public abstract Object createObject(Attributes attributes) throws Exception ; 53 54 55 59 public Digester getDigester() { 60 61 return (this.digester); 62 63 } 64 65 66 72 public void setDigester(Digester digester) { 73 74 this.digester = digester; 75 76 } 77 78 79 } 80 | Popular Tags |