I am creating a Swing application where the user should be able to edit JavaScript codes. So I need some kind of code editor embedded in Java that supports:
- Customizable autofill (or, if itβs not already done, flexible enough so that it can be easily implemented)
- Syntax errors highlight (for example, Netbeans or other advanced editors that may mark lines with syntax problems)
- Color syntax highlighting (not very important)
The need to embed in Java is mainly related to autocomplete, which will be dynamic and very specific to the application.
Is there such an editor?
douglaz
source share