first commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user