embed a java code editor with limited scope in a swing application? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T00:51:12Zhttp://stackoverflow.com/feeds/question/838899http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/838899/embed-a-java-code-editor-with-limited-scope-in-a-swing-application3embed a java code editor with limited scope in a swing application?Joshua2009-05-08T08:57:11Z2009-06-01T16:50:17Z
<p>Here's what I want to do. I want to store code objects in my hibernate driven java swing application. I want to allow the user to create code objects that can affect the data with a limited scope, like in a function with only access to members of that member's class. I'd even really like to have a full on little ide (though scaled down with all the irrelevencies hidden) in there which would allow auto-completion and have a button to compile and check, then have all that wrapped so I can drop the thing in my database and schedule it's execution.</p>
<p>Anyone have a good idea, know a good component or way to use eclipse or some such to accomplish this without having a roll out a solution myself?</p>
http://stackoverflow.com/questions/838899/embed-a-java-code-editor-with-limited-scope-in-a-swing-application/841330#8413301Answer by Tom Martin for embed a java code editor with limited scope in a swing application?Tom Martin2009-05-08T19:06:11Z2009-05-08T19:06:11Z<p>To achieve code highlighting and some <em>simple</em> auto complete functionality it would be worth looking at the <a href="http://code.google.com/p/jsyntaxpane/" rel="nofollow">jsyntaxpane</a> component.</p>
<p>It's pretty simple and easy to use but you're not going to get the compile functionality from that.</p>
http://stackoverflow.com/questions/838899/embed-a-java-code-editor-with-limited-scope-in-a-swing-application/843903#8439030Answer by Imaskar for embed a java code editor with limited scope in a swing application?Imaskar2009-05-09T19:48:15Z2009-05-09T19:48:15Z<p>you may use Eclipse RCP editor, it has lots of functionality available for reuse. e.g. text highlighting, pair constructions highlighting, text hovers, completion assist, etc.
its a lot more powerful, but a lot heavier. and RCP is not only editor...</p>