| Previous CloneSet | Next CloneSet | Back to Main Report |
| Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
|---|---|---|---|---|
| 4 | 26 | 4 | 0.957 | statement_sequence[2] |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 4 | 783 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 2 | 4 | 1005 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 3 | 4 | 1009 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 4 | 4 | 1013 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 5 | 4 | 1017 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 6 | 4 | 1021 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 7 | 4 | 1025 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 8 | 4 | 1029 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 9 | 4 | 1051 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 10 | 4 | 1055 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 11 | 4 | 1059 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 12 | 4 | 1063 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 13 | 4 | 1067 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 14 | 4 | 1071 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 15 | 4 | 1075 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 16 | 4 | 1079 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 17 | 4 | 1083 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 18 | 4 | 1087 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 19 | 4 | 1773 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 20 | 4 | 1777 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 21 | 4 | 1781 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 22 | 4 | 1785 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 23 | 4 | 1789 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 24 | 4 | 1793 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 25 | 4 | 1807 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 26 | 4 | 1821 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| ||||
if (alignTypeMembersOnColumnsOption != null) {
this.align_type_members_on_columns = DefaultCodeFormatterConstants.TRUE.equals(alignTypeMembersOnColumnsOption);
}
final Object bracePositionForAnnotationTypeDeclarationOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_BRACE_POSITION_FOR_ANNOTATION_TYPE_DECLARATION);
|
| ||||
if (commentClearBlankLinesOption != null) {
this.comment_clear_blank_lines = DefaultCodeFormatterConstants.TRUE.equals(commentClearBlankLinesOption);
}
final Object commentFormatOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_COMMENT_FORMAT);
|
| ||||
if (commentFormatOption != null) {
this.comment_format = DefaultCodeFormatterConstants.TRUE.equals(commentFormatOption);
}
final Object commentFormatHeaderOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_COMMENT_FORMAT_HEADER);
|
| ||||
if (commentFormatHeaderOption != null) {
this.comment_format_header = DefaultCodeFormatterConstants.TRUE.equals(commentFormatHeaderOption);
}
final Object commentFormatHtmlOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_COMMENT_FORMAT_HTML);
|
| ||||
if (commentFormatHtmlOption != null) {
this.comment_format_html = DefaultCodeFormatterConstants.TRUE.equals(commentFormatHtmlOption);
}
final Object commentFormatSourceOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_COMMENT_FORMAT_SOURCE);
|
| ||||
if (commentFormatSourceOption != null) {
this.comment_format_source = DefaultCodeFormatterConstants.TRUE.equals(commentFormatSourceOption);
}
final Object commentIndentParameterDescriptionOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_COMMENT_INDENT_PARAMETER_DESCRIPTION);
|
| ||||
if (commentIndentParameterDescriptionOption != null) {
this.comment_indent_parameter_description = DefaultCodeFormatterConstants.TRUE.equals(commentIndentParameterDescriptionOption);
}
final Object commentIndentRootTagsOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_COMMENT_INDENT_ROOT_TAGS);
|
| ||||
if (commentIndentRootTagsOption != null) {
this.comment_indent_root_tags = DefaultCodeFormatterConstants.TRUE.equals(commentIndentRootTagsOption);
}
final Object commentInsertEmptyLineBeforeRootTagsOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_COMMENT_INSERT_EMPTY_LINE_BEFORE_ROOT_TAGS);
|
| ||||
if (indentStatementsCompareToBlockOption != null) {
this.indent_statements_compare_to_block = DefaultCodeFormatterConstants.TRUE.equals(indentStatementsCompareToBlockOption);
}
final Object indentStatementsCompareToBodyOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_INDENT_STATEMENTS_COMPARE_TO_BODY);
|
| ||||
if (indentStatementsCompareToBodyOption != null) {
this.indent_statements_compare_to_body = DefaultCodeFormatterConstants.TRUE.equals(indentStatementsCompareToBodyOption);
}
final Object indentBodyDeclarationsCompareToAnnotationDeclarationHeaderOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_ANNOTATION_DECLARATION_HEADER);
|
| ||||
if (indentBodyDeclarationsCompareToAnnotationDeclarationHeaderOption != null) {
this.indent_body_declarations_compare_to_annotation_declaration_header = DefaultCodeFormatterConstants.TRUE.equals(indentBodyDeclarationsCompareToAnnotationDeclarationHeaderOption);
}
final Object indentBodyDeclarationsCompareToEnumConstantHeaderOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_ENUM_CONSTANT_HEADER);
|
| ||||
if (indentBodyDeclarationsCompareToEnumConstantHeaderOption != null) {
this.indent_body_declarations_compare_to_enum_constant_header = DefaultCodeFormatterConstants.TRUE.equals(indentBodyDeclarationsCompareToEnumConstantHeaderOption);
}
final Object indentBodyDeclarationsCompareToEnumDeclarationHeaderOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_ENUM_DECLARATION_HEADER);
|
| ||||
if (indentBodyDeclarationsCompareToEnumDeclarationHeaderOption != null) {
this.indent_body_declarations_compare_to_enum_declaration_header = DefaultCodeFormatterConstants.TRUE.equals(indentBodyDeclarationsCompareToEnumDeclarationHeaderOption);
}
final Object indentBodyDeclarationsCompareToTypeHeaderOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_TYPE_HEADER);
|
| ||||
if (indentBodyDeclarationsCompareToTypeHeaderOption != null) {
this.indent_body_declarations_compare_to_type_header = DefaultCodeFormatterConstants.TRUE.equals(indentBodyDeclarationsCompareToTypeHeaderOption);
}
final Object indentBreaksCompareToCasesOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_INDENT_BREAKS_COMPARE_TO_CASES);
|
| ||||
if (indentBreaksCompareToCasesOption != null) {
this.indent_breaks_compare_to_cases = DefaultCodeFormatterConstants.TRUE.equals(indentBreaksCompareToCasesOption);
}
final Object indentEmptyLinesOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_INDENT_EMPTY_LINES);
|
| ||||
if (indentEmptyLinesOption != null) {
this.indent_empty_lines = DefaultCodeFormatterConstants.TRUE.equals(indentEmptyLinesOption);
}
final Object indentSwitchstatementsCompareToCasesOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_INDENT_SWITCHSTATEMENTS_COMPARE_TO_CASES);
|
| ||||
if (indentSwitchstatementsCompareToCasesOption != null) {
this.indent_switchstatements_compare_to_cases = DefaultCodeFormatterConstants.TRUE.equals(indentSwitchstatementsCompareToCasesOption);
}
final Object indentSwitchstatementsCompareToSwitchOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_INDENT_SWITCHSTATEMENTS_COMPARE_TO_SWITCH);
|
| ||||
if (indentSwitchstatementsCompareToSwitchOption != null) {
this.indent_switchstatements_compare_to_switch = DefaultCodeFormatterConstants.TRUE.equals(indentSwitchstatementsCompareToSwitchOption);
}
final Object indentationSizeOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_INDENTATION_SIZE);
|
| ||||
if (compactElseIfOption != null) {
this.compact_else_if = DefaultCodeFormatterConstants.TRUE.equals(compactElseIfOption);
}
final Object keepGuardianClauseOnOneLineOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_KEEP_GUARDIAN_CLAUSE_ON_ONE_LINE);
|
| ||||
if (keepGuardianClauseOnOneLineOption != null) {
this.keep_guardian_clause_on_one_line = DefaultCodeFormatterConstants.TRUE.equals(keepGuardianClauseOnOneLineOption);
}
final Object keepElseStatementOnSameLineOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_KEEP_ELSE_STATEMENT_ON_SAME_LINE);
|
| ||||
if (keepElseStatementOnSameLineOption != null) {
this.keep_else_statement_on_same_line = DefaultCodeFormatterConstants.TRUE.equals(keepElseStatementOnSameLineOption);
}
final Object keepEmptyArrayInitializerOnOneLineOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_KEEP_EMPTY_ARRAY_INITIALIZER_ON_ONE_LINE);
|
| ||||
if (keepEmptyArrayInitializerOnOneLineOption != null) {
this.keep_empty_array_initializer_on_one_line = DefaultCodeFormatterConstants.TRUE.equals(keepEmptyArrayInitializerOnOneLineOption);
}
final Object keepSimpleIfOnOneLineOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_KEEP_SIMPLE_IF_ON_ONE_LINE);
|
| ||||
if (keepSimpleIfOnOneLineOption != null) {
this.keep_simple_if_on_one_line = DefaultCodeFormatterConstants.TRUE.equals(keepSimpleIfOnOneLineOption);
}
final Object keepThenStatementOnSameLineOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_KEEP_THEN_STATEMENT_ON_SAME_LINE);
|
| ||||
if (keepThenStatementOnSameLineOption != null) {
this.keep_then_statement_on_same_line = DefaultCodeFormatterConstants.TRUE.equals(keepThenStatementOnSameLineOption);
}
final Object numberOfEmptyLinesToPreserveOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE);
|
| ||||
if (putEmptyStatementOnNewLineOption != null) {
this.put_empty_statement_on_new_line = DefaultCodeFormatterConstants.TRUE.equals(putEmptyStatementOnNewLineOption);
}
final Object tabSizeOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_TAB_SIZE);
|
| ||||
if (useTabsOnlyForLeadingIndentationsOption != null) {
this.use_tabs_only_for_leading_indentations = DefaultCodeFormatterConstants.TRUE.equals(useTabsOnlyForLeadingIndentationsOption);
}
final Object pageWidthOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_LINE_SPLIT);
|
| |||
if ( [[#variable54621500]]!= null) {
this. [[#variable56fa7920]]= DefaultCodeFormatterConstants.TRUE.equals( [[#variable54621500]]);
}
final Object [[#variable5ace08a0]]= settings.get(DefaultCodeFormatterConstants. [[#variable76b698c0]]);
|
| CloneAbstraction |
| Parameter Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| 1 | 1 | [[#54621500]] | alignTypeMembersOnColumnsOption |
| 1 | 2 | [[#54621500]] | commentClearBlankLinesOption |
| 1 | 3 | [[#54621500]] | commentFormatOption |
| 1 | 4 | [[#54621500]] | commentFormatHeaderOption |
| 1 | 5 | [[#54621500]] | commentFormatHtmlOption |
| 1 | 6 | [[#54621500]] | commentFormatSourceOption |
| 1 | 7 | [[#54621500]] | commentIndentParameterDescriptionOption |
| 1 | 8 | [[#54621500]] | commentIndentRootTagsOption |
| 1 | 9 | [[#54621500]] | indentStatementsCompareToBlockOption |
| 1 | 10 | [[#54621500]] | indentStatementsCompareToBodyOption |
| 1 | 11 | [[#54621500]] | indentBodyDeclarationsCompareToAnnotationDeclarationHeaderOption |
| 1 | 12 | [[#54621500]] | indentBodyDeclarationsCompareToEnumConstantHeaderOption |
| 1 | 13 | [[#54621500]] | indentBodyDeclarationsCompareToEnumDeclarationHeaderOption |
| 1 | 14 | [[#54621500]] | indentBodyDeclarationsCompareToTypeHeaderOption |
| 1 | 15 | [[#54621500]] | indentBreaksCompareToCasesOption |
| 1 | 16 | [[#54621500]] | indentEmptyLinesOption |
| 1 | 17 | [[#54621500]] | indentSwitchstatementsCompareToCasesOption |
| 1 | 18 | [[#54621500]] | indentSwitchstatementsCompareToSwitchOption |
| 1 | 19 | [[#54621500]] | compactElseIfOption |
| 1 | 20 | [[#54621500]] | keepGuardianClauseOnOneLineOption |
| 1 | 21 | [[#54621500]] | keepElseStatementOnSameLineOption |
| 1 | 22 | [[#54621500]] | keepEmptyArrayInitializerOnOneLineOption |
| 1 | 23 | [[#54621500]] | keepSimpleIfOnOneLineOption |
| 1 | 24 | [[#54621500]] | keepThenStatementOnSameLineOption |
| 1 | 25 | [[#54621500]] | putEmptyStatementOnNewLineOption |
| 1 | 26 | [[#54621500]] | useTabsOnlyForLeadingIndentationsOption |
| 2 | 1 | [[#56fa7920]] | align_type_members_on_columns |
| 2 | 2 | [[#56fa7920]] | comment_clear_blank_lines |
| 2 | 3 | [[#56fa7920]] | comment_format |
| 2 | 4 | [[#56fa7920]] | comment_format_header |
| 2 | 5 | [[#56fa7920]] | comment_format_html |
| 2 | 6 | [[#56fa7920]] | comment_format_source |
| 2 | 7 | [[#56fa7920]] | comment_indent_parameter_description |
| 2 | 8 | [[#56fa7920]] | comment_indent_root_tags |
| 2 | 9 | [[#56fa7920]] | indent_statements_compare_to_block |
| 2 | 10 | [[#56fa7920]] | indent_statements_compare_to_body |
| 2 | 11 | [[#56fa7920]] | indent_body_declarations_compare_to_annotation_declaration_header |
| 2 | 12 | [[#56fa7920]] | indent_body_declarations_compare_to_enum_constant_header |
| 2 | 13 | [[#56fa7920]] | indent_body_declarations_compare_to_enum_declaration_header |
| 2 | 14 | [[#56fa7920]] | indent_body_declarations_compare_to_type_header |
| 2 | 15 | [[#56fa7920]] | indent_breaks_compare_to_cases |
| 2 | 16 | [[#56fa7920]] | indent_empty_lines |
| 2 | 17 | [[#56fa7920]] | indent_switchstatements_compare_to_cases |
| 2 | 18 | [[#56fa7920]] | indent_switchstatements_compare_to_switch |
| 2 | 19 | [[#56fa7920]] | compact_else_if |
| 2 | 20 | [[#56fa7920]] | keep_guardian_clause_on_one_line |
| 2 | 21 | [[#56fa7920]] | keep_else_statement_on_same_line |
| 2 | 22 | [[#56fa7920]] | keep_empty_array_initializer_on_one_line |
| 2 | 23 | [[#56fa7920]] | keep_simple_if_on_one_line |
| 2 | 24 | [[#56fa7920]] | keep_then_statement_on_same_line |
| 2 | 25 | [[#56fa7920]] | put_empty_statement_on_new_line |
| 2 | 26 | [[#56fa7920]] | use_tabs_only_for_leading_indentations |
| 3 | 1 | [[#5ace08a0]] | bracePositionForAnnotationTypeDeclarationOption |
| 3 | 2 | [[#5ace08a0]] | commentFormatOption |
| 3 | 3 | [[#5ace08a0]] | commentFormatHeaderOption |
| 3 | 4 | [[#5ace08a0]] | commentFormatHtmlOption |
| 3 | 5 | [[#5ace08a0]] | commentFormatSourceOption |
| 3 | 6 | [[#5ace08a0]] | commentIndentParameterDescriptionOption |
| 3 | 7 | [[#5ace08a0]] | commentIndentRootTagsOption |
| 3 | 8 | [[#5ace08a0]] | commentInsertEmptyLineBeforeRootTagsOption |
| 3 | 9 | [[#5ace08a0]] | indentStatementsCompareToBodyOption |
| 3 | 10 | [[#5ace08a0]] | indentBodyDeclarationsCompareToAnnotationDeclarationHeaderOption |
| 3 | 11 | [[#5ace08a0]] | indentBodyDeclarationsCompareToEnumConstantHeaderOption |
| 3 | 12 | [[#5ace08a0]] | indentBodyDeclarationsCompareToEnumDeclarationHeaderOption |
| 3 | 13 | [[#5ace08a0]] | indentBodyDeclarationsCompareToTypeHeaderOption |
| 3 | 14 | [[#5ace08a0]] | indentBreaksCompareToCasesOption |
| 3 | 15 | [[#5ace08a0]] | indentEmptyLinesOption |
| 3 | 16 | [[#5ace08a0]] | indentSwitchstatementsCompareToCasesOption |
| 3 | 17 | [[#5ace08a0]] | indentSwitchstatementsCompareToSwitchOption |
| 3 | 18 | [[#5ace08a0]] | indentationSizeOption |
| 3 | 19 | [[#5ace08a0]] | keepGuardianClauseOnOneLineOption |
| 3 | 20 | [[#5ace08a0]] | keepElseStatementOnSameLineOption |
| 3 | 21 | [[#5ace08a0]] | keepEmptyArrayInitializerOnOneLineOption |
| 3 | 22 | [[#5ace08a0]] | keepSimpleIfOnOneLineOption |
| 3 | 23 | [[#5ace08a0]] | keepThenStatementOnSameLineOption |
| 3 | 24 | [[#5ace08a0]] | numberOfEmptyLinesToPreserveOption |
| 3 | 25 | [[#5ace08a0]] | tabSizeOption |
| 3 | 26 | [[#5ace08a0]] | pageWidthOption |
| 4 | 1 | [[#76b698c0]] | FORMATTER_BRACE_POSITION_FOR_ANNOTATION_TYPE_DECLARATION |
| 4 | 2 | [[#76b698c0]] | FORMATTER_COMMENT_FORMAT |
| 4 | 3 | [[#76b698c0]] | FORMATTER_COMMENT_FORMAT_HEADER |
| 4 | 4 | [[#76b698c0]] | FORMATTER_COMMENT_FORMAT_HTML |
| 4 | 5 | [[#76b698c0]] | FORMATTER_COMMENT_FORMAT_SOURCE |
| 4 | 6 | [[#76b698c0]] | FORMATTER_COMMENT_INDENT_PARAMETER_DESCRIPTION |
| 4 | 7 | [[#76b698c0]] | FORMATTER_COMMENT_INDENT_ROOT_TAGS |
| 4 | 8 | [[#76b698c0]] | FORMATTER_COMMENT_INSERT_EMPTY_LINE_BEFORE_ROOT_TAGS |
| 4 | 9 | [[#76b698c0]] | FORMATTER_INDENT_STATEMENTS_COMPARE_TO_BODY |
| 4 | 10 | [[#76b698c0]] | FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_ANNOTATION_DECLARATION_HEADER |
| 4 | 11 | [[#76b698c0]] | FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_ENUM_CONSTANT_HEADER |
| 4 | 12 | [[#76b698c0]] | FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_ENUM_DECLARATION_HEADER |
| 4 | 13 | [[#76b698c0]] | FORMATTER_INDENT_BODY_DECLARATIONS_COMPARE_TO_TYPE_HEADER |
| 4 | 14 | [[#76b698c0]] | FORMATTER_INDENT_BREAKS_COMPARE_TO_CASES |
| 4 | 15 | [[#76b698c0]] | FORMATTER_INDENT_EMPTY_LINES |
| 4 | 16 | [[#76b698c0]] | FORMATTER_INDENT_SWITCHSTATEMENTS_COMPARE_TO_CASES |
| 4 | 17 | [[#76b698c0]] | FORMATTER_INDENT_SWITCHSTATEMENTS_COMPARE_TO_SWITCH |
| 4 | 18 | [[#76b698c0]] | FORMATTER_INDENTATION_SIZE |
| 4 | 19 | [[#76b698c0]] | FORMATTER_KEEP_GUARDIAN_CLAUSE_ON_ONE_LINE |
| 4 | 20 | [[#76b698c0]] | FORMATTER_KEEP_ELSE_STATEMENT_ON_SAME_LINE |
| 4 | 21 | [[#76b698c0]] | FORMATTER_KEEP_EMPTY_ARRAY_INITIALIZER_ON_ONE_LINE |
| 4 | 22 | [[#76b698c0]] | FORMATTER_KEEP_SIMPLE_IF_ON_ONE_LINE |
| 4 | 23 | [[#76b698c0]] | FORMATTER_KEEP_THEN_STATEMENT_ON_SAME_LINE |
| 4 | 24 | [[#76b698c0]] | FORMATTER_NUMBER_OF_EMPTY_LINES_TO_PRESERVE |
| 4 | 25 | [[#76b698c0]] | FORMATTER_TAB_SIZE |
| 4 | 26 | [[#76b698c0]] | FORMATTER_LINE_SPLIT |