Uses of Class
org.fife.ui.rsyntaxtextarea.DocumentRange
-
Packages that use DocumentRange Package Description org.fife.ui.rsyntaxtextarea A syntax-highlighting text editor.org.fife.ui.rtextarea A single-font text editor with many custom features. -
-
Uses of DocumentRange in org.fife.ui.rsyntaxtextarea
Fields in org.fife.ui.rsyntaxtextarea declared as DocumentRange Modifier and Type Field Description private DocumentRange
ErrorStrip.MarkedOccurrenceNotice. range
Methods in org.fife.ui.rsyntaxtextarea that return DocumentRange Modifier and Type Method Description DocumentRange
DocumentRange. translate(int amount)
Translates this document range by a given amount.Methods in org.fife.ui.rsyntaxtextarea that return types with arguments of type DocumentRange Modifier and Type Method Description java.util.List<DocumentRange>
RSyntaxTextArea. getMarkAllHighlightRanges()
Returns a list of "mark all" highlights in the text area.java.util.List<DocumentRange>
RSyntaxTextArea. getMarkedOccurrences()
Returns a list of "marked occurrences" in the text area.java.util.List<DocumentRange>
RSyntaxTextAreaHighlighter. getMarkedOccurrences()
Returns a list of "marked occurrences" in the text area.Methods in org.fife.ui.rsyntaxtextarea with parameters of type DocumentRange Modifier and Type Method Description int
DocumentRange. compareTo(DocumentRange other)
Compares this document range to another.static void
RSyntaxUtilities. selectAndPossiblyCenter(javax.swing.JTextArea textArea, DocumentRange range, boolean select)
Selects a range of text in a text component.Method parameters in org.fife.ui.rsyntaxtextarea with type arguments of type DocumentRange Modifier and Type Method Description private void
ErrorStrip. addMarkersForRanges(java.util.List<DocumentRange> ranges, java.util.Map<java.lang.Integer,ErrorStrip.Marker> markerMap, java.awt.Color color)
Adds markers for a list of ranges in the document.Constructors in org.fife.ui.rsyntaxtextarea with parameters of type DocumentRange Constructor Description MarkedOccurrenceNotice(DocumentRange range, java.awt.Color color)
-
Uses of DocumentRange in org.fife.ui.rtextarea
Fields in org.fife.ui.rtextarea declared as DocumentRange Modifier and Type Field Description private DocumentRange
SearchResult. matchRange
If a find or replace operation is successful, this will be the range of text representing the found text (for "find" operations) or the replacement text inserted (for "replace" operations; for "replace all" operations this will be the last replacement region).Methods in org.fife.ui.rtextarea that return DocumentRange Modifier and Type Method Description DocumentRange
SearchResult. getMatchRange()
If a find or replace operation is successful, this will be the range of text representing the found text (for "find" operations) or the replacement text inserted (for "replace" operations; for "replace all" operations this will be the last replacement region).Methods in org.fife.ui.rtextarea that return types with arguments of type DocumentRange Modifier and Type Method Description java.util.List<DocumentRange>
RTextAreaHighlighter. getMarkAllHighlightRanges()
Returns a list of "mark all" highlights in the text area.Methods in org.fife.ui.rtextarea with parameters of type DocumentRange Modifier and Type Method Description void
SearchResult. setMatchRange(DocumentRange range)
Sets the selected range for this search operation.Method parameters in org.fife.ui.rtextarea with type arguments of type DocumentRange Modifier and Type Method Description void
RTextArea. markAll(java.util.List<DocumentRange> ranges)
Marks all ranges specified with the "mark all" highlighter.Constructors in org.fife.ui.rtextarea with parameters of type DocumentRange Constructor Description SearchResult(DocumentRange range, int count, int markedCount)
Constructor.
-