I have a CssResource where I want to have some of the css classes \"mapped\" to methods:
@ClassName(\"top-table\")
String topTable();
But I wan
According to the GWT documentation it is possible to disable ofbuscation in general. From CssResource section "levers and knobs":
The configuration property CssResource.style may be set to pretty which will disable class-name obfuscation as well as pretty-print the CSS content. Combine this with a ClientBundle.enableInlining value of false to produce a CSS expression which is amenable to client-side editing.
In my work GWT project, I can see this property is actually set in Resources.gwt.xml (included in gwt-user.jar):
What is unclear to me is how to override this value, since it is already set. Did you manage to figure that out?