Projects tagged ‘highlight’ and ‘java’


Jump to tag:

Projects tagged ‘highlight’ and ‘java’

Filtered by Project Tags highlight java

Refine results Project Tags syntax (2) code (2) wide (1) html (1) library (1) php (1) ide (1) programming (1) jtextcomponent (1) xml (1) c (1) spellcheck (1)

[4 total ]

1 Users

Small embeddable pure Java library to perform source code highlighting and render the results in a variety of formats.
Created over 3 years ago.

0 Users

WIDE is an attempt at recreating desktop IDE usability on the web, for the deloper on the move. Planned features include, but are not limited to: - Support for Java, ASP.NET and PHP apps. Ruby and ... [More] Python support is also planned. - Syntax Highlighting editor for all languages, featuring code completion (IntelliSense) - Outline view similar to Eclipse - Automated deployment to hosted or in-house servers. [Less]
Created about 1 year ago.

0 Users

Features: Highlights identifiers under caret If more than one instance with the same identifier is used in the file, only the usages of that specific instance are highlighted Use Shift+Alt+Up and ... [More] Shift+Alt+Down to navigate up and down to each highlighted occurrence Use Shift+Alt+Right to return to original highlighted occurrence starting point Use Shift+Alt+Left to go to the declaration highlighted occurrence only if exists in the same file Use Shift+Alt+R to rename the highlighted occurrences in the file Use Shift+Alt+L and Shift+Alt+U to lock and unlock the highlighting to allow movement through the file without changing the highlighted occurences [Less]
Created 12 months ago.

0 Users

NTSpellCheck highlights misspelled words as you type them. Instructions when using NetBeans IDE 6.0 or above: 1)Download and save NTSpellCheck.jar from Downloads 2)Right click on the project ... [More] which will use NTSpellCheck 3)Click on Properties 4)Click on Libraries (located to the left of the dialog) 5)Click on the Compile tab, then click the Add JAR/Folder button 6)Navigate to the location where you saved NTSpellCheck.jar and double-click it 7)In your source file, add the following import: import NTSpellCheck.NTSpellCheck 8)When you need to spell check a JTextComponent, create an instance of NTSpellCheck with the following constructor (Note that it throws an IOException): NTSpellCheck(JTextComponent tc, File dictionaryFile, boolean checkSpelling, boolean manageRightClicks, int delay, Color highlightColor) Where: JTextComponent tc is the JTextComponent to be Spell-Checked; File dictionaryFile is the file containing the dictionary(included)(words should be separated by newlines); boolean checkSpelling specifies whether it should begin checking the spelling automatically; boolean manageRightClicks specifies whether it should manage the right-click pop-up menu for the JTextComponent; int delay specifies the delay, in milliseconds, to wait after a key is pressed before re-checking the spelling(recommended - 100), and Color highlightColor is the highlight color(recommended - Color.orange) IMPORTANT- When using Swing dialog boxes like JFileChooser, etc, use the toggleSpellCheck() method to stop spell checking! If you don't, there will be significant performance degrades in the Swing class. When done using the dialog box, use the same method to restart the spell checker. NOTE - You can use setHighlightColor(Color newColor) and setHighlightDelay(int newDelay) to reset the highlight color and delay respectively. You can download the example if you need one. [Less]
Created 12 months ago.