I use NetBeans for all my GUI development. I would like to use your synax coloring package, but I've run across an issue with the RTextScrollPane class.
In Netbeans, when I add a JScrollPane, NetBeans instantiates the default constructor. Unfortuantely, RTextScrollPane doesn't have a default constructor.
Then, in the generated code, NetBeans calls the 'setViewportView(component)' method to tie the TextArea field to the scroll pane. For example:
jScrollPane1 = new javax.swing.JScrollPane();
scriptEditorPane = new com.dotomi.common.ui.components.DotomiEditorPane();
jScrollPane1.setViewportView(scriptEditorPane);
This methodology won't work with the RTextScrollPane class. If you could change the RTextScrollPane class to work with NetBeans, that would definitely make me a believer.
Dennis Meers
