CloneSet1503


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
2210.982method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
12126
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/StandardCategoryItemLabelGenerator.java
23108
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/StandardCategoryToolTipGenerator.java
Next
Last
Clone Instance
1
Line Count
2
Source Line
126
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/StandardCategoryItemLabelGenerator.java

/**
 * Generates the label for an item in a dataset.  Note: in the current 
 * dataset implementation, each row is a series, and each column contains 
 * values for a particular category.
 *
 * @param dataset  the dataset (<code>null</code> not permitted).
 * @param row  the row index (zero-based).
 * @param column  the column index (zero-based).
 *
 * @return The label (possibly <code>null</code>).
 */
public String generateLabel(CategoryDataset dataset, int row, int column) {
  return generateLabelString(dataset, row, column);
}


First
Previous
Clone Instance
2
Line Count
3
Source Line
108
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/StandardCategoryToolTipGenerator.java

/**
 * Generates the tool tip text for an item in a dataset.  Note: in the 
 * current dataset implementation, each row is a series, and each column 
 * contains values for a particular category.
 *
 * @param dataset  the dataset (<code>null</code> not permitted).
 * @param row  the row index (zero-based).
 * @param column  the column index (zero-based).
 *
 * @return The tooltip text (possibly <code>null</code>).
 */
public String generateToolTip(CategoryDataset dataset, int row, int column) {
  return generateLabelString(dataset, row, column);
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Generates the label for an item in a dataset.  Note: in the current 
     * dataset implementation, each row is a series, and each column contains 
     * values for a particular category.
     *
     * @param dataset  the dataset (<code>null</code> not permitted).
     * @param row  the row index (zero-based).
     * @param column  the column index (zero-based).
     *
     * @return The label (possibly <code>null</code>).
     */
/**
     * Generates the tool tip text for an item in a dataset.  Note: in the 
     * current dataset implementation, each row is a series, and each column 
     * contains values for a particular category.
     *
     * @param dataset  the dataset (<code>null</code> not permitted).
     * @param row  the row index (zero-based).
     * @param column  the column index (zero-based).
     *
     * @return The tooltip text (possibly <code>null</code>).
     */
public String  [[#variable18fae740]](CategoryDataset dataset, int row, int column) {
  return generateLabelString(dataset, row, column);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18fae740]]
generateLabel 
12[[#18fae740]]
generateToolTip