Tagged Questions
0
votes
0answers
143 views
Inserting text into a JTextPane without a newline
For awhile now, I've been trying to insert a character, sorta like auto-completion in Eclipse into a JTextPane with the following code:
import java.awt.BorderLayout;
import java.awt.Dimension;
import ...
2
votes
1answer
316 views
How to implement an auto-complete for a text editor written in java?
I'm trying to create a text editor like program for coding in mips assembly using java , the point i got mixed up alittle was the part i was trying to provide a Control-Space feature like that of ...
1
vote
1answer
210 views
When is legal call getMagicCaretPosition()
I'm developing an autocompletion functionality (that consists in a little window under the caret position that suggest what you'll writing) extending a JTextPane, and in a KeyAdapter associated to ...
3
votes
5answers
2k views
How can I create an AutoComplete popup in a JTextPane in Java?
I am creating a SQL editor. I am using JTextPane for the editor. I want to implement AutoCompletion for table name etc. like Eclipse.