Transform.toString

Can we make toString put everything on a single line?
I’m seeing just the first line in the Variables view during debugging, I always have to click the line to see the full value.
Also, since it’s a structured value and not just a transformation matrix, some subelement labels would be in order, like this:

[java] @Override
public String toString() {
return getClass().getSimpleName() +
" (translation " + translation +
", rotation " + rot +
", scale " + scale +
“)”;
}[/java]

Output looks like this:
Transform (translation (0.0, 0.0, 0.0), rotation (0.0, 0.0, 0.0, 1.0), scale (1.0, 1.0, 1.0))