18 lines
435 B
Java
18 lines
435 B
Java
package org.apache.commons.digester;
|
|
|
|
import org.xml.sax.Attributes;
|
|
|
|
public abstract class AbstractObjectCreationFactory implements ObjectCreationFactory {
|
|
protected Digester digester = null;
|
|
|
|
public abstract Object createObject(Attributes paramAttributes) throws Exception;
|
|
|
|
public Digester getDigester() {
|
|
return this.digester;
|
|
}
|
|
|
|
public void setDigester(Digester digester) {
|
|
this.digester = digester;
|
|
}
|
|
}
|