CloneSet2305


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
2210.969method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
12622
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/AbstractCategoryItemRenderer.java
22209
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/CategoryStepRenderer.java
Next
Last
Clone Instance
1
Line Count
2
Source Line
622
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/AbstractCategoryItemRenderer.java

/**
 * Creates a new state instance---this method is called from the
 * {@link #initialise(Graphics2D, Rectangle2D, CategoryPlot, int,
 * PlotRenderingInfo)} method.  Subclasses can override this method if
 * they need to use a subclass of {@link CategoryItemRendererState}.
 *
 * @param info  collects plot rendering info (<code>null</code> permitted).
 *
 * @return The new state instance (never <code>null</code>).
 *
 * @since 1.0.5
 */
protected CategoryItemRendererState createState(PlotRenderingInfo info) {
  return new CategoryItemRendererState(info);
}


First
Previous
Clone Instance
2
Line Count
2
Source Line
209
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/renderer/category/CategoryStepRenderer.java

/**
 * Creates a new state instance.  This method is called from
 * {@link #initialise(Graphics2D, Rectangle2D, CategoryPlot, int,
 * PlotRenderingInfo)}, and we override it to ensure that the state
 * contains a working Line2D instance.
 *
 * @param info  the plot rendering info (<code>null</code> is permitted).
 *
 * @return A new state instance.
 */
protected CategoryItemRendererState createState(PlotRenderingInfo info) {
  return new State(info);
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Creates a new state instance---this method is called from the
     * {@link #initialise(Graphics2D, Rectangle2D, CategoryPlot, int,
     * PlotRenderingInfo)} method.  Subclasses can override this method if
     * they need to use a subclass of {@link CategoryItemRendererState}.
     *
     * @param info  collects plot rendering info (<code>null</code> permitted).
     *
     * @return The new state instance (never <code>null</code>).
     *
     * @since 1.0.5
     */
/**
     * Creates a new state instance.  This method is called from
     * {@link #initialise(Graphics2D, Rectangle2D, CategoryPlot, int,
     * PlotRenderingInfo)}, and we override it to ensure that the state
     * contains a working Line2D instance.
     *
     * @param info  the plot rendering info (<code>null</code> is permitted).
     *
     * @return A new state instance.
     */
protected CategoryItemRendererState createState(PlotRenderingInfo info) {
  return new [[#variable1a163860]](info);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a163860]]
CategoryItemRendererState 
12[[#1a163860]]
State