Hi,
With the use of the optimiser, I have to try different strings as parameter so I'm using @Configurable like this :
@Configurable("test : ")
public String MyTest = "Test1";
The problem is, I have to add manually in the box other values for MyTest (for ex. "Test2", "test3"...)
How can I preload all values without having to write them each time ?
I tried to make an Array or a list, but it doesn't seem to work.
@Configurable("testArray : ")
public String [] MyTest = {"Test1", "Test2", "Test3"};
or
@Configurable("testList : ")
List<String> MyTest = new ArrayList<String>();
MyTest .add("Test1");
MyTest .add("Test2");
MyTest .add("Test3");
Tanks