CloneSet622


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
21520.975switch_group
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
122735
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java
222737
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java
322739
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java
422741
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java
522743
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java
622745
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java
722747
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java
822749
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java
922751
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java
1022753
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java
1122755
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java
1222757
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java
1322759
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java
1422761
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java
1522763
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java
Clone Instance
1
Line Count
2
Source Line
2735
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java

                        case OperatorIds.AND:
                                return dumpBinaryExpression(binaryExpression, TerminalTokens.TokenNameAND, scope);


Clone Instance
2
Line Count
2
Source Line
2737
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java

                        case OperatorIds.DIVIDE:
                                return dumpBinaryExpression(binaryExpression, TerminalTokens.TokenNameDIVIDE, scope);


Clone Instance
3
Line Count
2
Source Line
2739
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java

                        case OperatorIds.GREATER:
                                return dumpBinaryExpression(binaryExpression, TerminalTokens.TokenNameGREATER, scope);


Clone Instance
4
Line Count
2
Source Line
2741
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java

                        case OperatorIds.GREATER_EQUAL:
                                return dumpBinaryExpression(binaryExpression, TerminalTokens.TokenNameGREATER_EQUAL, scope);


Clone Instance
5
Line Count
2
Source Line
2743
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java

                        case OperatorIds.LEFT_SHIFT:
                                return dumpBinaryExpression(binaryExpression, TerminalTokens.TokenNameLEFT_SHIFT, scope);


Clone Instance
6
Line Count
2
Source Line
2745
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java

                        case OperatorIds.LESS:
                                return dumpBinaryExpression(binaryExpression, TerminalTokens.TokenNameLESS, scope);


Clone Instance
7
Line Count
2
Source Line
2747
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java

                        case OperatorIds.LESS_EQUAL:
                                return dumpBinaryExpression(binaryExpression, TerminalTokens.TokenNameLESS_EQUAL, scope);


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

                        case OperatorIds.MINUS:
                                return dumpBinaryExpression(binaryExpression, TerminalTokens.TokenNameMINUS, scope);


Clone Instance
9
Line Count
2
Source Line
2751
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java

                        case OperatorIds.MULTIPLY:
                                return dumpBinaryExpression(binaryExpression, TerminalTokens.TokenNameMULTIPLY, scope);


Clone Instance
10
Line Count
2
Source Line
2753
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java

                        case OperatorIds.OR:
                                return dumpBinaryExpression(binaryExpression, TerminalTokens.TokenNameOR, scope);


Clone Instance
11
Line Count
2
Source Line
2755
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java

                        case OperatorIds.PLUS:
                                return dumpBinaryExpression(binaryExpression, TerminalTokens.TokenNamePLUS, scope);


Clone Instance
12
Line Count
2
Source Line
2757
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java

                        case OperatorIds.REMAINDER:
                                return dumpBinaryExpression(binaryExpression, TerminalTokens.TokenNameREMAINDER, scope);


Clone Instance
13
Line Count
2
Source Line
2759
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java

                        case OperatorIds.RIGHT_SHIFT:
                                return dumpBinaryExpression(binaryExpression, TerminalTokens.TokenNameRIGHT_SHIFT, scope);


Clone Instance
14
Line Count
2
Source Line
2761
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java

                        case OperatorIds.UNSIGNED_RIGHT_SHIFT:
                                return dumpBinaryExpression(binaryExpression, TerminalTokens.TokenNameUNSIGNED_RIGHT_SHIFT, scope);


Clone Instance
15
Line Count
2
Source Line
2763
Source File
plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/CodeFormatterVisitor.java

                        case OperatorIds.XOR:
                                return dumpBinaryExpression(binaryExpression, TerminalTokens.TokenNameXOR, scope);


Clone AbstractionParameter Count: 2Parameter Bindings

case OperatorIds. [[#variableb62afbe0]]:
  return dumpBinaryExpression(binaryExpression, TerminalTokens. [[#variableb62afba0]], scope);
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#b62afbe0]]
XOR 
12[[#b62afbe0]]
UNSIGNED_RIGHT_SHIFT 
13[[#b62afbe0]]
RIGHT_SHIFT 
14[[#b62afbe0]]
REMAINDER 
15[[#b62afbe0]]
PLUS 
16[[#b62afbe0]]
OR 
17[[#b62afbe0]]
MULTIPLY 
18[[#b62afbe0]]
MINUS 
19[[#b62afbe0]]
LESS_EQUAL 
110[[#b62afbe0]]
LESS 
111[[#b62afbe0]]
LEFT_SHIFT 
112[[#b62afbe0]]
GREATER_EQUAL 
113[[#b62afbe0]]
GREATER 
114[[#b62afbe0]]
DIVIDE 
115[[#b62afbe0]]
AND 
21[[#b62afba0]]
TokenNameXOR 
22[[#b62afba0]]
TokenNameUNSIGNED_RIGHT_SHIFT 
23[[#b62afba0]]
TokenNameRIGHT_SHIFT 
24[[#b62afba0]]
TokenNameREMAINDER 
25[[#b62afba0]]
TokenNamePLUS 
26[[#b62afba0]]
TokenNameOR 
27[[#b62afba0]]
TokenNameMULTIPLY 
28[[#b62afba0]]
TokenNameMINUS 
29[[#b62afba0]]
TokenNameLESS_EQUAL 
210[[#b62afba0]]
TokenNameLESS 
211[[#b62afba0]]
TokenNameLEFT_SHIFT 
212[[#b62afba0]]
TokenNameGREATER_EQUAL 
213[[#b62afba0]]
TokenNameGREATER 
214[[#b62afba0]]
TokenNameDIVIDE 
215[[#b62afba0]]
TokenNameAND