CloneSet85


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
81940.953statement_sequence[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
18582
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java
28592
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java
38602
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java
48612
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java
58622
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java
68632
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java
78642
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java
88662
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java
98672
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java
108682
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java
118692
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java
128702
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java
138712
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java
148722
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java
158732
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java
168742
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java
178752
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java
188762
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java
198772
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java
Clone Instance
1
Line Count
8
Source Line
582
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java

                final Object alignmentForArgumentsInAllocationExpressionOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_ALLOCATION_EXPRESSION);
                if (alignmentForArgumentsInAllocationExpressionOption != null) {
                        try {
                                this.alignment_for_arguments_in_allocation_expression = Integer.parseInt((String) alignmentForArgumentsInAllocationExpressionOption);
                        } catch (NumberFormatException e) {
                                this.alignment_for_arguments_in_allocation_expression = Alignment.M_COMPACT_SPLIT;
                          }
                          catch (ClassCastException e) {
                                this.alignment_for_arguments_in_allocation_expression = Alignment.M_COMPACT_SPLIT;
                          }
                }


Clone Instance
2
Line Count
8
Source Line
592
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java

                final Object alignmentForArgumentsInEnumConstantOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_ENUM_CONSTANT);
                if (alignmentForArgumentsInEnumConstantOption != null) {
                        try {
                                this.alignment_for_arguments_in_enum_constant = Integer.parseInt((String) alignmentForArgumentsInEnumConstantOption);
                        } catch (NumberFormatException e) {
                                this.alignment_for_arguments_in_enum_constant = Alignment.M_COMPACT_SPLIT;
                          }
                          catch (ClassCastException e) {
                                this.alignment_for_arguments_in_enum_constant = Alignment.M_COMPACT_SPLIT;
                          }
                }


Clone Instance
3
Line Count
8
Source Line
602
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java

                final Object alignmentForArgumentsInExplicitConstructorCallOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_EXPLICIT_CONSTRUCTOR_CALL);
                if (alignmentForArgumentsInExplicitConstructorCallOption != null) {
                        try {
                                this.alignment_for_arguments_in_explicit_constructor_call = Integer.parseInt((String) alignmentForArgumentsInExplicitConstructorCallOption);
                        } catch (NumberFormatException e) {
                                this.alignment_for_arguments_in_explicit_constructor_call = Alignment.M_COMPACT_SPLIT;
                          }
                          catch (ClassCastException e) {
                                this.alignment_for_arguments_in_explicit_constructor_call = Alignment.M_COMPACT_SPLIT;
                          }
                }


Clone Instance
4
Line Count
8
Source Line
612
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java

                final Object alignmentForArgumentsInMethodInvocationOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_METHOD_INVOCATION);
                if (alignmentForArgumentsInMethodInvocationOption != null) {
                        try {
                                this.alignment_for_arguments_in_method_invocation = Integer.parseInt((String) alignmentForArgumentsInMethodInvocationOption);
                        } catch (NumberFormatException e) {
                                this.alignment_for_arguments_in_method_invocation = Alignment.M_COMPACT_SPLIT;
                          }
                          catch (ClassCastException e) {
                                this.alignment_for_arguments_in_method_invocation = Alignment.M_COMPACT_SPLIT;
                          }
                }


Clone Instance
5
Line Count
8
Source Line
622
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java

                final Object alignmentForArgumentsInQualifiedAllocationExpressionOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_QUALIFIED_ALLOCATION_EXPRESSION);
                if (alignmentForArgumentsInQualifiedAllocationExpressionOption != null) {
                        try {
                                this.alignment_for_arguments_in_qualified_allocation_expression = Integer.parseInt((String) alignmentForArgumentsInQualifiedAllocationExpressionOption);
                        } catch (NumberFormatException e) {
                                this.alignment_for_arguments_in_qualified_allocation_expression = Alignment.M_COMPACT_SPLIT;
                          }
                          catch (ClassCastException e) {
                                this.alignment_for_arguments_in_qualified_allocation_expression = Alignment.M_COMPACT_SPLIT;
                          }
                }


