I'm sorry for asking this sort of questions, but I really couldn't find the answer in Google. So say I have a class with private String myColor and I have a string "myColor". Now I want to manipulate the myColor attribute. How can I do that?
Edit:
Sorry for an unclear question, I guess the best way is to explain what I need it for. I've got a Swing form and want to use the preferences api to set the values of fields when loading gui. So I can read all the fields and then do outputDirectoryTextField.setText(valueFromPrefsAPI); for each of them, but that seems to be a bit of unneeded coding so I want to have an array(hash?) with the names of fields and loop through them, like this:
String[] myTextInputs = {"thisInput", "thatInput"};
for (String inputName : myTextInputs) {
String value = prefs.get(inputName, "");
/* some code I'm seeking to find out*/.setText(value);
}
BeanPropertyController bpc = BeanPropertyController.of(YourClass.class, ExtractionDepth.FIELDS); bpc.mutate("myColor", itsNewValue);However do note thatExtractionDepth.FIELDSassumes that at least a getter exists for the field with a matching name. – Esko Jan 11 '10 at 20:41