Uses of Interface
com.bm.datagen.Generator

Packages that use Generator
com.bm.creators   
com.bm.datagen   
com.bm.datagen.constant   
com.bm.datagen.empty   
com.bm.datagen.random   
com.bm.datagen.random.primitive   
com.bm.datagen.relation   
com.bm.datagen.utils   
com.bm.testsuite   
com.bm.utils   
 

Uses of Generator in com.bm.creators
 

Constructor parameters in com.bm.creators with type arguments of type Generator
EntityBeanCreator(javax.persistence.EntityManager em, EntityBeanIntrospector<T> intro, java.lang.Class<T> toCreate, java.util.List<Generator<?>> additionalGenerators)
          Constructor with special generator list.
EntityInstanceCreator(javax.persistence.EntityManager em, Introspector<T> intro, java.lang.Class<T> toCreate, java.util.List<Generator<?>> generators)
          Default constructor.
 

Uses of Generator in com.bm.datagen
 

Methods in com.bm.datagen with parameters of type Generator
 void DataGenerator.registerGen(Generator<?> toRegister)
          Register one generator to the set of generators.
 

Uses of Generator in com.bm.datagen.constant
 

Classes in com.bm.datagen.constant that implement Generator
 class ConstantIntegerGenerator
          Generatos constant Integer values.
 class ConstantLongGenerator
          Generatos constant Integer values.
 class ConstantStringGenerator
          ConstantStringGenerator.
 

Uses of Generator in com.bm.datagen.empty
 

Classes in com.bm.datagen.empty that implement Generator
 class EmptyCollection
          Generates boolean values (only for non PK fields).
 

Uses of Generator in com.bm.datagen.random
 

Classes in com.bm.datagen.random that implement Generator
 class RandomDateGenerator
          Generates random Date values - distinguish between PK and non PK fields.
 class RandomIntegerGenerator
          Generates random Integer values - distinguish between PK and non PK fields.
 class RandomLongGenerator
          Generates random Long values - distinguish between PK and non PK fields.
 class RandomStringGenerator
          Generates random string values - distinguish between PK and non PK fields.
 

Uses of Generator in com.bm.datagen.random.primitive
 

Classes in com.bm.datagen.random.primitive that implement Generator
 class PrimitiveRandomBooleanGenerator
          Generates boolean values (only for non PK fields).
 class PrimitiveRandomDateGenerator
          Generates random Date values - distinguish between PK and non PK fields.
 class PrimitiveRandomDoubleGenerator
          Generates Double values (only for non PK fields).
 class PrimitiveRandomFloatGenerator
          Generates Double values (only for non PK fields).
 class PrimitiveRandomIntegerGenerator
          Generates random Integer values - distinguish between PK and non PK fields.
 class PrimitiveRandomLongGenerator
          Generates random Long values - distinguish between PK and non PK fields.
 class PrimitiveRandomShortGenerator
          Generates random Short values - distinguish between PK and non PK fields.
 class PrimitiveRandomStringGenerator
          Generates random string values - distinguish between PK and non PK fields.
 

Uses of Generator in com.bm.datagen.relation
 

Classes in com.bm.datagen.relation that implement Generator
 class BeanCollectionGenerator<T>
          Generates N entity beans (using own configurator settings) to enable bean creation for beans which are using 1:M or N:M relations.
 class SingleBeanGenerator<T>
          Generates 1 entity bean (using own configurator settings) to enable ben creation for beans wich are using 1:1 or N:1 relations.
 

Constructors in com.bm.datagen.relation with parameters of type Generator
BeanCollectionGenerator(java.lang.Class<T> beanToCreate, Generator<?>[] additionalGenerators, int beansToCreate)
          Constructor using additional generator (for this generator).
SingleBeanGenerator(java.lang.Class<T> beanToCreate, Generator<?>[] additionalGenerators)
          Contructor using additional generator (for this generator).
 

Uses of Generator in com.bm.datagen.utils
 

Methods in com.bm.datagen.utils with parameters of type Generator
 void GeneratorDependencyInjector.callCleanup(Generator<?> toInvoke)
          Invokes all annotated clean up methods.
 void GeneratorDependencyInjector.callPrepare(Generator<?> toInvoke)
          Invokes all annotated Prepare methods at the current generator.
 void GeneratorDependencyInjector.inject(Generator<?> toInject)
          This class injects the preset values if the registered annotations are present.
 

Uses of Generator in com.bm.testsuite
 

Constructors in com.bm.testsuite with parameters of type Generator
BaseEntityFixture(java.lang.Class<T> entityToTest, Generator[] additionalGenerators)
          Additional constructor.
BaseEntityFixture(java.lang.Class<T> entityToTest, Generator<?>[] additionalGenerators, java.lang.Class<?>[] referencedEntities)
          Additional constructor.
 

Uses of Generator in com.bm.utils
 

Methods in com.bm.utils with parameters of type Generator
static GeneratorType Ejb3Utils.getGeneratorTypeAnnotation(Generator actGenerator)
          Returns a generator type for a given generator.
 



Copyright © 2008. All Rights Reserved.