Quick question here -- I just used JsArrayString for the first time, and was surprised that this didn't work:
JsArrayString object = ...;
for (String s : object)
So I just wrote a C-style for loop:
JsArrayString object = ...;
for (int i=0; i<object.length(); i++) {
s = object.get(i)
...
Not a big deal, but seems like it would have been simple for the GWT team to have JSArrayString implement iterable, so I wanted to check and make sure I wasn't missing something...