CloneSet364


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
31940.953class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1379
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Assignment.java
2383
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Assignment.java
3387
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Assignment.java
4391
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Assignment.java
5495
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Assignment.java
65100
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Assignment.java
7385
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java
8389
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java
9393
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java
10499
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java
113104
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java
123108
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java
133112
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java
143116
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java
153120
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java
16369
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/PostfixExpression.java
17373
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/PrefixExpression.java
18377
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/PrefixExpression.java
19381
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/PrefixExpression.java
Clone Instance
1
Line Count
3
Source Line
79
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Assignment.java

                /** = operator. */
                public static final Operator ASSIGN = new Operator("="); //$NON-NLS-1$

                /** += operator. */
                public static final Operator PLUS_ASSIGN = new Operator("+="); //$NON-NLS-1$


Clone Instance
2
Line Count
3
Source Line
83
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Assignment.java

                /** -= operator. */
                public static final Operator MINUS_ASSIGN = new Operator("-="); //$NON-NLS-1$

                /** *= operator. */
                public static final Operator TIMES_ASSIGN = new Operator("*="); //$NON-NLS-1$


Clone Instance
3
Line Count
3
Source Line
87
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Assignment.java

                /** /= operator. */
                public static final Operator DIVIDE_ASSIGN = new Operator("/="); //$NON-NLS-1$

                /** &= operator. */
                public static final Operator BIT_AND_ASSIGN = new Operator("&="); //$NON-NLS-1$


Clone Instance
4
Line Count
3
Source Line
91
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Assignment.java

                /** |= operator. */
                public static final Operator BIT_OR_ASSIGN = new Operator("|="); //$NON-NLS-1$

                /** ^= operator. */
                public static final Operator BIT_XOR_ASSIGN = new Operator("^="); //$NON-NLS-1$


Clone Instance
5
Line Count
4
Source Line
95
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Assignment.java

                /** %= operator. */
                public static final Operator REMAINDER_ASSIGN = new Operator("%="); //$NON-NLS-1$

                /** <<== operator. */
                public static final Operator LEFT_SHIFT_ASSIGN =
                        new Operator("<<="); //$NON-NLS-1$


Clone Instance
6
Line Count
5
Source Line
100
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Assignment.java

                /** &gt;&gt;= operator. */
                public static final Operator RIGHT_SHIFT_SIGNED_ASSIGN =
                        new Operator(">>="); //$NON-NLS-1$

                /** &gt;&gt;&gt;= operator. */
                public static final Operator RIGHT_SHIFT_UNSIGNED_ASSIGN =
                        new Operator(">>>="); //$NON-NLS-1$


Clone Instance
7
Line Count
3
Source Line
85
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java

                /** Multiplication "*" operator. */
                public static final Operator TIMES = new Operator("*"); //$NON-NLS-1$

                /** Division "/" operator. */
                public static final Operator DIVIDE = new Operator("/"); //$NON-NLS-1$


Clone Instance
8
Line Count
3
Source Line
89
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java

                /** Remainder "%" operator. */
                public static final Operator REMAINDER = new Operator("%"); //$NON-NLS-1$

                /** Addition (or string concatenation) "+" operator. */
                public static final Operator PLUS = new Operator("+"); //$NON-NLS-1$


Clone Instance
9
Line Count
3
Source Line
93
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java

                /** Subtraction "-" operator. */
                public static final Operator MINUS = new Operator("-"); //$NON-NLS-1$

                /** Left shift "&lt;&lt;" operator. */
                public static final Operator LEFT_SHIFT = new Operator("<<"); //$NON-NLS-1$


Clone Instance
10
Line Count
4
Source Line
99
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java

                /** Unsigned right shift "&gt;&gt;&gt;" operator. */
                public static final Operator RIGHT_SHIFT_UNSIGNED =
                        new Operator(">>>"); //$NON-NLS-1$

                /** Less than "&lt;" operator. */
                public static final Operator LESS = new Operator("<"); //$NON-NLS-1$


Clone Instance
11
Line Count
3
Source Line
104
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java

                /** Greater than "&gt;" operator. */
                public static final Operator GREATER = new Operator(">"); //$NON-NLS-1$

                /** Less than or equals "&lt;=" operator. */
                public static final Operator LESS_EQUALS = new Operator("<="); //$NON-NLS-1$


