What is best control in Java for simple editor

120 Views Asked by At

I need to implement light editor ( recognize part of key words, syntax highlight and suggest all of word in dropdown list if user type part with same prefix). What is best control in Java for this task ?

3

There are 3 best solutions below

0
Koekiebox On BEST ANSWER

You can go through the Java Tutorial - Using Text Components along with the examples page.

0
Riduidel On

You could use JEditTextArea as a start point.

0
Puce On