CloneSet361


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
64201.000class_body_declarations[5]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
164230
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java
264465
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultStatisticalCategoryDataset.java
Next
Last
Clone Instance
1
Line Count
64
Source Line
230
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java

/**
 * Removes a row from the dataset and sends a {@link DatasetChangeEvent}
 * to all registered listeners.
 *
 * @param rowIndex  the row index.
 * 
 * @see #removeColumn(int)
 * 
 * @since 1.0.7
 */
public void removeRow(int rowIndex) {
  this.data.removeRow(rowIndex);
  updateBounds();
  fireDatasetChanged();
}

/**
 * Removes a row from the dataset and sends a {@link DatasetChangeEvent}
 * to all registered listeners.
 *
 * @param rowKey  the row key.
 * 
 * @see #removeColumn(Comparable)
 * 
 * @since 1.0.7
 */
public void removeRow(Comparable rowKey) {
  this.data.removeRow(rowKey);
  updateBounds();
  fireDatasetChanged();
}

/**
 * Removes a column from the dataset and sends a {@link DatasetChangeEvent}
 * to all registered listeners.
 *
 * @param columnIndex  the column index.
 * 
 * @see #removeRow(int)
 * 
 * @since 1.0.7
 */
public void removeColumn(int columnIndex) {
  this.data.removeColumn(columnIndex);
  updateBounds();
  fireDatasetChanged();
}

/**
 * Removes a column from the dataset and sends a {@link DatasetChangeEvent}
 * to all registered listeners.
 *
 * @param columnKey  the column key.
 * 
 * @see #removeRow(Comparable)
 * 
 * @since 1.0.7
 */
public void removeColumn(Comparable columnKey) {
  this.data.removeColumn(columnKey);
  updateBounds();
  fireDatasetChanged();
}

/**
 * Clears all data from the dataset and sends a {@link DatasetChangeEvent} 
 * to all registered listeners.
 * 
 * @since 1.0.7
 */
public void clear() {
  this.data.clear();
  updateBounds();
  fireDatasetChanged();
}


First
Previous
Clone Instance
2
Line Count
64
Source Line
465
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultStatisticalCategoryDataset.java

/**
 * Removes a row from the dataset and sends a {@link DatasetChangeEvent}
 * to all registered listeners.
 *
 * @param rowIndex  the row index.
 * 
 * @see #removeColumn(int)
 * 
 * @since 1.0.7
 */
public void removeRow(int rowIndex) {
  this.data.removeRow(rowIndex);
  updateBounds();
  fireDatasetChanged();
}

/**
 * Removes a row from the dataset and sends a {@link DatasetChangeEvent}
 * to all registered listeners.
 *
 * @param rowKey  the row key (<code>null</code> not permitted).
 * 
 * @see #removeColumn(Comparable)
 * 
 * @since 1.0.7
 */
public void removeRow(Comparable rowKey) {
  this.data.removeRow(rowKey);
  updateBounds();
  fireDatasetChanged();
}

/**
 * Removes a column from the dataset and sends a {@link DatasetChangeEvent}
 * to all registered listeners.
 *
 * @param columnIndex  the column index.
 * 
 * @see #removeRow(int)
 * 
 * @since 1.0.7
 */
public void removeColumn(int columnIndex) {
  this.data.removeColumn(columnIndex);
  updateBounds();
  fireDatasetChanged();
}

/**
 * Removes a column from the dataset and sends a {@link DatasetChangeEvent}
 * to all registered listeners.
 *
 * @param columnKey  the column key (<code>null</code> not permitted).
 * 
 * @see #removeRow(Comparable)
 * 
 * @since 1.0.7
 */
public void removeColumn(Comparable columnKey) {
  this.data.removeColumn(columnKey);
  updateBounds();
  fireDatasetChanged();
}

/**
 * Clears all data from the dataset and sends a {@link DatasetChangeEvent} 
 * to all registered listeners.
 * 
 * @since 1.0.7
 */
public void clear() {
  this.data.clear();
  updateBounds();
  fireDatasetChanged();
}


Clone AbstractionParameter Count: 0Parameter Bindings

/**
     * Removes a row from the dataset and sends a {@link DatasetChangeEvent}
     * to all registered listeners.
     *
     * @param rowIndex  the row index.
     * 
     * @see #removeColumn(int)
     * 
     * @since 1.0.7
     */
public void removeRow(int rowIndex) {
  this.data.removeRow(rowIndex);
  updateBounds();
  fireDatasetChanged();
}

/**
     * Removes a row from the dataset and sends a {@link DatasetChangeEvent}
     * to all registered listeners.
     *
     * @param rowKey  the row key.
     * 
     * @see #removeColumn(Comparable)
     * 
     * @since 1.0.7
     */
/**
     * Removes a row from the dataset and sends a {@link DatasetChangeEvent}
     * to all registered listeners.
     *
     * @param rowKey  the row key (<code>null</code> not permitted).
     * 
     * @see #removeColumn(Comparable)
     * 
     * @since 1.0.7
     */
public void removeRow(Comparable rowKey) {
  this.data.removeRow(rowKey);
  updateBounds();
  fireDatasetChanged();
}

/**
     * Removes a column from the dataset and sends a {@link DatasetChangeEvent}
     * to all registered listeners.
     *
     * @param columnIndex  the column index.
     * 
     * @see #removeRow(int)
     * 
     * @since 1.0.7
     */
public void removeColumn(int columnIndex) {
  this.data.removeColumn(columnIndex);
  updateBounds();
  fireDatasetChanged();
}

/**
     * Removes a column from the dataset and sends a {@link DatasetChangeEvent}
     * to all registered listeners.
     *
     * @param columnKey  the column key.
     * 
     * @see #removeRow(Comparable)
     * 
     * @since 1.0.7
     */
/**
     * Removes a column from the dataset and sends a {@link DatasetChangeEvent}
     * to all registered listeners.
     *
     * @param columnKey  the column key (<code>null</code> not permitted).
     * 
     * @see #removeRow(Comparable)
     * 
     * @since 1.0.7
     */
public void removeColumn(Comparable columnKey) {
  this.data.removeColumn(columnKey);
  updateBounds();
  fireDatasetChanged();
}

/**
     * Clears all data from the dataset and sends a {@link DatasetChangeEvent} 
     * to all registered listeners.
     * 
     * @since 1.0.7
     */
public void clear() {
  this.data.clear();
  updateBounds();
  fireDatasetChanged();
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None