CloneSet314


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
131130.975compilation_unit
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11311
plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/AndAssignmentOperator.java
21411
plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/DivideAssignmentOperator.java
31411
plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/LeftShiftAssignmentOperator.java
41411
plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/MinusAssignmentOperator.java
51411
plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/MultiplyAssignmentOperator.java
61411
plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/OrAssignmentOperator.java
71411
plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/PlusAssignmentOperator.java
81411
plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/RemainderAssignmentOperator.java
91411
plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/RightShiftAssignmentOperator.java
101411
plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/UnsignedRightShiftAssignmentOperator.java
111411
plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/XorAssignmentOperator.java
Clone Instance
1
Line Count
13
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/AndAssignmentOperator.java

/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jdt.internal.debug.eval.ast.instructions;

public class AndAssignmentOperator extends AndOperator {

        public AndAssignmentOperator(int variableTypeId, int valueTypeId, int start) {
                super(variableTypeId, variableTypeId, valueTypeId, true, start);
        }

        public String toString() {
                return InstructionsEvaluationMessages.AndAssignmentOperator_operator_1;
        }
}




Clone Instance
2
Line Count
14
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/DivideAssignmentOperator.java

/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jdt.internal.debug.eval.ast.instructions;

public class DivideAssignmentOperator extends DivideOperator {

        public DivideAssignmentOperator(int variableTypeId, int valueTypeId, int start) {
                super(variableTypeId, variableTypeId, valueTypeId, true, start);
        }

        public String toString() {
                return InstructionsEvaluationMessages.DivideAssignmentOperator_operator_1;
        }
}




Clone Instance
3
Line Count
14
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/LeftShiftAssignmentOperator.java

/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jdt.internal.debug.eval.ast.instructions;

public class LeftShiftAssignmentOperator extends LeftShiftOperator {

        public LeftShiftAssignmentOperator(int variableTypeId, int valueTypeId, int start) {
                super(variableTypeId, variableTypeId, valueTypeId, true, start);
        }

        public String toString() {
                return InstructionsEvaluationMessages.LeftShiftAssignmentOperator_operator_1;
        }
}




Clone Instance
4
Line Count
14
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/MinusAssignmentOperator.java

/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jdt.internal.debug.eval.ast.instructions;

public class MinusAssignmentOperator extends MinusOperator {

        public MinusAssignmentOperator(int variableTypeId, int valueTypeId, int start) {
                super(variableTypeId, variableTypeId, valueTypeId, true, start);
        }

        public String toString() {
                return InstructionsEvaluationMessages.MinusAssignmentOperator_operator_1;
        }
}




Clone Instance
5
Line Count
14
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/MultiplyAssignmentOperator.java

/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jdt.internal.debug.eval.ast.instructions;

public class MultiplyAssignmentOperator extends MultiplyOperator {

        public MultiplyAssignmentOperator(int variableTypeId, int valueTypeId, int start) {
                super(variableTypeId, variableTypeId, valueTypeId, true, start);
        }

        public String toString() {
                return InstructionsEvaluationMessages.MultiplyAssignmentOperator_operator_1;
        }
}




Clone Instance
6
Line Count
14
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/OrAssignmentOperator.java

/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jdt.internal.debug.eval.ast.instructions;

public class OrAssignmentOperator extends OrOperator {

        public OrAssignmentOperator(int variableTypeId, int valueTypeId, int start) {
                super(variableTypeId, variableTypeId, valueTypeId, true, start);
        }

        public String toString() {
                return InstructionsEvaluationMessages.OrAssignmentOperator_operator_1;
        }
}




Clone Instance
7
Line Count
14
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/PlusAssignmentOperator.java

/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jdt.internal.debug.eval.ast.instructions;

public class PlusAssignmentOperator extends PlusOperator {

        public PlusAssignmentOperator(int variableTypeId, int valueTypeId, int start) {
                super(variableTypeId, variableTypeId, valueTypeId, true, start);
        }

        public String toString() {
                return InstructionsEvaluationMessages.PlusAssignmentOperator_operator_1;
        }
}




Clone Instance
8
Line Count
14
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/RemainderAssignmentOperator.java

/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jdt.internal.debug.eval.ast.instructions;

public class RemainderAssignmentOperator extends RemainderOperator {

        public RemainderAssignmentOperator(int variableTypeId, int valueTypeId, int start) {
                super(variableTypeId, variableTypeId, valueTypeId, true, start);
        }

