コード例 #1
0
 /**
  * This method returns whether auto indentation should be done if Enter is pressed at the end of
  * the specified line.
  *
  * @param line The line to check.
  * @return Whether an extra indentation should be done.
  */
 public boolean getShouldIndentNextLine(int line) {
   Token t = getTokenListForLine(line);
   t = t.getLastNonCommentNonWhitespaceToken();
   return tokenMaker.getShouldIndentNextLineAfter(t);
 }