CloneSet359


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
7310.992executable_statement
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
171239
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/ThermometerPlot.java
271250
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/ThermometerPlot.java
371261
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/ThermometerPlot.java
Next
Last
Clone Instance
1
Line Count
7
Source Line
1239
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/ThermometerPlot.java

if (range.contains(value)) {
  double x = midX + getColumnRadius() + 2;
  double y = this.rangeAxis.valueToJava2D(value, dataArea, RectangleEdge.LEFT);
  Line2D line = new Line2D.Double(x, y, x + 10, y);
  g2.setPaint(this.subrangePaint[NORMAL]);
  g2.draw(line);
}


Next
Previous
Clone Instance
2
Line Count
7
Source Line
1250
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/ThermometerPlot.java

if (range.contains(value)) {
  double x = midX + getColumnRadius() + 2;
  double y = this.rangeAxis.valueToJava2D(value, dataArea, RectangleEdge.LEFT);
  Line2D line = new Line2D.Double(x, y, x + 10, y);
  g2.setPaint(this.subrangePaint[WARNING]);
  g2.draw(line);
}


First
Previous
Clone Instance
3
Line Count
7
Source Line
1261
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/ThermometerPlot.java

if (range.contains(value)) {
  double x = midX + getColumnRadius() + 2;
  double y = this.rangeAxis.valueToJava2D(value, dataArea, RectangleEdge.LEFT);
  Line2D line = new Line2D.Double(x, y, x + 10, y);
  g2.setPaint(this.subrangePaint[CRITICAL]);
  g2.draw(line);
}


Clone AbstractionParameter Count: 1Parameter Bindings

if (range.contains(value)) {
  double x = midX + getColumnRadius() + 2;
  double y = this.rangeAxis.valueToJava2D(value, dataArea, RectangleEdge.LEFT);
  Line2D line = new Line2D.Double(x, y, x + 10, y);
  g2.setPaint(this.subrangePaint[ [[#variable1a93da60]]]);
  g2.draw(line);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a93da60]]
NORMAL 
12[[#1a93da60]]
WARNING 
13[[#1a93da60]]
CRITICAL