CloneSet817


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
7310.984method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
17125
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/DefaultPolarItemRenderer.java
27153
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/WaferMapRenderer.java
371545
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/xy/AbstractXYItemRenderer.java
Next
Last
Clone Instance
1
Line Count
7
Source Line
125
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/DefaultPolarItemRenderer.java

/** 
 * Returns the drawing supplier from the plot.
 *
 * @return The drawing supplier.
 */
public DrawingSupplier getDrawingSupplier() {
  DrawingSupplier result = null;
  PolarPlot p = getPlot();
  if (p != null) {
    result = p.getDrawingSupplier();
  }
  return result;
}


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

/**
 * Returns the drawing supplier from the plot.
 * 
 * @return The drawing supplier.
 */
public DrawingSupplier getDrawingSupplier() {
  DrawingSupplier result = null;
  WaferMapPlot p = getPlot();
  if (p != null) {
    result = p.getDrawingSupplier();
  }
  return result;
}


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

/**
 * Returns the drawing supplier from the plot.
 *
 * @return The drawing supplier (possibly <code>null</code>).
 */
public DrawingSupplier getDrawingSupplier() {
  DrawingSupplier result = null;
  XYPlot p = getPlot();
  if (p != null) {
    result = p.getDrawingSupplier();
  }
  return result;
}


Clone AbstractionParameter Count: 1Parameter Bindings

/** 
     * Returns the drawing supplier from the plot.
     *
     * @return The drawing supplier.
     */
/**
     * Returns the drawing supplier from the plot.
     * 
     * @return The drawing supplier.
     */
/**
     * Returns the drawing supplier from the plot.
     *
     * @return The drawing supplier (possibly <code>null</code>).
     */
public DrawingSupplier getDrawingSupplier() {
  DrawingSupplier result = null;
   [[#variable18d86900]] p = getPlot();
  if (p != null) {
    result = p.getDrawingSupplier();
  }
  return result;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18d86900]]
PolarPlot 
12[[#18d86900]]
WaferMapPlot 
13[[#18d86900]]
XYPlot