If I have a Java class with the properties "firstName" and "lastName", I want to dynamically assign the property based on variables. To give an example:
public class MyClass {
public String firstName;
public String lastName;
}
...
def varname = "firstName";
def value = "Smith";
def instance = new MyClass();
/* Something like the following */
instance.$varname = value;
I know in python I could use setattr(instance, varname, value). This is kind of the opposite of setProperty.
Thanks