| org.gjt.sp.jedit.textarea.StructureMatcher
StructureMatcher | public interface StructureMatcher (Code) | | An interface for matching parts of a source file's stucture. The default
implementation matches brackets. The XML plugin provides an implementation
for matching XML tags.
author: Slava Pestov version: $Id: StructureMatcher.java 7156 2006-10-02 21:33:17Z kpouer $ since: jEdit 4.2pre3 |
Inner Class :public static class Match | |
Method Summary | |
Match | getMatch(TextArea textArea) Returns the element matching the one at the given text area's
caret position, or null. | void | selectMatch(TextArea textArea) Selects from the caret to the matching structure element (if there is
one, otherwise the behavior of this method is undefined). |
getMatch | Match getMatch(TextArea textArea)(Code) | | Returns the element matching the one at the given text area's
caret position, or null.
since: jEdit 4.2pre3 |
selectMatch | void selectMatch(TextArea textArea)(Code) | | Selects from the caret to the matching structure element (if there is
one, otherwise the behavior of this method is undefined).
since: jEdit 4.2pre3 |
|
|