Example usage for org.apache.commons.digester AbstractObjectCreationFactory subclass-usage

List of usage examples for org.apache.commons.digester AbstractObjectCreationFactory subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.digester AbstractObjectCreationFactory subclass-usage.

Usage

From source file at.tuwien.minimee.registry.xml.EngineFactory.java

/**
 * Helper class for digesting a minimee configuration XML file
 */
public class EngineFactory extends AbstractObjectCreationFactory {
    @Override
    public Object createObject(Attributes arg0) throws Exception {

From source file at.tuwien.minimee.registry.xml.EvaluatorFactory.java

/**
 * Helper class for digesting a minimee configuration XML file
 */
public class EvaluatorFactory extends AbstractObjectCreationFactory {
    @Override
    public Object createObject(Attributes arg0) throws Exception {

From source file eu.planets_project.pp.plato.xml.plato.NumericTransformerThresholdFactory.java

/**
 * Helper class for {@link eu.planets_project.pp.plato.xml.ProjectImporter} to create a NumericTransformer-threshold value 
 * with the data of its XML representation. 
 * 
 * @author Michael Kraxner
 *

From source file at.tuwien.minimee.registry.xml.PreservationActionServiceFactory.java

/**
 * Helper class for digesting a minimee configuration XML file
 */
public class PreservationActionServiceFactory extends AbstractObjectCreationFactory {

    @Override

From source file eu.planets_project.pp.plato.xml.plato.CriterionCategoryFactory.java

public class CriterionCategoryFactory extends AbstractObjectCreationFactory {

    @Override
    public Object createObject(Attributes arg0) throws Exception {
        String name = arg0.getValue("name");
        if (name != null) {

From source file eu.planets_project.pp.plato.xml.plato.SampleAggregationModeFactory.java

/**
 * Helper class for {@link eu.planets_project.pp.plato.xml.ProjectImporter} to create a SampleAggregationMode value of its XML representation. 
 * 
 * @author Michael Kraxner
 *
 */

From source file eu.planets_project.pp.plato.xml.plato.OrdinalTransformerMappingFactory.java

/**
 * Helper class for {@link eu.planets_project.pp.plato.xml.ProjectImporter} to create a OrdinalTransformer - TargetValueObject 
 * with the data of its XML representation. 
 * 
 * @author Michael Kraxner
 *

From source file eu.planets_project.pp.plato.xml.plato.GoDecisionFactory.java

/**
 * Helper class for {@link eu.planets_project.pp.plato.xml.ProjectImporter} to create a GoDecision value of its XML representation. 
 * 
 * @author Michael Kraxner
 *
 */

From source file eu.planets_project.pp.plato.xml.plato.TransformationModeFactory.java

/**
 * Helper class for {@link eu.planets_project.pp.plato.xml.ProjectImporter} to create a TransformationMode value of its XML representation. 
 * 
 * @author Michael Kraxner
 *
 */

From source file nl.nn.adapterframework.ldap.BasicAttributeFactory.java

public class BasicAttributeFactory extends AbstractObjectCreationFactory {

    public Object createObject(Attributes arg0) throws Exception {
        return new BasicAttribute(arg0.getValue(0));
    }