Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
2 | 2 | 1 | 0.982 | method_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 2 | 126 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/StandardCategoryItemLabelGenerator.java |
2 | 3 | 108 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/chart/labels/StandardCategoryToolTipGenerator.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); } |
| |||||
/** * 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); } |
| |||
/** * 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 Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18fae740]] | generateLabel |
1 | 2 | [[#18fae740]] | generateToolTip |