Interface SeedDecorator
-
- All Known Implementing Classes:
MixWithSuiteName
public interface SeedDecoratorThis is an advanced feature. SeeSeedDecoratorsannotation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longdecorate(long seed)Called to decorate the initial seed for aRandomness.voidinitialize(java.lang.Class<?> suiteClass)Called once after instantiation to set up the decorator.
-
-
-
Method Detail
-
initialize
void initialize(java.lang.Class<?> suiteClass)
Called once after instantiation to set up the decorator.
-
decorate
long decorate(long seed)
Called to decorate the initial seed for aRandomness.
-
-