Registry / utility / rsyntaxtextarea

rsyntaxtextarea

JSON →
library3.6.2javamavenunverified

Syntax highlighting text editor component for Swing applications supporting 40+ languages, code folding, and code completion.

<dependency> <groupId>com.fifesoft</groupId> <artifactId>rsyntaxtextarea</artifactId> <version>3.6.2</version> </dependency>
INSTALL
IMPORT
SIG · RSYNTAXTEXTAREA
R
rsyntaxtextarea
utilityjavav3.6.2
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

RSyntaxTextArea
org.fife.ui.rsyntaxtextarea.RSyntaxTextArea

Creating a syntax-highlighted text area for Java code

import org.fife.ui.rsyntaxtextarea.RSyntaxTextArea; import javax.swing.*; public class Example { public static void main(String[] args) { RSyntaxTextArea textArea = new RSyntaxTextArea(20, 60); textArea.setSyntaxEditingStyle(RSyntaxTextArea.SYNTAX_STYLE_JAVA); textArea.setText("public class Hello { }"); JFrame frame = new JFrame(); frame.add(new JScrollPane(textArea)); frame.pack(); frame.setVisible(true); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
3.6.2latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources
rsyntaxtextarea — mvn dependency:get rsyntaxtextarea · libregistry