Table of Contents

Explicitly use PM

By default, parameter are added to the default parameter manager. It is possible to link them to a specific parameter manager either by:

By type

This refer or create a new “default” parameter manager of the given type.

@IsParameter(type=EmptyParameterManager.class)
float f1;

By name

@AddParameterManager(name="envParam", type=TextFilePM.class)
@IsParameter("envParam")
float f1;