Example usage for org.apache.commons.collections15 Factory interface-usage

List of usage examples for org.apache.commons.collections15 Factory interface-usage

Introduction

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

Usage

From source file util.TextLabelFactory.java

/**
 *
 * @author Johannes Kster <johannes.koester@tu-dortmund.de>
 */
public class TextLabelFactory implements Factory<TextLabel> {
    private String text;

From source file com.imag.nespros.network.devices.ComLinkFactory.java

/**
 *
 * @author epaln
 */
public class ComLinkFactory implements Factory<ComLink> {

From source file logicProteinHypernetwork.analysis.complexes.ComplexFactory.java

/**
 * Factory to create empty protein complexes.
 * 
 * @author Johannes Kster <johannes.koester@tu-dortmund.de>
 */
public class ComplexFactory implements Factory<Complex> {

From source file trabalhotpa.teste.fabricas.FabricaVertice.java

/**
 *
 * @author Daniel Junior
 */
public class FabricaVertice implements Factory<Vertice> {

From source file laystream.LayNodeFactory.java

/**
 *
 * @author Mikls
 */
public class LayNodeFactory implements Factory<LayNode> {

From source file trabalhotpa.teste.fabricas.FabricaAresta.java

/**
 *
 * @author Daniel Junior
 */
public class FabricaAresta implements Factory<Aresta> {

From source file edu.uci.ics.jung.algorithms.generators.GraphGenerator.java

/**
 * An interface for algorithms that generate graphs.
 * @author Scott White
 */
public interface GraphGenerator<V, E> extends Factory<Graph<V, E>> {
}

From source file com.imag.nespros.network.devices.DeviceFactory.java

/**
 *
 * @author epaln
 */
public class DeviceFactory implements Factory<Device> {

From source file edu.duke.cabig.c3pr.domain.factory.ParameterizedInstantiateFactory.java

/**
 * A factory for creating Domain objects.
 */
public class ParameterizedInstantiateFactory<T extends DomainObject> implements Factory<T> {

    /** The class to instantiate. */

From source file modalLogic.formula.factory.FormulaFactory.java

/**
 * Class FormulaFactory allows to build up a formula in a state-machine like way
 * similar to OpenGL.
 *
 * @author Johannes Kster <johannes.koester@tu-dortmund.de>
 */