CloneSet515


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
11210.986executable_statement
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
111554
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialPlot.java
211571
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialPlot.java
Next
Last
Clone Instance
1
Line Count
11
Source Line
554
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialPlot.java

while (iterator.hasNext()) {
  DialLayer current = (DialLayer) iterator.next();
  if (current.isVisible()) {
    if (current.isClippedToWindow()) {
      Shape savedClip = g2.getClip();
      g2.clip(this.dialFrame.getWindow(frame));
      current.draw(g2, this, frame, area);
      g2.setClip(savedClip);
    }
    else {
      current.draw(g2, this, frame, area);
    }
  }
}


First
Previous
Clone Instance
2
Line Count
11
Source Line
571
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/dial/DialPlot.java

while (iterator.hasNext()) {
  DialPointer current = (DialPointer) iterator.next();
  if (current.isVisible()) {
    if (current.isClippedToWindow()) {
      Shape savedClip = g2.getClip();
      g2.clip(this.dialFrame.getWindow(frame));
      current.draw(g2, this, frame, area);
      g2.setClip(savedClip);
    }
    else {
      current.draw(g2, this, frame, area);
    }
  }
}


Clone AbstractionParameter Count: 1Parameter Bindings

while (iterator.hasNext()) {
   [[#variable18c1ace0]] current = ( [[#variable18c1ace0]]) iterator.next();
  if (current.isVisible()) {
    if (current.isClippedToWindow()) {
      Shape savedClip = g2.getClip();
      g2.clip(this.dialFrame.getWindow(frame));
      current.draw(g2, this, frame, area);
      g2.setClip(savedClip);
    }
    else {
      current.draw(g2, this, frame, area);
    }
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18c1ace0]]
DialLayer 
12[[#18c1ace0]]
DialPointer