GWT gen name of class field

Go To StackoverFlow.com

0

I know that in GWT the java reflection tools isn't emulated, but is there a way to get name of class field?

2012-04-04 05:20
by user1289877
what do you mean "name of class field" - Michael Wiles 2012-04-04 06:26
class ExampleClass { private Integer ImField; - user1289877 2012-04-04 06:27


0

No. Also due too obfuscating is the field name different than the name in the source code, or even due too optimization could the field be optimized away and not appear in the generated JavaScript.

2012-04-04 12:10
by Hilbrand Bouwkamp
Ads