Files
HRMS/hrmsEjb/org/apache/commons/digester/ObjectCreationFactory.java
2025-07-28 13:56:49 +05:30

12 lines
257 B
Java

package org.apache.commons.digester;
import org.xml.sax.Attributes;
public interface ObjectCreationFactory {
Object createObject(Attributes paramAttributes) throws Exception;
Digester getDigester();
void setDigester(Digester paramDigester);
}