Uses of Interface
org.databene.benerator.GeneratorContext

Packages that use GeneratorContext
org.databene.benerator The root package for the databene-generator library. 
org.databene.benerator.composite   
org.databene.benerator.dataset   
org.databene.benerator.distribution   
org.databene.benerator.distribution.sequence   
org.databene.benerator.engine   
org.databene.benerator.file   
org.databene.benerator.primitive Implements Generators for simple Java types. 
org.databene.benerator.primitive.datetime   
org.databene.benerator.primitive.number Defines a small framework for generating numbers of all built-in Java number types (byte, short, int, long, BigInteger, float, double, BigDecimal) resulting from a sequence or being distributed according a distribution function. 
org.databene.benerator.sample Provides Generators that are based on collections of samples. 
org.databene.benerator.util Provides utility classes for data generation. 
org.databene.benerator.wrapper Defines generators that wrap other generators and forward or convert their products 
org.databene.domain.address databene domain for address data. 
org.databene.domain.finance   
org.databene.domain.net   
org.databene.domain.person databene domain for Person data. 
org.databene.domain.product   
org.databene.platform.db platform adapter for databases. 
 

Uses of GeneratorContext in org.databene.benerator
 

Methods in org.databene.benerator with parameters of type GeneratorContext
 void Generator.init(GeneratorContext context)
           
 

Uses of GeneratorContext in org.databene.benerator.composite
 

Fields in org.databene.benerator.composite declared as GeneratorContext
protected  GeneratorContext ComponentBuilderProxy.context
           
protected  GeneratorContext AbstractGeneratorComponent.context
           
 

Methods in org.databene.benerator.composite with parameters of type GeneratorContext
 void SourceAwareGenerator.init(GeneratorContext context)
           
 

Constructors in org.databene.benerator.composite with parameters of type GeneratorContext
ComponentAndVariableSupport(java.lang.String instanceName, java.util.List<GeneratorComponent<E>> components, GeneratorContext context)
           
 

Uses of GeneratorContext in org.databene.benerator.dataset
 

Methods in org.databene.benerator.dataset with parameters of type GeneratorContext
 void AbstractDatasetGenerator.init(GeneratorContext context)
           
 

Uses of GeneratorContext in org.databene.benerator.distribution
 

Methods in org.databene.benerator.distribution with parameters of type GeneratorContext
 void WeightedLongGenerator.init(GeneratorContext context)
           
 void WeightedDoubleGenerator.init(GeneratorContext context)
           
 void IndexBasedSampleGeneratorProxy.init(GeneratorContext context)
           
 void DistributingGenerator.init(GeneratorContext context)
           
 

Uses of GeneratorContext in org.databene.benerator.distribution.sequence
 

Methods in org.databene.benerator.distribution.sequence with parameters of type GeneratorContext
 void WedgeLongGenerator.init(GeneratorContext context)
           
 void WedgeDoubleGenerator.init(GeneratorContext context)
           
 void StepLongGenerator.init(GeneratorContext context)
           
 void StepDoubleGenerator.init(GeneratorContext context)
           
 void ShuffleLongGenerator.init(GeneratorContext context)
           
 void ShuffleDoubleGenerator.init(GeneratorContext context)
           
 void RandomWalkLongGenerator.init(GeneratorContext context)
           
 void RandomWalkDoubleGenerator.init(GeneratorContext context)
           
 void RandomLongGenerator.init(GeneratorContext context)
           
 void RandomIntegerGenerator.init(GeneratorContext context)
           
 void RandomBigIntegerGenerator.init(GeneratorContext context)
           
 void RandomBigDecimalGenerator.init(GeneratorContext context)
           
 void ExpandGeneratorProxy.init(GeneratorContext context)
           
 void CumulatedLongGenerator.init(GeneratorContext context)
           
 void CumulatedDoubleGenerator.init(GeneratorContext context)
           
 void BitReverseNaturalNumberGenerator.init(GeneratorContext context)
           
 void BitReverseLongGenerator.init(GeneratorContext context)
           
 

