| net.xoetrope.builder.editor.syntaxhighlight.Highlight
Highlight | public interface Highlight (Code) | | Highlight interface.
|
getToolTipText | String getToolTipText(MouseEvent evt)(Code) | | Returns the tool tip to display at the specified
location. If this highlighter doesn't know what to
display, it should delegate to the next highlight
painter.
Parameters: evt - The mouse event |
init | void init(JEditTextArea textArea, Highlight next)(Code) | | Called after the highlight painter has been added.
Parameters: textArea - The text area Parameters: next - The painter this one should delegate to |
paintHighlight | void paintHighlight(Graphics gfx, int line, int y)(Code) | | This should paint the highlight and delgate to the
next highlight painter.
Parameters: gfx - The graphics context Parameters: line - The line number Parameters: y - The y co-ordinate of the line |
|
|