Edit « Text Input « Java Swing Q&A





1. Is there a library for editing program flow?    stackoverflow.com

I was wondering if there is a library for editing program flow. I refer to conditions if, loops (do, while, for) and other elements that can exist inside a program. What I ...

2. Visual objects editor    stackoverflow.com

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 ...

3. Swing RTF editing component - alternatives to RTFEditorkit?    stackoverflow.com

I want to embed an RTF editing swing component into an application. There is JTextPane which can be used with RTFEditorkit, and I have created a small sample editor with it. ...