As one of the features in an in-house testing tool I'm interested in allowing the user to view the fileds' values of Java objects in a graphical way.
So, as far as I understand, the object's class needs to implement Serializable -and according to Effective Java book, preferably the custom form of the read/write methods.
This way I can use the serialized version of the objects as input for the viewer (this is more for after-run comparisons and regression-type comparisons with other runs rather than run-time viewing)
How does one go about implementing something like this,especially as I have close to zero experience in developing Java GUI applications?
Are there any relevant frameworks available-both for GUI as well as for the object-visualization part?
Thanks a lot!