CloneSet570


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

// The first point is (x, this.baseYValue)
if (orientation == PlotOrientation.VERTICAL) {
  this.pArea.addPoint((int) transX1, (int) transY2);
}
else
  if (orientation == PlotOrientation.HORIZONTAL) {
    this.pArea.addPoint((int) transY2, (int) transX1);
  }


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

// not just a horizontal bar but need to perform a 'step'.
if (orientation == PlotOrientation.VERTICAL) {
  this.pArea.addPoint((int) transX1, (int) transY0);
}
else
  if (orientation == PlotOrientation.HORIZONTAL) {
    this.pArea.addPoint((int) transY0, (int) transX1);
  }


Next
Previous
Clone Instance
3
Line Count
5
Source Line
443
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYStepAreaRenderer.java

// Add each point to Area (x, y)
if (orientation == PlotOrientation.VERTICAL) {
  this.pArea.addPoint((int) transX1, (int) transY1);
}
else
  if (orientation == PlotOrientation.HORIZONTAL) {
    this.pArea.addPoint((int) transY1, (int) transX1);
  }


First
Previous
Clone Instance
4
Line Count
7
Source Line
491
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/XYStepAreaRenderer.java

if (orientation == PlotOrientation.VERTICAL) {
  // Add the last point (x,0)
  this.pArea.addPoint((int) transX1, (int) transY2);
}
else
  if (orientation == PlotOrientation.HORIZONTAL) {
    // Add the last point (x,0)
    this.pArea.addPoint((int) transY2, (int) transX1);
  }


Clone AbstractionParameter Count: 1Parameter Bindings

// The first point is (x, this.baseYValue)
// not just a horizontal bar but need to perform a 'step'.
// Add each point to Area (x, y)
if (orientation == PlotOrientation.VERTICAL) {
  // Add the last point (x,0)
  this.pArea.addPoint((int) transX1, (int)  [[#variable18c62840]]);
}
else
  if (orientation == PlotOrientation.HORIZONTAL) {
    // Add the last point (x,0)
    this.pArea.addPoint((int)  [[#variable18c62840]], (int) transX1);
  }
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18c62840]]
transY2 
12[[#18c62840]]
transY0 
13[[#18c62840]]
transY1 
14[[#18c62840]]
transY2