Interface AuthorHighlighterListener
@API(type=EXTENDABLE,
src=PUBLIC)
public interface AuthorHighlighterListener
Listener for the author highlighter events. To add this listener use the
following method:
AuthorHighlighter.addListener(AuthorHighlighterListener).- Since:
- 21.1
-
Method Summary
Modifier and TypeMethodDescriptionvoidallHighlightsRemoved(List<Highlight> removedHighlights) All highlights were removed.voidhighlightAdded(Highlight highlight) A highlight was added.voidhighlightRemoved(Highlight highlight) A highlight was removed.default voidhighlightsRemoved(Highlight[] highlights) A group of highlights was removed.
-
Method Details
-
highlightAdded
A highlight was added.- Parameters:
highlight- The added highlight.
-
highlightRemoved
A highlight was removed.- Parameters:
highlight- The removed highlight.
-
highlightsRemoved
A group of highlights was removed.- Parameters:
highlights- The removed highlights.
-
allHighlightsRemoved
All highlights were removed.- Parameters:
removedHighlights- The list of removed highlights.
-