CloneSet1130


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
5210.973executable_statement
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
15483
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYAreaRenderer.java
25492
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYAreaRenderer.java
Next
Last
Clone Instance
1
Line Count
5
Source Line
483
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYAreaRenderer.java

if (plot.getOrientation() == PlotOrientation.VERTICAL) {
  areaState.area.addPoint((int) transX1, (int) zero);
}
else
  if (plot.getOrientation() == PlotOrientation.HORIZONTAL) {
    areaState.area.addPoint((int) zero, (int) transX1);
  }


First
Previous
Clone Instance
2
Line Count
5
Source Line
492
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYAreaRenderer.java

// Add each point to Area (x, y)
if (plot.getOrientation() == PlotOrientation.VERTICAL) {
  areaState.area.addPoint((int) transX1, (int) transY1);
}
else
  if (plot.getOrientation() == PlotOrientation.HORIZONTAL) {
    areaState.area.addPoint((int) transY1, (int) transX1);
  }


Clone AbstractionParameter Count: 1Parameter Bindings

// Add each point to Area (x, y)
if (plot.getOrientation() == PlotOrientation.VERTICAL) {
  areaState.area.addPoint((int) transX1, (int)  [[#variable18ea37a0]]);
}
else
  if (plot.getOrientation() == PlotOrientation.HORIZONTAL) {
    areaState.area.addPoint((int)  [[#variable18ea37a0]], (int) transX1);
  }
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18ea37a0]]
zero 
12[[#18ea37a0]]
transY1