Is there a possibility to change GWT errors/warnings preferences without using the eclipse UI ? Are these preferences stored anywhere or can I overwrite them somehow using the preference files in .settings directory ?
Best Regards,
Jake
If you're referring to the GWT compiler's log level setting then it can be set from the command line.
Luckily I've managed to find the setting on my own. In the global eclipse preferences there is a property called com.google.gdt.eclipse.suite/problemSeverities . You can check how to set it by exporting all the eclipse preferences after some changes made in UI. In my case I needed to change it to:
com.google.gdt.eclipse.suite/problemSeverities=com.google.gwt.eclipse.core.uibinder.problems.UiBinderTemplateProblemType#401\=1
Thanks for your responses,
Jake