Uses of GeneratorContext in org.databene.benerator.engine
 

Subinterfaces of GeneratorContext in org.databene.benerator.engine
 interface BeneratorContext
          A BeneratorContext.
 interface BeneratorSubContext
          Common interface for Benerator sub contexts.
 

Classes in org.databene.benerator.engine that implement GeneratorContext
 class AbstractBeneratorSubContext
          Abstract implementation of the BeneratorSubContext interface.
 class DefaultBeneratorContext
          Default implementation of BeneratorContext.
 class DefaultBeneratorSubContext
          Sub context version of the BeneratorContext.
 

Methods in org.databene.benerator.engine with parameters of type GeneratorContext
 void TaskBasedGenerator.init(GeneratorContext context)
           
 

Uses of GeneratorContext in org.databene.benerator.file
 

Methods in org.databene.benerator.file with parameters of type GeneratorContext
 void XMLFileGenerator.init(GeneratorContext context)
           
 void FileGenerator.init(GeneratorContext context)
           
 void FileContentGenerator.init(GeneratorContext context)
           
 

Uses of GeneratorContext in org.databene.benerator.primitive
 

Methods in org.databene.benerator.primitive with parameters of type GeneratorContext
protected  GeneratorFactory RegexStringGenerator.getGeneratorFactory(GeneratorContext context)
           
 void UniqueScrambledStringGenerator.init(GeneratorContext context)
           
 void UniqueIntsGenerator.init(GeneratorContext context)
           
 void UniqueFixedLengthStringGenerator.init(GeneratorContext context)
           
 void TokenCombiner.init(GeneratorContext context)
           
 void TokenCombiner.SimpleTokenCombinator.init(GeneratorContext context)
           
 void StringGenerator.init(GeneratorContext context)
           
 void RegexStringGenerator.init(GeneratorContext context)
          ensures consistency of the generators state
 void RandomVarLengthStringGenerator.init(GeneratorContext context)
           
 void LuhnGenerator.init(GeneratorContext context)
           
 void HiLoGenerator.init(GeneratorContext context)
           
 void EquivalenceStringGenerator.init(GeneratorContext context)
           
 void DynamicLongGenerator.init(GeneratorContext context)
          ensures consistency of the state
 void CharacterGenerator.init(GeneratorContext context)
          Initializes the generator's state.
 

Uses of GeneratorContext in org.databene.benerator.primitive.datetime
 

Methods in org.databene.benerator.primitive.datetime with parameters of type GeneratorContext
 void DayGenerator.init(GeneratorContext context)
           
 void DateTimeGenerator.init(GeneratorContext context)
           
 void DateGenerator.init(GeneratorContext context)
           
 

Uses of GeneratorContext in org.databene.benerator.primitive.number
 

Methods in org.databene.benerator.primitive.number with parameters of type GeneratorContext
 void RecurrenceRelationNumberGenerator.init(GeneratorContext context)
           
 void AbstractNonNullNumberGenerator.init(GeneratorContext context)
           
 

Uses of GeneratorContext in org.databene.benerator.sample
 

Methods in org.databene.benerator.sample with parameters of type GeneratorContext
 void WeigthedLiteralGenerator.init(GeneratorContext context)
           
 void WeightedCSVSampleGenerator.init(GeneratorContext context)
           
 void StateGenerator.init(GeneratorContext context)
           
 void SequencedCSVSampleGenerator.init(GeneratorContext context)
           
 void SeedGenerator.init(GeneratorContext context)
           
 void SampleGenerator.init(GeneratorContext context)
          Initializes all attributes
 void OneShotGenerator.init(GeneratorContext context)
           
 void IndividualWeightSampleGenerator.init(GeneratorContext context)
          Initializes all attributes
 void AttachedWeightSampleGenerator.init(GeneratorContext context)
          Initializes all attributes
 

Uses of GeneratorContext in org.databene.benerator.util
 

Fields in org.databene.benerator.util declared as GeneratorContext
protected  GeneratorContext GeneratingConverter.context
           
protected  GeneratorContext AbstractGenerator.context
           
 

