I am looking for a tool which will make able to edit parts of Java code visually using something like inspector and place code back.
For example:
Person p = new Person();
p.setName("Bill Libb");
p.setAge(25);
This code should be generated from visual inspector and copied into Java IDE.
This will help quickly create sample objects for testing.
Pros of this approach:
Don't need to think what can be changed in object - you see what properties available to change immediately.
You don't need to code setting properties - just type the value in the appropriate inspector property.
You have a new way of defining/describing object which gives a feeling more that you working with objects rather than with code.