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

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

Introduction

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

Usage

From source file com.w20e.socrates.factories.ExpressionFactory.java

/**
 * @author dokter
 * Expression factory to create expressions based on XPath
 */
public class ExpressionFactory extends AbstractObjectCreationFactory<ExpressionWrapper> {

From source file com.w20e.socrates.workflow.MappingFactory.java

/**
 * Factory for creating Mapping objects.
 *
 * @author <a href="mailto:dokter@wyldebeast">Duco Dokter</a>
 * @version 1.0
 */

From source file com.w20e.socrates.factories.OptionsFactory.java

/**
 * @author dokter
 * Expression factory to create expressions based on XPath
 */
public class OptionsFactory extends AbstractObjectCreationFactory<OptionList> {

From source file com.terradue.jcatalogue.client.internal.digester.OpenSearchUrlCreationFactory.java

final class OpenSearchUrlCreationFactory extends AbstractObjectCreationFactory<OpenSearchUrl> {

    @Override
    public OpenSearchUrl createObject(Attributes attributes) throws Exception {
        String type = attributes.getValue("type");
        String template = attributes.getValue("template");

From source file com.w20e.socrates.factories.NodeFactory.java

/**
 * Factory class for creating Nodes.
 *
 * @author Duco Dokter
 * @version 1.0
 */

From source file com.w20e.socrates.factories.PropertiesFactory.java

/**
 * Factory class for creating Nodes.
 *
 * @author Duco Dokter
 * @version 1.0
 */

From source file com.w20e.socrates.factories.ControlFactory.java

/**
 * Factory class for creating ItemWrapper classes.
 * 
 * @author <a href="mailto:dokter@wyldebeast">Duco Dokter </a>
 * @version 1.0
 */

From source file eu.scape_project.planning.xml.plan.NumericTransformerThresholdFactory.java

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

From source file com.w20e.socrates.workflow.ActionFactory.java

/**
 * Action factory for use with the digester workflow factory.
 * 
 * @author <a href="mailto:dokter@wyldebeast">Duco Dokter</a>
 * @version 1.0
 */

From source file eu.scape_project.planning.xml.plan.PlanStateFactory.java

public class PlanStateFactory extends AbstractObjectCreationFactory<PlanState> {

    @Override
    public PlanState createObject(Attributes arg0) throws Exception {
        String value = arg0.getValue("value");
        try {