In eclipse, you can set custom "Detailed forms" under "Settings" → "Java" → "Debugging" → "Detailed forms" for printing objects in user modes during debugging. I would like to use a utility class to print an object using formatting, for example:
return com.foo.Bar.xzyToString(this);
where xzyToString is the static Bar method returning String, but eclipse complains that it is
'failed to resolve type: com.foo.Bar.xzyToString'. Adding "Bar" to the build path of the project does not allow you to find the class. How / where am I updating the path used by eclipse for resolving names in verbose formats?
source
share