Uses of Interface
cdc.args.Factory
-
-
Uses of Factory in cdc.args
Classes in cdc.args that implement Factory Modifier and Type Class Description classAbstractFactory<T>Base class for factory implementation.classAutoFactory<T>classSingleton<T>Implementation of Factory dedicated to singletons.Methods in cdc.args that return Factory Modifier and Type Method Description static <T> Factory<T>Factories. getFactory(Class<T> cls)static <T> Factory<T>Factories. getFactory(Class<T> cls, cdc.util.lang.FailureReaction reaction)Returns the factory associated to a class.static <E> Factory<E>Factory. singleton(E object)Creates a Singleton factory with no (empty) meta data.static <E> Factory<E>Factory. singleton(E object, Args meta)Creates a Singleton factory.static <E> Factory<E>Factory. singleton(Class<E> objectClass, E object)Creates a Singleton factory with no (empty) meta data.static <E> Factory<E>Factory. singleton(Class<E> objectClass, E object, Args meta)Creates a Singleton factory.Methods in cdc.args with parameters of type Factory Modifier and Type Method Description static voidFactories. register(Factory<?> factory)Registers a factory.
-