Methods in org.databene.benerator.util with parameters of type GeneratorContext
static void GeneratorUtil.init(Generator<?> generator, GeneratorContext context)
           
 void SharedGenerator.init(GeneratorContext context)
           
 void AbstractGenerator.init(GeneratorContext context)
           
static void GeneratorUtil.initAll(Generator<?>[] generators, GeneratorContext context)
           
 

Uses of GeneratorContext in org.databene.benerator.wrapper
 

Methods in org.databene.benerator.wrapper with parameters of type GeneratorContext
 void WeightedGeneratorGenerator.init(GeneratorContext context)
           
 void ValidatingGeneratorProxy.init(GeneratorContext context)
           
 void UniqueMultiSourceArrayGenerator.init(GeneratorContext context)
           
 void SynchronizedGeneratorProxy.init(GeneratorContext context)
           
 void SkipGeneratorProxy.init(GeneratorContext context)
           
 void RepeatGeneratorProxy.init(GeneratorContext context)
           
 void OffsetBasedGenerator.init(GeneratorContext context)
           
 void NullStartingGenerator.init(GeneratorContext context)
           
 void MultiSourceArrayGenerator.init(GeneratorContext context)
           
 void MultiGeneratorWrapper.init(GeneratorContext context)
           
 void MessageGenerator.init(GeneratorContext context)
          ensures consistency of the generator's state
 void LastProductDetector.init(GeneratorContext context)
           
 void IteratingGenerator.init(GeneratorContext context)
           
 void GeneratorWrapper.init(GeneratorContext context)
           
 void GeneratorChain.init(GeneratorContext context)
           
 void DataSourceGenerator.init(GeneratorContext context)
           
 void ConvertingGenerator.init(GeneratorContext context)
           
 void CollectionGenerator.init(GeneratorContext context)
          ensures consistency of the state
 void CardinalGenerator.init(GeneratorContext context)
          ensures consistency of the state
 

Uses of GeneratorContext in org.databene.domain.address
 

Methods in org.databene.domain.address with parameters of type GeneratorContext
 void StreetNameGenerator.init(GeneratorContext context)
           
 void AddressGenerator.init(GeneratorContext context)
           
 

Uses of GeneratorContext in org.databene.domain.finance
 

Methods in org.databene.domain.finance with parameters of type GeneratorContext
 void BankGenerator.init(GeneratorContext context)
           
 void BankAccountGenerator.init(GeneratorContext context)
           
 

Uses of GeneratorContext in org.databene.domain.net
 

Methods in org.databene.domain.net with parameters of type GeneratorContext
 void RandomDomainGenerator.init(GeneratorContext context)
           
 void CompanyDomainGenerator.init(GeneratorContext context)
           
 

Uses of GeneratorContext in org.databene.domain.person
 

Methods in org.databene.domain.person with parameters of type GeneratorContext
 void PersonGenerator.init(GeneratorContext context)
           
 void NobilityTitleGenerator.init(GeneratorContext context)
           
 void GenderGenerator.init(GeneratorContext context)
           
 void EMailAddressGenerator.init(GeneratorContext context)
           
 void EMailAddressBuilder.init(GeneratorContext context)
           
 void BirthDateGenerator.init(GeneratorContext context)
           
 

Uses of GeneratorContext in org.databene.domain.product
 

Methods in org.databene.domain.product with parameters of type GeneratorContext
 void EANGenerator.init(GeneratorContext context)
           
 void EAN8Generator.init(GeneratorContext context)
           
 void EAN13Generator.init(GeneratorContext context)
           
 

Uses of GeneratorContext in org.databene.platform.db
 

Methods in org.databene.platform.db with parameters of type GeneratorContext
 void SequenceTableGenerator.init(GeneratorContext context)
           
 void QueryGenerator.init(GeneratorContext context)
           
 void DBSequenceGenerator.init(GeneratorContext context)
           
 void CachedSequenceGenerator.init(GeneratorContext context)
           
 void AbstractSequenceGenerator.init(GeneratorContext context)
           
 



Copyright © 2013. All Rights Reserved.