There is some generated code that builds a map. The values placed in map are multiline strings.
Example:
theMap.put("SOMEKEY", "Line 1 of string.
Also line 2 of string.
Perhaps more");
When I try to copy/paste the code to eclipse I get red errors due to the format of the value in the map.
I googled and found and here that there is a configuration in Eclipse to preserve the formatting in String literals but it does not seem to work in this case.
Is there any other configuration option?