Example usage for org.apache.commons.digester ObjectCreationFactory interface-usage

List of usage examples for org.apache.commons.digester ObjectCreationFactory interface-usage

Introduction

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

Usage

From source file net.codjo.control.common.loader.StepFactory.java

/**
 * Factory appele par le digester quand un tag <code>&lt;step&gt;</code> est rencontr,
 * pour instancier un objet de type <code>Step</code>. Cette factory gre l'attribut
 * <code>inheritId</code> : quand il est prsent, on recherche le step abstrait
 * correspondant et on rplique ses champs dans le nouveau Step (opration de clonage).
 *

From source file org.squale.squalecommon.util.xml.FactoryAdapter.java

/**
 * Adaptateur de fabrique pour le digester Cette classe est utilise pour viter la duplication de code dans les
 * diverses factory utilises par le digester
 */
public abstract class FactoryAdapter implements ObjectCreationFactory {
    /** Digester */

From source file org.sakaiproject.sitestats.impl.parser.EventFactoryImpl.java

public class EventFactoryImpl implements EventFactory, ObjectCreationFactory {
    public EventInfo createEvent(String eventId) {
        return new EventInfo(eventId);
    }

    public Object createObject(Attributes attributes) throws Exception {

From source file org.sakaiproject.sitestats.impl.parser.EventParserTipFactoryImpl.java

public class EventParserTipFactoryImpl implements EventParserTipFactory, ObjectCreationFactory {

    public EventParserTip createEventParserTip() {
        return new EventParserTip();
    }

From source file org.sakaiproject.sitestats.impl.parser.ToolFactoryImpl.java

public class ToolFactoryImpl implements ToolFactory, ObjectCreationFactory {

    public ToolInfo createTool(String toolId) {
        return new ToolInfo(toolId);
    }

From source file tk.tomby.tedit.gui.editors.MultiEditorFactory.java

/**
 * DOCUMENT ME!
 *
 * @author $Author: amunoz $
 * @version $Revision: 1.2 $
 */

From source file tk.tomby.tedit.plugins.PluginLibraryFactory.java

/**
 * DOCUMENT ME!
 *
 * @author $Author: amunoz $
 * @version $Revision: 1.1.1.1 $
 */

From source file tk.tomby.tedit.actions.ActionFactory.java

/**
 * DOCUMENT ME!
 *
 * @author $Author: amunoz $
 * @version $Revision: 1.1.1.1 $
 */

From source file net.sf.jasperreports.engine.xml.JRBaseFactory.java

/**
 * @author Teodor Danciu (teodord@users.sourceforge.net)
 */
public abstract class JRBaseFactory implements ObjectCreationFactory {
    public static final String EXCEPTION_MESSAGE_KEY_UNKNOWN_REPORT_STYLE = "xml.base.factory.unknown.report.style";

From source file tk.tomby.tedit.actions.ScriptletActionFactory.java

/**
 * DOCUMENT ME!
 *
 * @author $Author: amunoz $
 * @version $Revision: 1.1.1.1 $
 */