mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
java postfix templates: add braces for while loop IDEA-153730
This commit is contained in:
+4
-4
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2000-2014 JetBrains s.r.o.
|
||||
* Copyright 2000-2016 JetBrains s.r.o.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -24,19 +24,19 @@ import static com.intellij.codeInsight.template.postfix.util.JavaPostfixTemplate
|
||||
|
||||
public class WhileStatementPostfixTemplate extends StringBasedPostfixTemplate {
|
||||
public WhileStatementPostfixTemplate() {
|
||||
super("while", "while (expr)", selectorTopmost(IS_BOOLEAN));
|
||||
super("while", "while (expr) {}", selectorTopmost(IS_BOOLEAN));
|
||||
}
|
||||
|
||||
|
||||
@Nullable
|
||||
@Override
|
||||
public String getTemplateString(@NotNull PsiElement element) {
|
||||
return "while ($expr$)$END$";
|
||||
return "while ($expr$) {\n$END$\n}";
|
||||
}
|
||||
|
||||
@Override
|
||||
protected boolean shouldReformat() {
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+3
-1
@@ -1,6 +1,8 @@
|
||||
public class Foo {
|
||||
void m(boolean x) {
|
||||
while (x)<caret>
|
||||
while (x) {
|
||||
<caret>
|
||||
}
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
+3
-1
@@ -1,6 +1,8 @@
|
||||
public class Foo {
|
||||
void m(Boolean x) {
|
||||
while (x)<caret>
|
||||
while (x) {
|
||||
<caret>
|
||||
}
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user