1 17 package org.apache.commons.digester; 18 19 20 import org.xml.sax.Attributes ; 21 22 23 27 abstract public class AbstractObjectCreationFactory implements ObjectCreationFactory { 28 29 30 32 33 37 protected Digester digester = null; 38 39 40 42 43 51 public abstract Object createObject(Attributes attributes) throws Exception ; 52 53 54 58 public Digester getDigester() { 59 60 return (this.digester); 61 62 } 63 64 65 71 public void setDigester(Digester digester) { 72 73 this.digester = digester; 74 75 } 76 77 78 } 79 | Popular Tags |