Uses of Interface
ma.glasnost.orika.ObjectFactory

Packages that use ObjectFactory
ma.glasnost.orika   
ma.glasnost.orika.impl   
ma.glasnost.orika.impl.mapping.strategy   
 

Uses of ObjectFactory in ma.glasnost.orika
 

Methods in ma.glasnost.orika that return ObjectFactory
<T> ObjectFactory<T>
MapperFactory.lookupObjectFactory(Type<T> targetType)
          Return the object factory (if any) which has been registered for the given type.
 

Methods in ma.glasnost.orika with parameters of type ObjectFactory
<T> void
MapperFactory.registerObjectFactory(ObjectFactory<T> objectFactory, Class<T> targetClass)
          Deprecated. use MapperFactory.registerObjectFactory(ObjectFactory, Type) instead.
<T> void
MapperFactory.registerObjectFactory(ObjectFactory<T> objectFactory, Type<T> targetType)
          Register the given ObjectFactory with the MapperFactory; it will be used when constructing new instances of the specified targetType.
 

Uses of ObjectFactory in ma.glasnost.orika.impl
 

Classes in ma.glasnost.orika.impl that implement ObjectFactory
 class DefaultConstructorObjectFactory<T>
          DefaultConstructorObjectFactory is used for types which should be instantiated using their default constructor.
 class GeneratedObjectFactory
           
 

Methods in ma.glasnost.orika.impl that return ObjectFactory
<T> ObjectFactory<T>
DefaultMapperFactory.lookupObjectFactory(Type<T> targetType)
           
<T> ObjectFactory<T>
DefaultMapperFactory.lookupObjectFactory(Type<T> type, MappingContext context)
           
 

Methods in ma.glasnost.orika.impl with parameters of type ObjectFactory
<D> void
DefaultMapperFactory.registerObjectFactory(ObjectFactory<D> objectFactory, Type<D> destinationType)
           
<T> void
DefaultMapperFactory.registerObjectFactory(ObjectFactory<T> objectFactory, Class<T> targetClass)
           
 

Uses of ObjectFactory in ma.glasnost.orika.impl.mapping.strategy
 

Fields in ma.glasnost.orika.impl.mapping.strategy declared as ObjectFactory
protected  ObjectFactory<Object> InstantiateAndUseCustomMapperStrategy.objectFactory
          The custom ObjectFactory used by this strategy
 

Methods in ma.glasnost.orika.impl.mapping.strategy that return ObjectFactory
 ObjectFactory<Object> MappingStrategyRecorder.getResolvedObjectFactory()
           
 

Methods in ma.glasnost.orika.impl.mapping.strategy with parameters of type ObjectFactory
 void MappingStrategyRecorder.setResolvedObjectFactory(ObjectFactory<?> resolvedObjectFactory)
          Set the ObjectFactory to use for the strategy
 

Constructors in ma.glasnost.orika.impl.mapping.strategy with parameters of type ObjectFactory
InstantiateAndUseCustomMapperStrategy(Type<Object> sourceType, Type<Object> destinationType, Mapper<Object,Object> customMapper, ObjectFactory<Object> objectFactory, UnenhanceStrategy unenhancer)
          Creates a new instance of InstantiateAndUseCustomMapperStrategy
 



Copyright © 2013 Glasnost. All Rights Reserved.