Clone Instance
6
Line Count
8
Source Line
632
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java

                final Object alignmentForAssignmentOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_ASSIGNMENT);
                if (alignmentForAssignmentOption != null) {
                        try {
                                this.alignment_for_assignment = Integer.parseInt((String) alignmentForAssignmentOption);
                        } catch (NumberFormatException e) {
                                this.alignment_for_assignment =  Alignment.M_ONE_PER_LINE_SPLIT;
                          }
                          catch (ClassCastException e) {
                                this.alignment_for_assignment =  Alignment.M_ONE_PER_LINE_SPLIT;
                          }
                }


Clone Instance
7
Line Count
8
Source Line
642
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java

                final Object alignmentForBinaryExpressionOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_BINARY_EXPRESSION);
                if (alignmentForBinaryExpressionOption != null) {
                        try {
                                this.alignment_for_binary_expression = Integer.parseInt((String) alignmentForBinaryExpressionOption);
                        } catch (NumberFormatException e) {
                                this.alignment_for_binary_expression =  Alignment.M_COMPACT_SPLIT;
                          }
                          catch (ClassCastException e) {
                                this.alignment_for_binary_expression =  Alignment.M_COMPACT_SPLIT;
                          }
                }


Clone Instance
8
Line Count
8
Source Line
662
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java

                final Object alignmentForConditionalExpressionOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_CONDITIONAL_EXPRESSION);
                if (alignmentForConditionalExpressionOption != null) {
                        try {
                                this.alignment_for_conditional_expression = Integer.parseInt((String) alignmentForConditionalExpressionOption);
                        } catch (NumberFormatException e) {
                                this.alignment_for_conditional_expression = Alignment.M_ONE_PER_LINE_SPLIT;
                          }
                          catch (ClassCastException e) {
                                this.alignment_for_conditional_expression = Alignment.M_ONE_PER_LINE_SPLIT;
                          }
                }


Clone Instance
9
Line Count
8
Source Line
672
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java

                final Object alignmentForEnumConstantsOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_ENUM_CONSTANTS);
                if (alignmentForEnumConstantsOption != null) {
                        try {
                                this.alignment_for_enum_constants = Integer.parseInt((String) alignmentForEnumConstantsOption);
                        } catch (NumberFormatException e) {
                                this.alignment_for_enum_constants = Alignment.NONE;
                          }
                          catch (ClassCastException e) {
                                this.alignment_for_enum_constants = Alignment.NONE;
                          }
                }


Clone Instance
10
Line Count
8
Source Line
682
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java

                final Object alignmentForExpressionsInArrayInitializerOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_EXPRESSIONS_IN_ARRAY_INITIALIZER);
                if (alignmentForExpressionsInArrayInitializerOption != null) {
                        try {
                                this.alignment_for_expressions_in_array_initializer = Integer.parseInt((String) alignmentForExpressionsInArrayInitializerOption);
                        } catch (NumberFormatException e) {
                                this.alignment_for_expressions_in_array_initializer = Alignment.M_COMPACT_SPLIT;
                          }
                          catch (ClassCastException e) {
                                this.alignment_for_expressions_in_array_initializer = Alignment.M_COMPACT_SPLIT;
                          }
                }


Clone Instance
11
Line Count
8
Source Line
692
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java

                final Object alignmentForMultipleFieldsOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_MULTIPLE_FIELDS);
                if (alignmentForMultipleFieldsOption != null) {
                        try {
                                this.alignment_for_multiple_fields = Integer.parseInt((String) alignmentForMultipleFieldsOption);
                        } catch (NumberFormatException e) {
                                this.alignment_for_multiple_fields = Alignment.M_COMPACT_SPLIT;
                          }
                          catch (ClassCastException e) {
                                this.alignment_for_multiple_fields = Alignment.M_COMPACT_SPLIT;
                          }
                }


Clone Instance
12
Line Count
8
Source Line
702
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java

                final Object alignmentForParametersInConstructorDeclarationOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_PARAMETERS_IN_CONSTRUCTOR_DECLARATION);
                if (alignmentForParametersInConstructorDeclarationOption != null) {
                        try {
                                this.alignment_for_parameters_in_constructor_declaration = Integer.parseInt((String) alignmentForParametersInConstructorDeclarationOption);
                        } catch (NumberFormatException e) {
                                this.alignment_for_parameters_in_constructor_declaration = Alignment.M_COMPACT_SPLIT;
                          }
                          catch (ClassCastException e) {
                                this.alignment_for_parameters_in_constructor_declaration = Alignment.M_COMPACT_SPLIT;
                          }
                }


