Hi,
I'm struggling with a specific use case.
Using the example your giving I'm trying to create a Person object and then modify it's age.
I did create the Person interface and the builder is indeed generated.
My issue is when i use the object. I can't find a way to update a value like age.
Person thomas = new Person.Builder().setAge(41).build();
thomas.setAge(42);
The setAge function doesn't exist
I can not find a class i could extend to create such a function or any logic to implement.
Am i missing anything ?
Thanks