Clone Instance
12
Line Count
3
Source Line
108
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java

                /** Greater than or equals "&gt=;" operator. */
                public static final Operator GREATER_EQUALS = new Operator(">="); //$NON-NLS-1$

                /** Equals "==" operator. */
                public static final Operator EQUALS = new Operator("=="); //$NON-NLS-1$


Clone Instance
13
Line Count
3
Source Line
112
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java

                /** Not equals "!=" operator. */
                public static final Operator NOT_EQUALS = new Operator("!="); //$NON-NLS-1$

                /** Exclusive OR "^" operator. */
                public static final Operator XOR = new Operator("^"); //$NON-NLS-1$


Clone Instance
14
Line Count
3
Source Line
116
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java

                /** Inclusive OR "|" operator. */
                public static final Operator OR = new Operator("|"); //$NON-NLS-1$

                /** AND "&amp;" operator. */
                public static final Operator AND = new Operator("&"); //$NON-NLS-1$


Clone Instance
15
Line Count
3
Source Line
120
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java

                /** Conditional OR "||" operator. */
                public static final Operator CONDITIONAL_OR = new Operator("||"); //$NON-NLS-1$

                /** Conditional AND "&amp;&amp;" operator. */
                public static final Operator CONDITIONAL_AND = new Operator("&&"); //$NON-NLS-1$


Clone Instance
16
Line Count
3
Source Line
69
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/PostfixExpression.java

                /** Postfix increment "++" operator. */
                public static final Operator INCREMENT = new Operator("++"); //$NON-NLS-1$

                /** Postfix decrement "--" operator. */
                public static final Operator DECREMENT = new Operator("--"); //$NON-NLS-1$


Clone Instance
17
Line Count
3
Source Line
73
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/PrefixExpression.java

                /** Prefix increment "++" operator. */
                public static final Operator INCREMENT = new Operator("++"); //$NON-NLS-1$

                /** Prefix decrement "--" operator. */
                public static final Operator DECREMENT = new Operator("--"); //$NON-NLS-1$


Clone Instance
18
Line Count
3
Source Line
77
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/PrefixExpression.java

                /** Unary plus "+" operator. */
                public static final Operator PLUS = new Operator("+"); //$NON-NLS-1$

                /** Unary minus "-" operator. */
                public static final Operator MINUS = new Operator("-"); //$NON-NLS-1$


Clone Instance
19
Line Count
3
Source Line
81
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/PrefixExpression.java

                /** Bitwise complement "~" operator. */
                public static final Operator COMPLEMENT = new Operator("~"); //$NON-NLS-1$

                /** Logical complement "!" operator. */
                public static final Operator NOT = new Operator("!"); //$NON-NLS-1$


Clone AbstractionParameter Count: 4Parameter Bindings