Clone Instance
13
Line Count
8
Source Line
712
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java

                final Object alignmentForParametersInMethodDeclarationOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_PARAMETERS_IN_METHOD_DECLARATION);
                if (alignmentForParametersInMethodDeclarationOption != null) {
                        try {
                                this.alignment_for_parameters_in_method_declaration = Integer.parseInt((String) alignmentForParametersInMethodDeclarationOption);
                        } catch (NumberFormatException e) {
                                this.alignment_for_parameters_in_method_declaration = Alignment.M_COMPACT_SPLIT;
                          }
                          catch (ClassCastException e) {
                                this.alignment_for_parameters_in_method_declaration = Alignment.M_COMPACT_SPLIT;
                          }
                }


Clone Instance
14
Line Count
8
Source Line
722
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java

                final Object alignmentForSelectorInMethodInvocationOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_SELECTOR_IN_METHOD_INVOCATION);
                if (alignmentForSelectorInMethodInvocationOption != null) {
                        try {
                                this.alignment_for_selector_in_method_invocation = Integer.parseInt((String) alignmentForSelectorInMethodInvocationOption);
                        } catch (NumberFormatException e) {
                                this.alignment_for_selector_in_method_invocation = Alignment.M_COMPACT_SPLIT;
                          }
                          catch (ClassCastException e) {
                                this.alignment_for_selector_in_method_invocation = Alignment.M_COMPACT_SPLIT;
                          }
                }


Clone Instance
15
Line Count
8
Source Line
732
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java

                final Object alignmentForSuperclassInTypeDeclarationOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_SUPERCLASS_IN_TYPE_DECLARATION);
                if (alignmentForSuperclassInTypeDeclarationOption != null) {
                        try {
                                this.alignment_for_superclass_in_type_declaration = Integer.parseInt((String) alignmentForSuperclassInTypeDeclarationOption);
                        } catch (NumberFormatException e) {
                                this.alignment_for_superclass_in_type_declaration = Alignment.M_NEXT_SHIFTED_SPLIT;
                          }
                          catch (ClassCastException e) {
                                this.alignment_for_superclass_in_type_declaration = Alignment.M_NEXT_SHIFTED_SPLIT;
                          }
                }


Clone Instance
16
Line Count
8
Source Line
742
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java

                final Object alignmentForSuperinterfacesInEnumDeclarationOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_SUPERINTERFACES_IN_ENUM_DECLARATION);
                if (alignmentForSuperinterfacesInEnumDeclarationOption != null) {
                        try {
                                this.alignment_for_superinterfaces_in_enum_declaration = Integer.parseInt((String) alignmentForSuperinterfacesInEnumDeclarationOption);
                        } catch (NumberFormatException e) {
                                this.alignment_for_superinterfaces_in_enum_declaration = Alignment.M_NEXT_SHIFTED_SPLIT;
                          }
                          catch (ClassCastException e) {
                                this.alignment_for_superinterfaces_in_enum_declaration = Alignment.M_NEXT_SHIFTED_SPLIT;
                          }
                }


Clone Instance
17
Line Count
8
Source Line
752
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java

                final Object alignmentForSuperinterfacesInTypeDeclarationOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_SUPERINTERFACES_IN_TYPE_DECLARATION);
                if (alignmentForSuperinterfacesInTypeDeclarationOption != null) {
                        try {
                                this.alignment_for_superinterfaces_in_type_declaration = Integer.parseInt((String) alignmentForSuperinterfacesInTypeDeclarationOption);
                        } catch (NumberFormatException e) {
                                this.alignment_for_superinterfaces_in_type_declaration = Alignment.M_NEXT_SHIFTED_SPLIT;
                          }
                          catch (ClassCastException e) {
                                this.alignment_for_superinterfaces_in_type_declaration = Alignment.M_NEXT_SHIFTED_SPLIT;
                          }
                }


Clone Instance
18
Line Count
8
Source Line
762
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java

                final Object alignmentForThrowsClauseInConstructorDeclarationOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_THROWS_CLAUSE_IN_CONSTRUCTOR_DECLARATION);
                if (alignmentForThrowsClauseInConstructorDeclarationOption != null) {
                        try {
                                this.alignment_for_throws_clause_in_constructor_declaration = Integer.parseInt((String) alignmentForThrowsClauseInConstructorDeclarationOption);
                        } catch (NumberFormatException e) {
                                this.alignment_for_throws_clause_in_constructor_declaration = Alignment.M_COMPACT_SPLIT;
                          }
                          catch (ClassCastException e) {
                                this.alignment_for_throws_clause_in_constructor_declaration = Alignment.M_COMPACT_SPLIT;
                          }
                }