        public String toString() {
                return InstructionsEvaluationMessages.RemainderAssignmentOperator_operator_1;
        }
}




Clone Instance
9
Line Count
14
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/RightShiftAssignmentOperator.java

/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jdt.internal.debug.eval.ast.instructions;

public class RightShiftAssignmentOperator extends RightShiftOperator {

        public RightShiftAssignmentOperator(int variableTypeId, int valueTypeId, int start) {
                super(variableTypeId, variableTypeId, valueTypeId, true, start);
        }

        public String toString() {
                return InstructionsEvaluationMessages.RightShiftAssignmentOperator_operator_1;
        }
}




Clone Instance
10
Line Count
14
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/UnsignedRightShiftAssignmentOperator.java

/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jdt.internal.debug.eval.ast.instructions;

public class UnsignedRightShiftAssignmentOperator extends UnsignedRightShiftOperator {

        public UnsignedRightShiftAssignmentOperator(int variableTypeId, int valueTypeId, int start) {
                super(variableTypeId, variableTypeId, valueTypeId, true, start);
        }

        public String toString() {
                return InstructionsEvaluationMessages.UnsignedRightShiftAssignmentOperator_operator_1;
        }
}




Clone Instance
11
Line Count
14
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/eval/org/eclipse/jdt/internal/debug/eval/ast/instructions/XorAssignmentOperator.java

/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jdt.internal.debug.eval.ast.instructions;

public class XorAssignmentOperator extends XorOperator {

        public XorAssignmentOperator(int variableTypeId, int valueTypeId, int start) {
                super(variableTypeId, variableTypeId, valueTypeId, true, start);
        }

        public String toString() {
                return InstructionsEvaluationMessages.XorAssignmentOperator_operator_1;
        }
}




Clone AbstractionParameter Count: 3Parameter Bindings

/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jdt.internal.debug.eval.ast.instructions;

public class [[#variableb9ec9e00]]extends [[#variableb9ec9d80]]{
  public [[#variableb9ec9e00]](int variableTypeId, int valueTypeId, int start) {
    super(variableTypeId, variableTypeId, valueTypeId, true, start);
  }

  public String toString() {
    return InstructionsEvaluationMessages. [[#variableb9ec9be0]];
  }
}


 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#b9ec9e00]]
AndAssignmentOperator 
12[[#b9ec9e00]]
DivideAssignmentOperator 
13[[#b9ec9e00]]
LeftShiftAssignmentOperator 
14[[#b9ec9e00]]
MinusAssignmentOperator 
15[[#b9ec9e00]]
MultiplyAssignmentOperator 
16[[#b9ec9e00]]
OrAssignmentOperator 
17[[#b9ec9e00]]
PlusAssignmentOperator 
18[[#b9ec9e00]]
RemainderAssignmentOperator 
19[[#b9ec9e00]]
RightShiftAssignmentOperator 
110[[#b9ec9e00]]
UnsignedRightShiftAssignmentOperator 
111[[#b9ec9e00]]
XorAssignmentOperator 
21[[#b9ec9d80]]
AndOperator 
22[[#b9ec9d80]]
DivideOperator 
23[[#b9ec9d80]]
LeftShiftOperator 
24[[#b9ec9d80]]
MinusOperator 
25[[#b9ec9d80]]
MultiplyOperator 
26[[#b9ec9d80]]
OrOperator 
27[[#b9ec9d80]]
PlusOperator 
28[[#b9ec9d80]]
RemainderOperator 
29[[#b9ec9d80]]
RightShiftOperator 
210[[#b9ec9d80]]
UnsignedRightShiftOperator 
211[[#b9ec9d80]]
XorOperator 
31[[#b9ec9be0]]
AndAssignmentOperator_operator_1 
32[[#b9ec9be0]]
DivideAssignmentOperator_operator_1 
33[[#b9ec9be0]]
LeftShiftAssignmentOperator_operator_1 
34[[#b9ec9be0]]
MinusAssignmentOperator_operator_1 
35[[#b9ec9be0]]
MultiplyAssignmentOperator_operator_1 
36[[#b9ec9be0]]
OrAssignmentOperator_operator_1 
37[[#b9ec9be0]]
PlusAssignmentOperator_operator_1 
38[[#b9ec9be0]]
RemainderAssignmentOperator_operator_1 
39[[#b9ec9be0]]
RightShiftAssignmentOperator_operator_1 
310[[#b9ec9be0]]
UnsignedRightShiftAssignmentOperator_operator_1 
311[[#b9ec9be0]]
XorAssignmentOperator_operator_1