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

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

Introduction

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

Usage

From source file com.dotosoft.dot4command.config.xml.ConfigDefineRule.java

/**
 * <p>Digester rule that will dynamically register a new set of rules
 * for a specified element name and default implementation class.  This
 * allows "alias" elements to be created for {@link com.dotosoft.dot4command.chain.Chain}
 * and {@link com.dotosoft.dot4command.chain.Command}
 * implementation classes that are commonly used.  Besides factoring out

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

final class PriorityParamRule extends Rule {

    private static final Integer MIN_PRIORITY = 999999;

    private final int paramIndex;

From source file br.univali.celine.lms.config.BeanSetterAttribute.java

public class BeanSetterAttribute extends Rule {

    private String attributeName;
    private String body;

    @Override

From source file org.apache.commons.digester3.examples.api.documentmarkup.SetTextSegmentRule.java

/**
 * When a text segment is discovered, it calls a specific method on the top
 * object on the stack.
 */
public class SetTextSegmentRule extends Rule implements TextSegmentHandler {

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

@RequiredArgsConstructor
final class SetGeoDataLocationRule extends Rule {

    private final Class<? extends GeoLocation> targetType;

    @Override

From source file com.dotosoft.dot4command.config.xml.ConfigRegisterRule.java

/**
 * <p>Digester rule that will cause the top-most element on the Digester
 * stack (if it is a {@link com.dotosoft.dot4command.chain.Command} to be registered with the next-to-top
 * element on the Digester stack (if it is a {@link com.dotosoft.dot4command.chain.Catalog} or {@link com.dotosoft.dot4command.chain.Chain}).
 * To be registered with a {@link com.dotosoft.dot4command.chain.Catalog}, the top-most element must contain
 * a value for the specified attribute that contains the name under which

From source file com.dotosoft.dot4command.config.xml.ConfigCatalogRule.java

/**
 * <p>Digester rule that will cause the top-most element on the Digester
 * stack (if it is a {@link com.dotosoft.dot4command.chain.Catalog} to be registered with the
 * {@link com.dotosoft.dot4command.impl.CatalogFactoryBase} instance for our application.  If the attribute
 * specified to our constructor has a value, that will be used as the name
 * under which to register this {@link com.dotosoft.dot4command.chain.Catalog}.  Otherwise, this will

From source file org.apache.commons.digester3.examples.api.dbinsert.RowInserterRule.java

/**
 * See Main.java.
 */
public class RowInserterRule extends Rule {

    private Connection conn;