| Previous CloneSet | Next CloneSet | Back to Main Report |
| Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
|---|---|---|---|---|
| 3 | 19 | 4 | 0.953 | class_body_declarations[2] |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 3 | 79 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Assignment.java |
| 2 | 3 | 83 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Assignment.java |
| 3 | 3 | 87 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Assignment.java |
| 4 | 3 | 91 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Assignment.java |
| 5 | 4 | 95 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Assignment.java |
| 6 | 5 | 100 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/Assignment.java |
| 7 | 3 | 85 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java |
| 8 | 3 | 89 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java |
| 9 | 3 | 93 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java |
| 10 | 4 | 99 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java |
| 11 | 3 | 104 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java |
| 12 | 3 | 108 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java |
| 13 | 3 | 112 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java |
| 14 | 3 | 116 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java |
| 15 | 3 | 120 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/InfixExpression.java |
| 16 | 3 | 69 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/PostfixExpression.java |
| 17 | 3 | 73 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/PrefixExpression.java |
| 18 | 3 | 77 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/PrefixExpression.java |
| 19 | 3 | 81 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/PrefixExpression.java |
| ||||
/** = operator. */
public static final Operator ASSIGN = new Operator("="); //$NON-NLS-1$
/** += operator. */
public static final Operator PLUS_ASSIGN = new Operator("+="); //$NON-NLS-1$
|
| ||||
/** -= operator. */
public static final Operator MINUS_ASSIGN = new Operator("-="); //$NON-NLS-1$
/** *= operator. */
public static final Operator TIMES_ASSIGN = new Operator("*="); //$NON-NLS-1$
|
| ||||
/** /= 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$
|
| ||||
/** |= 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$
|
| ||||
/** %= 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$
|
| ||||
/** >>= operator. */
public static final Operator RIGHT_SHIFT_SIGNED_ASSIGN =
new Operator(">>="); //$NON-NLS-1$
/** >>>= operator. */
public static final Operator RIGHT_SHIFT_UNSIGNED_ASSIGN =
new Operator(">>>="); //$NON-NLS-1$
|
| ||||
/** Multiplication "*" operator. */
public static final Operator TIMES = new Operator("*"); //$NON-NLS-1$
/** Division "/" operator. */
public static final Operator DIVIDE = new Operator("/"); //$NON-NLS-1$
|
| ||||
/** 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$
|
| ||||
/** Subtraction "-" operator. */
public static final Operator MINUS = new Operator("-"); //$NON-NLS-1$
/** Left shift "<<" operator. */
public static final Operator LEFT_SHIFT = new Operator("<<"); //$NON-NLS-1$
|
| ||||
/** Unsigned right shift ">>>" operator. */
public static final Operator RIGHT_SHIFT_UNSIGNED =
new Operator(">>>"); //$NON-NLS-1$
/** Less than "<" operator. */
public static final Operator LESS = new Operator("<"); //$NON-NLS-1$
|
| ||||
/** Greater than ">" operator. */
public static final Operator GREATER = new Operator(">"); //$NON-NLS-1$
/** Less than or equals "<=" operator. */
public static final Operator LESS_EQUALS = new Operator("<="); //$NON-NLS-1$
|
| ||||
/** Greater than or equals ">=;" operator. */
public static final Operator GREATER_EQUALS = new Operator(">="); //$NON-NLS-1$
/** Equals "==" operator. */
public static final Operator EQUALS = new Operator("=="); //$NON-NLS-1$
|
| ||||
/** 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$
|
| ||||
/** Inclusive OR "|" operator. */
public static final Operator OR = new Operator("|"); //$NON-NLS-1$
/** AND "&" operator. */
public static final Operator AND = new Operator("&"); //$NON-NLS-1$
|
| ||||
/** Conditional OR "||" operator. */
public static final Operator CONDITIONAL_OR = new Operator("||"); //$NON-NLS-1$
/** Conditional AND "&&" operator. */
public static final Operator CONDITIONAL_AND = new Operator("&&"); //$NON-NLS-1$
|
| ||||
/** 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$
|
| ||||
/** 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$
|
| ||||
/** 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$
|
| ||||
/** 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$
|
| |||
/** Postfix increment "++" operator. */ /** Subtraction "-" operator. */ /** >>= operator. */ /** %= operator. */ /** |= operator. */ /** /= operator. */ /** -= operator. */ /** = operator. */ /** Conditional OR "||" operator. */ /** Inclusive OR "|" operator. */ /** Not equals "!=" operator. */ /** Greater than or equals ">=;" operator. */ /** Greater than ">" operator. */ /** Unsigned right shift ">>>" 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 "<<" operator. */ /** >>>= operator. */ /** <<== operator. */ /** ^= operator. */ /** &= operator. */ /** *= operator. */ /** += operator. */ /** Conditional AND "&&" operator. */ /** AND "&" operator. */ /** Exclusive OR "^" operator. */ /** Equals "==" operator. */ /** Less than or equals "<=" operator. */ /** Less than "<" 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 Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| 1 | 1 | [[#b65c0c40]] | INCREMENT |
| 1 | 2 | [[#b65c0c40]] | MINUS |
| 1 | 3 | [[#b65c0c40]] | RIGHT_SHIFT_SIGNED_ASSIGN |
| 1 | 4 | [[#b65c0c40]] | REMAINDER_ASSIGN |
| 1 | 5 | [[#b65c0c40]] | BIT_OR_ASSIGN |
| 1 | 6 | [[#b65c0c40]] | DIVIDE_ASSIGN |
| 1 | 7 | [[#b65c0c40]] | MINUS_ASSIGN |
| 1 | 8 | [[#b65c0c40]] | ASSIGN |
| 1 | 9 | [[#b65c0c40]] | CONDITIONAL_OR |
| 1 | 10 | [[#b65c0c40]] | OR |
| 1 | 11 | [[#b65c0c40]] | NOT_EQUALS |
| 1 | 12 | [[#b65c0c40]] | GREATER_EQUALS |
| 1 | 13 | [[#b65c0c40]] | GREATER |
| 1 | 14 | [[#b65c0c40]] | RIGHT_SHIFT_UNSIGNED |
| 1 | 15 | [[#b65c0c40]] | REMAINDER |
| 1 | 16 | [[#b65c0c40]] | TIMES |
| 1 | 17 | [[#b65c0c40]] | COMPLEMENT |
| 1 | 18 | [[#b65c0c40]] | PLUS |
| 1 | 19 | [[#b65c0c40]] | INCREMENT |
| 2 | 1 | [[#b65c0b00]] | "++" |
| 2 | 2 | [[#b65c0b00]] | "-" |
| 2 | 3 | [[#b65c0b00]] | ">>=" |
| 2 | 4 | [[#b65c0b00]] | "%=" |
| 2 | 5 | [[#b65c0b00]] | "|=" |
| 2 | 6 | [[#b65c0b00]] | "/=" |
| 2 | 7 | [[#b65c0b00]] | "-=" |
| 2 | 8 | [[#b65c0b00]] | "=" |
| 2 | 9 | [[#b65c0b00]] | "||" |
| 2 | 10 | [[#b65c0b00]] | "|" |
| 2 | 11 | [[#b65c0b00]] | "!=" |
| 2 | 12 | [[#b65c0b00]] | ">=" |
| 2 | 13 | [[#b65c0b00]] | ">" |
| 2 | 14 | [[#b65c0b00]] | ">>>" |
| 2 | 15 | [[#b65c0b00]] | "%" |
| 2 | 16 | [[#b65c0b00]] | "*" |
| 2 | 17 | [[#b65c0b00]] | "~" |
| 2 | 18 | [[#b65c0b00]] | "+" |
| 2 | 19 | [[#b65c0b00]] | "++" |
| 3 | 1 | [[#b65c0be0]] | DECREMENT |
| 3 | 2 | [[#b65c0be0]] | LEFT_SHIFT |
| 3 | 3 | [[#b65c0be0]] | RIGHT_SHIFT_UNSIGNED_ASSIGN |
| 3 | 4 | [[#b65c0be0]] | LEFT_SHIFT_ASSIGN |
| 3 | 5 | [[#b65c0be0]] | BIT_XOR_ASSIGN |
| 3 | 6 | [[#b65c0be0]] | BIT_AND_ASSIGN |
| 3 | 7 | [[#b65c0be0]] | TIMES_ASSIGN |
| 3 | 8 | [[#b65c0be0]] | PLUS_ASSIGN |
| 3 | 9 | [[#b65c0be0]] | CONDITIONAL_AND |
| 3 | 10 | [[#b65c0be0]] | AND |
| 3 | 11 | [[#b65c0be0]] | XOR |
| 3 | 12 | [[#b65c0be0]] | EQUALS |
| 3 | 13 | [[#b65c0be0]] | LESS_EQUALS |
| 3 | 14 | [[#b65c0be0]] | LESS |
| 3 | 15 | [[#b65c0be0]] | PLUS |
| 3 | 16 | [[#b65c0be0]] | DIVIDE |
| 3 | 17 | [[#b65c0be0]] | NOT |
| 3 | 18 | [[#b65c0be0]] | MINUS |
| 3 | 19 | [[#b65c0be0]] | DECREMENT |
| 4 | 1 | [[#b65c0860]] | "--" |
| 4 | 2 | [[#b65c0860]] | "<<" |
| 4 | 3 | [[#b65c0860]] | ">>>=" |
| 4 | 4 | [[#b65c0860]] | "<<=" |
| 4 | 5 | [[#b65c0860]] | "^=" |
| 4 | 6 | [[#b65c0860]] | "&=" |
| 4 | 7 | [[#b65c0860]] | "*=" |
| 4 | 8 | [[#b65c0860]] | "+=" |
| 4 | 9 | [[#b65c0860]] | "&&" |
| 4 | 10 | [[#b65c0860]] | "&" |
| 4 | 11 | [[#b65c0860]] | "^" |
| 4 | 12 | [[#b65c0860]] | "==" |
| 4 | 13 | [[#b65c0860]] | "<=" |
| 4 | 14 | [[#b65c0860]] | "<" |
| 4 | 15 | [[#b65c0860]] | "+" |
| 4 | 16 | [[#b65c0860]] | "/" |
| 4 | 17 | [[#b65c0860]] | "!" |
| 4 | 18 | [[#b65c0860]] | "-" |
| 4 | 19 | [[#b65c0860]] | "--" |