I have code below:
public interface Event {
static final String BUTTON_PRESSED = "buttonPressed";
}
In debuger the value of String is:
[", b, u, t, t, o, n, P, r, e, s, s, e, d, "]
so the quotes are addes in the begining and the end of char sequence.
but if I do
String some_string = BUTTON_PRESSED;
the some_string value is:
[ b, u, t, t, o, n, P, r, e, s, s, e, d ]
I am Java programmer, maybe it is some JavaScript issue?
I use GWT 2.0.4 with Firefox: Mozilla/5.0 (Windows; U; Windows NT 5.1;
pl; rv:1.9.2.10) Gecko/20100914 Firefox/3.6.10.
--
Regards
Artur
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
No comments:
Post a Comment