CloneSet950


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
5210.977method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
15486
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CombinedDomainCategoryPlot.java
25627
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CombinedDomainXYPlot.java
Next
Last
Clone Instance
1
Line Count
5
Source Line
486
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/plot/CombinedDomainCategoryPlot.java

/**
 * Sets the size (width or height, depending on the orientation of the
 * plot) for the range axis of each subplot.
 *
 * @param space  the space (<code>null</code> permitted).
 */
protected void setFixedRangeAxisSpaceForSubplots(AxisSpace space) {
  Iterator iterator = this.subplots.iterator();
  while (iterator.hasNext()) {
    CategoryPlot plot = (CategoryPlot) iterator.next();
    plot.setFixedRangeAxisSpace(space, false);
  }
}


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

/**
 * Sets the size (width or height, depending on the orientation of the
 * plot) for the domain axis of each subplot.
 *
 * @param space  the space.
 */
protected void setFixedRangeAxisSpaceForSubplots(AxisSpace space) {
  Iterator iterator = this.subplots.iterator();
  while (iterator.hasNext()) {
    XYPlot plot = (XYPlot) iterator.next();
    plot.setFixedRangeAxisSpace(space, false);
  }
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Sets the size (width or height, depending on the orientation of the
     * plot) for the range axis of each subplot.
     *
     * @param space  the space (<code>null</code> permitted).
     */
/**
     * Sets the size (width or height, depending on the orientation of the
     * plot) for the domain axis of each subplot.
     *
     * @param space  the space.
     */
protected void setFixedRangeAxisSpaceForSubplots(AxisSpace space) {
  Iterator iterator = this.subplots.iterator();
  while (iterator.hasNext()) {
     [[#variable18e097e0]] plot = ( [[#variable18e097e0]]) iterator.next();
    plot.setFixedRangeAxisSpace(space, false);
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18e097e0]]
CategoryPlot 
12[[#18e097e0]]
XYPlot