
Custom Datatypes for lists don't get saved.
Geometrically opened this issue ยท 1 comments
When editing a List of custom objects as shown below, they get parsed correctly, but when editing them in the GUI config they are not saved.
private final List<PairOfInts> complexList = Arrays.asList(new PairOfInts(0, 1), new PairOfInts(3, 7));
private static class PairOfInts {
private int foo;
private int bar;
PairOfInts() {
this(1, 2);
}
PairOfInts(int foo, int bar) {
this.foo = foo;
this.bar = bar;
}
}