Visual objects editor
Posted
by Vladimir
on Stack Overflow
See other posts from Stack Overflow
or by Vladimir
Published on 2010-04-01T17:41:54Z
Indexed on
2010/04/01
17:43 UTC
Read the original article
Hit count: 381
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.
© Stack Overflow or respective owner