Clone Instance
19
Line Count
8
Source Line
772
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java

                final Object alignmentForThrowsClauseInMethodDeclarationOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_THROWS_CLAUSE_IN_METHOD_DECLARATION);
                if (alignmentForThrowsClauseInMethodDeclarationOption != null) {
                        try {
                                this.alignment_for_throws_clause_in_method_declaration = Integer.parseInt((String) alignmentForThrowsClauseInMethodDeclarationOption);
                        } catch (NumberFormatException e) {
                                this.alignment_for_throws_clause_in_method_declaration = Alignment.M_COMPACT_SPLIT;
                          }
                          catch (ClassCastException e) {
                                this.alignment_for_throws_clause_in_method_declaration = Alignment.M_COMPACT_SPLIT;
                          }
                }


Clone AbstractionParameter Count: 4Parameter Bindings

final Object  [[#variablebaeb96a0]]= settings.get(DefaultCodeFormatterConstants. [[#variablebb515a00]]);
if ( [[#variablebaeb96a0]]!= null) {
  try {
    this. [[#variablebaeb9640]]= Integer.parseInt((String)  [[#variablebaeb96a0]]);
  }
  catch (NumberFormatException e) {
    this. [[#variablebaeb9640]]= Alignment. [[#variablebaeb96c0]];
  }
  catch (ClassCastException e) {
    this. [[#variablebaeb9640]]= Alignment. [[#variablebaeb96c0]];
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#baeb96a0]]
alignmentForArgumentsInAllocationExpressionOption 
12[[#baeb96a0]]
alignmentForArgumentsInEnumConstantOption 
13[[#baeb96a0]]
alignmentForArgumentsInExplicitConstructorCallOption 
14[[#baeb96a0]]
alignmentForArgumentsInMethodInvocationOption 
15[[#baeb96a0]]
alignmentForArgumentsInQualifiedAllocationExpressionOption 
16[[#baeb96a0]]
alignmentForAssignmentOption 
17[[#baeb96a0]]
alignmentForBinaryExpressionOption 
18[[#baeb96a0]]
alignmentForConditionalExpressionOption 
19[[#baeb96a0]]
alignmentForEnumConstantsOption 
110[[#baeb96a0]]
alignmentForExpressionsInArrayInitializerOption 
111[[#baeb96a0]]
alignmentForMultipleFieldsOption 
112[[#baeb96a0]]
alignmentForParametersInConstructorDeclarationOption 
113[[#baeb96a0]]
alignmentForParametersInMethodDeclarationOption 
114[[#baeb96a0]]
alignmentForSelectorInMethodInvocationOption 
115[[#baeb96a0]]
alignmentForSuperclassInTypeDeclarationOption 
116[[#baeb96a0]]
alignmentForSuperinterfacesInEnumDeclarationOption 
117[[#baeb96a0]]
alignmentForSuperinterfacesInTypeDeclarationOption 
118[[#baeb96a0]]
alignmentForThrowsClauseInConstructorDeclarationOption 
119[[#baeb96a0]]
alignmentForThrowsClauseInMethodDeclarationOption 
21[[#bb515a00]]
FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_ALLOCATION_EXPRESSION 
22[[#bb515a00]]
FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_ENUM_CONSTANT 
23[[#bb515a00]]
FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_EXPLICIT_CONSTRUCTOR_CALL 
24[[#bb515a00]]
FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_METHOD_INVOCATION 
25[[#bb515a00]]
FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_QUALIFIED_ALLOCATION_EXPRESSION 
26[[#bb515a00]]
FORMATTER_ALIGNMENT_FOR_ASSIGNMENT 
27[[#bb515a00]]
FORMATTER_ALIGNMENT_FOR_BINARY_EXPRESSION 
28[[#bb515a00]]
FORMATTER_ALIGNMENT_FOR_CONDITIONAL_EXPRESSION 
29[[#bb515a00]]
FORMATTER_ALIGNMENT_FOR_ENUM_CONSTANTS 
210[[#bb515a00]]
FORMATTER_ALIGNMENT_FOR_EXPRESSIONS_IN_ARRAY_INITIALIZER 
211[[#bb515a00]]
FORMATTER_ALIGNMENT_FOR_MULTIPLE_FIELDS 
212[[#bb515a00]]
FORMATTER_ALIGNMENT_FOR_PARAMETERS_IN_CONSTRUCTOR_DECLARATION 
213[[#bb515a00]]
FORMATTER_ALIGNMENT_FOR_PARAMETERS_IN_METHOD_DECLARATION 
214[[#bb515a00]]
FORMATTER_ALIGNMENT_FOR_SELECTOR_IN_METHOD_INVOCATION 
215[[#bb515a00]]
FORMATTER_ALIGNMENT_FOR_SUPERCLASS_IN_TYPE_DECLARATION 
216[[#bb515a00]]
FORMATTER_ALIGNMENT_FOR_SUPERINTERFACES_IN_ENUM_DECLARATION 
217[[#bb515a00]]
FORMATTER_ALIGNMENT_FOR_SUPERINTERFACES_IN_TYPE_DECLARATION 
218[[#bb515a00]]
FORMATTER_ALIGNMENT_FOR_THROWS_CLAUSE_IN_CONSTRUCTOR_DECLARATION 
219[[#bb515a00]]
FORMATTER_ALIGNMENT_FOR_THROWS_CLAUSE_IN_METHOD_DECLARATION 
31[[#baeb9640]]
alignment_for_arguments_in_allocation_expression 
32[[#baeb9640]]
alignment_for_arguments_in_enum_constant 
33[[#baeb9640]]
alignment_for_arguments_in_explicit_constructor_call 
34[[#baeb9640]]
alignment_for_arguments_in_method_invocation 
35[[#baeb9640]]
alignment_for_arguments_in_qualified_allocation_expression 
36[[#baeb9640]]
alignment_for_assignment 
37[[#baeb9640]]
alignment_for_binary_expression 
38[[#baeb9640]]
alignment_for_conditional_expression 
39[[#baeb9640]]
alignment_for_enum_constants 
310[[#baeb9640]]
alignment_for_expressions_in_array_initializer 
311[[#baeb9640]]
alignment_for_multiple_fields 
312[[#baeb9640]]
alignment_for_parameters_in_constructor_declaration 
313[[#baeb9640]]
alignment_for_parameters_in_method_declaration 
314[[#baeb9640]]
alignment_for_selector_in_method_invocation 
315[[#baeb9640]]
alignment_for_superclass_in_type_declaration 
316[[#baeb9640]]
alignment_for_superinterfaces_in_enum_declaration 
317[[#baeb9640]]
alignment_for_superinterfaces_in_type_declaration 
318[[#baeb9640]]
alignment_for_throws_clause_in_constructor_declaration 
319[[#baeb9640]]
alignment_for_throws_clause_in_method_declaration 
41[[#baeb96c0]]
M_COMPACT_SPLIT 
42[[#baeb96c0]]
M_COMPACT_SPLIT 
43[[#baeb96c0]]
M_COMPACT_SPLIT 
44[[#baeb96c0]]
M_COMPACT_SPLIT 
45[[#baeb96c0]]
M_COMPACT_SPLIT 
46[[#baeb96c0]]
M_ONE_PER_LINE_SPLIT 
47[[#baeb96c0]]
M_COMPACT_SPLIT 
48[[#baeb96c0]]
M_ONE_PER_LINE_SPLIT 
49[[#baeb96c0]]
NONE 
410[[#baeb96c0]]
M_COMPACT_SPLIT 
411[[#baeb96c0]]
M_COMPACT_SPLIT 
412[[#baeb96c0]]
M_COMPACT_SPLIT 
413[[#baeb96c0]]
M_COMPACT_SPLIT 
414[[#baeb96c0]]
M_COMPACT_SPLIT 
415[[#baeb96c0]]
M_NEXT_SHIFTED_SPLIT 
416[[#baeb96c0]]
M_NEXT_SHIFTED_SPLIT 
417[[#baeb96c0]]
M_NEXT_SHIFTED_SPLIT 
418[[#baeb96c0]]
M_COMPACT_SPLIT 
419[[#baeb96c0]]
M_COMPACT_SPLIT