posted 12 years ago
GWT & JSON: I can use Overlays & getters to access JSON data, but not setters. Using getters is really slicker 'n snot, but the setters are making me old.
savedNames = JsonUtils.safeEval(result);
if(savedNames.getNames() != null ) {
for( int i = 0; i < savedNames.getNames().length(); i++) {
NameEntry entry = savedNames.getNames().get(i);
contactListBox.addItem(entry.getContact());
}
}
That all works really well. Fast, clear, useful.
In the examples of the overlays there are getters, and also setters. There are examples of using getters, but I can not find an example of using a setter.
So far, no luck figuring out how to use setters. Any ideas would be welcome.
Thanks all.