Uses of Interface
org.gjt.sp.jedit.indent.IndentAction

Packages that use IndentAction
org.gjt.sp.jedit.indent   
 

Uses of IndentAction in org.gjt.sp.jedit.indent
 

Classes in org.gjt.sp.jedit.indent that implement IndentAction
static class IndentAction.AlignBracket
           
static class IndentAction.AlignOffset
           
static class IndentAction.AlignParameter
          Indent action used for deep indent.
static class IndentAction.Collapse
          This handles the following Java code: if(something) { // no indentation on this line, even though previous matches a rule
static class IndentAction.Decrease
           
static class IndentAction.Increase
           
static class IndentAction.Reset
           
 

Method parameters in org.gjt.sp.jedit.indent with type arguments of type IndentAction
 void RegexpIndentRule.apply(JEditBuffer buffer, int thisLineIndex, int prevLineIndex, int prevPrevLineIndex, java.util.List<IndentAction> indentActions)
           
 void OpenBracketIndentRule.apply(JEditBuffer buffer, int thisLineIndex, int prevLineIndex, int prevPrevLineIndex, java.util.List<IndentAction> indentActions)
           
 void IndentRule.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.
 void DeepIndentRule.apply(JEditBuffer buffer, int thisLineIndex, int prevLineIndex, int prevPrevLineIndex, java.util.List<IndentAction> indentActions)
           
 void CloseBracketIndentRule.apply(JEditBuffer buffer, int thisLineIndex, int prevLineIndex, int prevPrevLineIndex, java.util.List<IndentAction> indentActions)
           
 

Constructors in org.gjt.sp.jedit.indent with parameters of type IndentAction
RegexpIndentRule(java.lang.String regexp, IndentAction prevPrev, IndentAction prev, IndentAction thisLine, boolean collapse)