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
To have not obfuscated class names you simply need to add following line to your gwt.xml file:
When set to stable class names will consist of qualified class name followed by method name in your resource interfaces (of course with all . replaced by _)
All possible values for CssResource.style (for gwt 2.7) are:
To verify values available for your gwt version look at com.google.gwt.resources.rg.CssObfuscationStyle javadoc (or source code) for gwt version you're using.