in my classes when writing the toString() method I always use the ToStringBuilder from org.apache.commons
And when I'm extending other classes I use appendSuper() and then my appendsThe question:
Are there are any ...
I need to be able to traverse through my entire object graph and log all contents of all member fields. So Object A has a collection of Object Bs which has ...