use of com.intellij.psi.codeStyle.CommonCodeStyleSettings in project intellij-community by JetBrains.
the class JavaFormatterTest method testMethodCallInAssignment.
public void testMethodCallInAssignment() throws Exception {
final CommonCodeStyleSettings settings = getSettings();
settings.getRootSettings().getIndentOptions(StdFileTypes.JAVA).CONTINUATION_INDENT_SIZE = 8;
doTest();
}
use of com.intellij.psi.codeStyle.CommonCodeStyleSettings in project intellij-community by JetBrains.
the class JavaFormatterTest method testClass2.
public void testClass2() throws Exception {
final CommonCodeStyleSettings settings = getSettings();
settings.KEEP_FIRST_COLUMN_COMMENT = false;
doTextTest("class A {\n" + "// comment before\n" + "protected Object a;// comment after\n" + "}", "class A {\n" + " // comment before\n" + " protected Object a;// comment after\n" + "}");
}
use of com.intellij.psi.codeStyle.CommonCodeStyleSettings in project intellij-community by JetBrains.
the class JavaFormatterTest method testCommentBeforeField.
public void testCommentBeforeField() throws Exception {
final CommonCodeStyleSettings settings = getSettings();
settings.KEEP_LINE_BREAKS = false;
settings.KEEP_FIRST_COLUMN_COMMENT = false;
settings.KEEP_CONTROL_STATEMENT_IN_ONE_LINE = false;
settings.KEEP_SIMPLE_BLOCKS_IN_ONE_LINE = false;
settings.KEEP_SIMPLE_METHODS_IN_ONE_LINE = false;
doTextTest("class Foo{\n" + " //Foo a\n" + " Foo a; \n" + "}", "class Foo {\n" + " //Foo a\n" + " Foo a;\n" + "}");
}
use of com.intellij.psi.codeStyle.CommonCodeStyleSettings in project intellij-community by JetBrains.
the class JavaFormatterTest method testSynchronizedBlock.
public void testSynchronizedBlock() throws Exception {
final CommonCodeStyleSettings settings = getSettings();
settings.SPACE_BEFORE_SYNCHRONIZED_PARENTHESES = false;
settings.SPACE_WITHIN_SYNCHRONIZED_PARENTHESES = false;
settings.SPACE_BEFORE_SYNCHRONIZED_LBRACE = false;
doTest();
}
use of com.intellij.psi.codeStyle.CommonCodeStyleSettings in project intellij-community by JetBrains.
the class JavaFormatterTest method testCommentAfterDeclaration.
public void testCommentAfterDeclaration() throws Exception {
CodeStyleSettings codeStyleSettings = CodeStyleSettingsManager.getSettings(getProject());
CommonCodeStyleSettings javaSettings = codeStyleSettings.getCommonSettings(JavaLanguage.INSTANCE);
int oldMargin = codeStyleSettings.getDefaultRightMargin();
int oldWrap = javaSettings.ASSIGNMENT_WRAP;
try {
codeStyleSettings.setDefaultRightMargin(20);
javaSettings.ASSIGNMENT_WRAP = CommonCodeStyleSettings.WRAP_AS_NEEDED;
doMethodTest("int i=0; //comment comment", "int i =\n" + " 0; //comment comment");
} finally {
codeStyleSettings.setDefaultRightMargin(oldMargin);
javaSettings.ASSIGNMENT_WRAP = oldWrap;
}
}
Aggregations