I have 2 objects:
ObjectA
ObjectB
When I turn ObjectA to a string (ObjectA.toString()) it looks like this:
projectA.test.Object@e6db18d
Now with ObjectB when I turn it to a string (ObjectB.toString()) it looks like this:
ObjectB {color=StringProperty [value: blue], car=StringProperty [value: bmw]}
Now my question is why does one present a a string of numbers and letters while the other one presents me with a list? How can I do it that all my objects are presented like lists similar to ObjectB as this would be easier to read?