KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > swing > text > Highlighter

javax.swing.text
Interface Highlighter

All Known Implementing Classes:
BasicTextUI.BasicHighlighter, DefaultHighlighter, LayeredHighlighter
See Also:
Source Code

Object addHighlight(int p0,
                    int p1,
                    Highlighter.HighlightPainter p)
                    throws BadLocationException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void changeHighlight(Object tag,
                     int p0,
                     int p1)
                     throws BadLocationException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void deinstall(JTextComponent c)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


Highlighter.Highlight[] getHighlights()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void install(JTextComponent c)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void paint(Graphics g)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void removeAllHighlights()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void removeHighlight(Object tag)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags