use of com.intellij.psi.PsiBlockStatement in project intellij-community by JetBrains.
the class DoWhileConditionFixer method apply.
@Override
public void apply(Editor editor, JavaSmartEnterProcessor processor, PsiElement psiElement) throws IncorrectOperationException {
if (psiElement instanceof PsiDoWhileStatement) {
final Document doc = editor.getDocument();
final PsiDoWhileStatement stmt = (PsiDoWhileStatement) psiElement;
if (stmt.getBody() == null || !(stmt.getBody() instanceof PsiBlockStatement) && stmt.getWhileKeyword() == null) {
final int startOffset = stmt.getTextRange().getStartOffset();
doc.replaceString(startOffset, startOffset + "do".length(), "do {} while()");
return;
}
if (stmt.getCondition() == null) {
if (stmt.getWhileKeyword() == null) {
final int endOffset = stmt.getTextRange().getEndOffset();
doc.insertString(endOffset, "while()");
} else if (stmt.getLParenth() == null || stmt.getRParenth() == null) {
final TextRange whileRange = stmt.getWhileKeyword().getTextRange();
doc.replaceString(whileRange.getStartOffset(), whileRange.getEndOffset(), "while()");
} else {
processor.registerUnresolvedError(stmt.getLParenth().getTextRange().getEndOffset());
}
}
}
}
use of com.intellij.psi.PsiBlockStatement in project intellij-community by JetBrains.
the class MissingWhileBodyFixer method apply.
@Override
public void apply(Editor editor, JavaSmartEnterProcessor processor, PsiElement psiElement) throws IncorrectOperationException {
if (!(psiElement instanceof PsiWhileStatement))
return;
PsiWhileStatement whileStatement = (PsiWhileStatement) psiElement;
final Document doc = editor.getDocument();
PsiElement body = whileStatement.getBody();
if (body instanceof PsiBlockStatement)
return;
if (body != null && startLine(doc, body) == startLine(doc, whileStatement) && whileStatement.getCondition() != null)
return;
final PsiJavaToken rParenth = whileStatement.getRParenth();
assert rParenth != null;
doc.insertString(rParenth.getTextRange().getEndOffset(), "{}");
}
Aggregations