Package jasima.core.experiment
Interface AbstractMultiConfExperiment.ComplexFactorSetter
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
ExcelExperimentReader.MultValueSetter
- Enclosing class:
- AbstractMultiConfExperiment
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface AbstractMultiConfExperiment.ComplexFactorSetter extends Serializable
Allows finer control of the way a base experiment is configured than the usual mechanism using JavaBean properties. If an object implementing ComplexFactorSetter is passed as a value when callingaddFactor(String, Object)then instead of setting a bean property the methodconfigureExperiment(Experiment)is called.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidconfigureExperiment(Experiment e)Configures an experiment.
-
-
-
Method Detail
-
configureExperiment
void configureExperiment(Experiment e)
Configures an experiment.- Parameters:
e- The experiment to configure.
-
-