CloneSet709


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
152746
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CategoryPlot.java
252687
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java
Next
Last
Clone Instance
1
Line Count
5
Source Line
2746
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CategoryPlot.java

// reserve space for any domain axes...
for (int i = 0; i < this.domainAxes.size(); i++) {
  Axis xAxis = (Axis) this.domainAxes.get(i);
  if (xAxis != null) {
    RectangleEdge edge = getDomainAxisEdge(i);
    space = xAxis.reserveSpace(g2, this, plotArea, edge, space);
  }
}


First
Previous
Clone Instance
2
Line Count
5
Source Line
2687
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/XYPlot.java

// reserve space for the domain axes...
for (int i = 0; i < this.domainAxes.size(); i++) {
  Axis axis = (Axis) this.domainAxes.get(i);
  if (axis != null) {
    RectangleEdge edge = getDomainAxisEdge(i);
    space = axis.reserveSpace(g2, this, plotArea, edge, space);
  }
}


Clone AbstractionParameter Count: 1Parameter Bindings

// reserve space for the domain axes...
// reserve space for any domain axes...
for (int i = 0; i < this.domainAxes.size(); i++) {
  Axis  [[#variable18cf90e0]]= (Axis) this.domainAxes.get(i);
  if ( [[#variable18cf90e0]]!= null) {
    RectangleEdge edge = getDomainAxisEdge(i);
    space = [[#variable18cf90e0]].reserveSpace(g2, this, plotArea, edge, space);
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18cf90e0]]
xAxis 
12[[#18cf90e0]]
axis