/** Postfix increment "++" operator. */
/** Subtraction "-" operator. */
/** &gt;&gt;= operator. */
/** %= operator. */
/** |= operator. */
/** /= operator. */
/** -= operator. */
/** = operator. */
/** Conditional OR "||" operator. */
/** Inclusive OR "|" operator. */
/** Not equals "!=" operator. */
/** Greater than or equals "&gt=;" operator. */
/** Greater than "&gt;" operator. */
/** Unsigned right shift "&gt;&gt;&gt;" operator. */
/** Remainder "%" operator. */
/** Multiplication "*" operator. */
/** Bitwise complement "~" operator. */
/** Unary plus "+" operator. */
/** Prefix increment "++" operator. */
public static final Operator  [[#variableb65c0c40]]= new Operator( [[#variableb65c0b00]]); //$NON-NLS-1$

/** Postfix decrement "--" operator. */
/** Left shift "&lt;&lt;" operator. */
/** &gt;&gt;&gt;= operator. */
/** &lt;&lt;== operator. */
/** ^= operator. */
/** &amp;= operator. */
/** *= operator. */
/** += operator. */
/** Conditional AND "&amp;&amp;" operator. */
/** AND "&amp;" operator. */
/** Exclusive OR "^" operator. */
/** Equals "==" operator. */
/** Less than or equals "&lt;=" operator. */
/** Less than "&lt;" operator. */
/** Addition (or string concatenation) "+" operator. */
/** Division "/" operator. */
/** Logical complement "!" operator. */
/** Unary minus "-" operator. */
/** Prefix decrement "--" operator. */
public static final Operator  [[#variableb65c0be0]]= new Operator( [[#variableb65c0860]]); //$NON-NLS-1$
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#b65c0c40]]
INCREMENT 
12[[#b65c0c40]]
MINUS 
13[[#b65c0c40]]
RIGHT_SHIFT_SIGNED_ASSIGN 
14[[#b65c0c40]]
REMAINDER_ASSIGN 
15[[#b65c0c40]]
BIT_OR_ASSIGN 
16[[#b65c0c40]]
DIVIDE_ASSIGN 
17[[#b65c0c40]]
MINUS_ASSIGN 
18[[#b65c0c40]]
ASSIGN 
19[[#b65c0c40]]
CONDITIONAL_OR 
110[[#b65c0c40]]
OR 
111[[#b65c0c40]]
NOT_EQUALS 
112[[#b65c0c40]]
GREATER_EQUALS 
113[[#b65c0c40]]
GREATER 
114[[#b65c0c40]]
RIGHT_SHIFT_UNSIGNED 
115[[#b65c0c40]]
REMAINDER 
116[[#b65c0c40]]
TIMES 
117[[#b65c0c40]]
COMPLEMENT 
118[[#b65c0c40]]
PLUS 
119[[#b65c0c40]]
INCREMENT 
21[[#b65c0b00]]
"++" 
22[[#b65c0b00]]
"-" 
23[[#b65c0b00]]
">>=" 
24[[#b65c0b00]]
"%=" 
25[[#b65c0b00]]
"|=" 
26[[#b65c0b00]]
"/=" 
27[[#b65c0b00]]
"-=" 
28[[#b65c0b00]]
"=" 
29[[#b65c0b00]]
"||" 
210[[#b65c0b00]]
"|" 
211[[#b65c0b00]]
"!=" 
212[[#b65c0b00]]
">=" 
213[[#b65c0b00]]
">" 
214[[#b65c0b00]]
">>>" 
215[[#b65c0b00]]
"%" 
216[[#b65c0b00]]
"*" 
217[[#b65c0b00]]
"~" 
218[[#b65c0b00]]
"+" 
219[[#b65c0b00]]
"++" 
31[[#b65c0be0]]
DECREMENT 
32[[#b65c0be0]]
LEFT_SHIFT 
33[[#b65c0be0]]
RIGHT_SHIFT_UNSIGNED_ASSIGN 
34[[#b65c0be0]]
LEFT_SHIFT_ASSIGN 
35[[#b65c0be0]]
BIT_XOR_ASSIGN 
36[[#b65c0be0]]
BIT_AND_ASSIGN 
37[[#b65c0be0]]
TIMES_ASSIGN 
38[[#b65c0be0]]
PLUS_ASSIGN 
39[[#b65c0be0]]
CONDITIONAL_AND 
310[[#b65c0be0]]
AND 
311[[#b65c0be0]]
XOR 
312[[#b65c0be0]]
EQUALS 
313[[#b65c0be0]]
LESS_EQUALS 
314[[#b65c0be0]]
LESS 
315[[#b65c0be0]]
PLUS 
316[[#b65c0be0]]
DIVIDE 
317[[#b65c0be0]]
NOT 
318[[#b65c0be0]]
MINUS 
319[[#b65c0be0]]
DECREMENT 
41[[#b65c0860]]
"--" 
42[[#b65c0860]]
"<<" 
43[[#b65c0860]]
">>>=" 
44[[#b65c0860]]
"<<=" 
45[[#b65c0860]]
"^=" 
46[[#b65c0860]]
"&=" 
47[[#b65c0860]]
"*=" 
48[[#b65c0860]]
"+=" 
49[[#b65c0860]]
"&&" 
410[[#b65c0860]]
"&" 
411[[#b65c0860]]
"^" 
412[[#b65c0860]]
"==" 
413[[#b65c0860]]
"<=" 
414[[#b65c0860]]
"<" 
415[[#b65c0860]]
"+" 
416[[#b65c0860]]
"/" 
417[[#b65c0860]]
"!" 
418[[#b65c0860]]
"-" 
419[[#b65c0860]]
"--"