| Package | Description | 
|---|---|
| org.gjt.sp.jedit.indent | Indentation rules and actions. | 
| Modifier and Type | Field and Description | 
|---|---|
| static IndentAction.Collapse | IndentAction. PrevCollapseThis handles the following Java code:
 if(something)
 { // no indentation on this line, even though previous matches a rule | 
| static IndentAction.Collapse | IndentAction. PrevPrevCollapseThis handles cases like:
 if (foo)
     bar;
 for (something; condition; action) {
 }
 Without this the "for" line would be incorrectly indented. |