CloneSet675


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
11220.964class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
111146
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/image/Image.java
21036
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/types/optional/image/ImageOperation.java
Next
Last
Clone Instance
1
Line Count
11
Source Line
146
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/taskdefs/optional/image/Image.java

/**
 * Add a Rotate ImageOperation to the chain.
 * @param instr The Rotate operation to add to the chain.
 * @see org.apache.tools.ant.types.optional.image.Rotate
 */
public void addRotate(Rotate instr) {
  instructions.add(instr);
}

/**
 * Add a Scale ImageOperation to the chain.
 * @param instr The Scale operation to add to the chain.
 * @see org.apache.tools.ant.types.optional.image.Scale
 */
public void addScale(Scale instr) {
  instructions.add(instr);
}


First
Previous
Clone Instance
2
Line Count
10
Source Line
36
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/types/optional/image/ImageOperation.java

// CheckStyle:VisibilityModifier ON
/**
 * Add a rotate to the operation.
 * @param instr the rotate to add.
 */
public void addRotate(Rotate instr) {
  instructions.add(instr);
}

/**
 * Add a draw to the operation.
 * @param instr the draw to add.
 */
public void addDraw(Draw instr) {
  instructions.add(instr);
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Add a Rotate ImageOperation to the chain.
     * @param instr The Rotate operation to add to the chain.
     * @see org.apache.tools.ant.types.optional.image.Rotate
     */
// CheckStyle:VisibilityModifier ON
/**
     * Add a rotate to the operation.
     * @param instr the rotate to add.
     */
public void addRotate(Rotate instr) {
  instructions.add(instr);
}

/**
     * Add a Scale ImageOperation to the chain.
     * @param instr The Scale operation to add to the chain.
     * @see org.apache.tools.ant.types.optional.image.Scale
     */
/**
     * Add a draw to the operation.
     * @param instr the draw to add.
     */
public void [[#variable13049720]]( [[#variable130495a0]] instr) {
  instructions.add(instr);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#13049720]]
addScale 
12[[#13049720]]
addDraw 
21[[#130495a0]]
Scale 
22[[#130495a0]]
Draw