org.gjt.sp.jedit.indent
Class CloseBracketIndentRule
java.lang.Object
org.gjt.sp.jedit.indent.BracketIndentRule
org.gjt.sp.jedit.indent.CloseBracketIndentRule
- All Implemented Interfaces:
- IndentRule
public class CloseBracketIndentRule
- extends BracketIndentRule
Method Summary |
void |
apply(JEditBuffer buffer,
int thisLineIndex,
int prevLineIndex,
int prevPrevLineIndex,
java.util.List<IndentAction> indentActions)
Apply the indent rule to this line, and return an indent action. |
boolean |
isMatch(java.lang.String line)
Deprecated. This method calls BracketIndentRule#getBrackets(String)
which has been deprecated. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
CloseBracketIndentRule
public CloseBracketIndentRule(char closeBracket,
boolean aligned)
apply
public void apply(JEditBuffer buffer,
int thisLineIndex,
int prevLineIndex,
int prevPrevLineIndex,
java.util.List<IndentAction> indentActions)
- Description copied from interface:
IndentRule
- Apply the indent rule to this line, and return an indent action.
- Parameters:
buffer
- the bufferthisLineIndex
- the line indexprevLineIndex
- the prior non empty line index
(or -1 if there is no prior non empty line)prevPrevLineIndex
- the prior non empty line index before the prevLineIndex
(or -1 if there is no prior non empty line)indentActions
- the indent actions list. The rule can add an action in it if
it is necessary
isMatch
@Deprecated
public boolean isMatch(java.lang.String line)
- Deprecated. This method calls BracketIndentRule#getBrackets(String)
which has been deprecated.