CloneSet133


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
77301.000class_body_declarations[8]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
186509
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java
271255
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultMultiValueCategoryDataset.java
377249
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultStatisticalCategoryDataset.java
Next
Last
Clone Instance
1
Line Count
86
Source Line
509
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java

/**
 * Returns the column index for a given key.
 *
 * @param key  the column key (<code>null</code> not permitted).
 *
 * @return The column index.
 * 
 * @see #getColumnKey(int)
 */
public int getColumnIndex(Comparable key) {
  return this.data.getColumnIndex(key);
}

/**
 * Returns a column key.
 *
 * @param column  the column index (zero-based).
 *
 * @return The column key.
 * 
 * @see #getColumnIndex(Comparable)
 */
public Comparable getColumnKey(int column) {
  return this.data.getColumnKey(column);
}

/**
 * Returns the column keys.
 *
 * @return The keys.
 * 
 * @see #getRowKeys()
 */
public List getColumnKeys() {
  return this.data.getColumnKeys();
}

/**
 * Returns the row index for a given key.
 *
 * @param key  the row key (<code>null</code> not permitted).
 *
 * @return The row index.
 * 
 * @see #getRowKey(int)
 */
public int getRowIndex(Comparable key) {
  // defer null argument check
  return this.data.getRowIndex(key);
}

/**
 * Returns a row key.
 *
 * @param row  the row index (zero-based).
 *
 * @return The row key.
 * 
 * @see #getRowIndex(Comparable)
 */
public Comparable getRowKey(int row) {
  return this.data.getRowKey(row);
}

/**
 * Returns the row keys.
 *
 * @return The keys.
 * 
 * @see #getColumnKeys()
 */
public List getRowKeys() {
  return this.data.getRowKeys();
}

/**
 * Returns the number of rows in the table.
 *
 * @return The row count.
 * 
 * @see #getColumnCount()
 */
public int getRowCount() {
  return this.data.getRowCount();
}

/**
 * Returns the number of columns in the table.
 *
 * @return The column count.
 * 
 * @see #getRowCount()
 */
public int getColumnCount() {
  return this.data.getColumnCount();
}


Next
Previous
Clone Instance
2
Line Count
71
Source Line
255
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultMultiValueCategoryDataset.java

/**
 * Returns the column index for a given key.
 *
 * @param key  the column key.
 * 
 * @return The column index.
 */
public int getColumnIndex(Comparable key) {
  return this.data.getColumnIndex(key);
}

/**
 * Returns a column key.
 *
 * @param column the column index (zero-based).
 * 
 * @return The column key.
 */
public Comparable getColumnKey(int column) {
  return this.data.getColumnKey(column);
}

/**
 * Returns the column keys.
 *
 * @return The keys.
 */
public List getColumnKeys() {
  return this.data.getColumnKeys();
}

/**
 * Returns the row index for a given key.
 *
 * @param key the row key.
 * 
 * @return The row index.
 */
public int getRowIndex(Comparable key) {
  return this.data.getRowIndex(key);
}

/**
 * Returns a row key.
 *
 * @param row the row index (zero-based).
 * 
 * @return The row key.
 */
public Comparable getRowKey(int row) {
  return this.data.getRowKey(row);
}

/**
 * Returns the row keys.
 *
 * @return The keys.
 */
public List getRowKeys() {
  return this.data.getRowKeys();
}

/**
 * Returns the number of rows in the table.
 *
 * @return The row count.
 */
public int getRowCount() {
  return this.data.getRowCount();
}

/**
 * Returns the number of columns in the table.
 *
 * @return The column count.
 */
public int getColumnCount() {
  return this.data.getColumnCount();
}


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

/**
 * Returns the column index for a given key.
 *
 * @param key  the column key (<code>null</code> not permitted).
 *
 * @return The column index.
 */
public int getColumnIndex(Comparable key) {
  // defer null argument check
  return this.data.getColumnIndex(key);
}

/**
 * Returns a column key.
 *
 * @param column  the column index (zero-based).
 *
 * @return The column key.
 */
public Comparable getColumnKey(int column) {
  return this.data.getColumnKey(column);
}

/**
 * Returns the column keys.
 *
 * @return The keys.
 */
public List getColumnKeys() {
  return this.data.getColumnKeys();
}

/**
 * Returns the row index for a given key.
 *
 * @param key  the row key (<code>null</code> not permitted).
 *
 * @return The row index.
 */
public int getRowIndex(Comparable key) {
  // defer null argument check
  return this.data.getRowIndex(key);
}

/**
 * Returns a row key.
 *
 * @param row  the row index (zero-based).
 *
 * @return The row key.
 */
public Comparable getRowKey(int row) {
  return this.data.getRowKey(row);
}

/**
 * Returns the row keys.
 *
 * @return The keys.
 */
public List getRowKeys() {
  return this.data.getRowKeys();
}

/**
 * Returns the number of rows in the table.
 *
 * @return The row count.
 * 
 * @see #getColumnCount()
 */
public int getRowCount() {
  return this.data.getRowCount();
}

/**
 * Returns the number of columns in the table.
 *
 * @return The column count.
 * 
 * @see #getRowCount()
 */
public int getColumnCount() {
  return this.data.getColumnCount();
}


Clone AbstractionParameter Count: 0Parameter Bindings

/**
     * Returns the column index for a given key.
     *
     * @param key  the column key (<code>null</code> not permitted).
     *
     * @return The column index.
     */
/**
     * Returns the column index for a given key.
     *
     * @param key  the column key (<code>null</code> not permitted).
     *
     * @return The column index.
     * 
     * @see #getColumnKey(int)
     */
/**
     * Returns the column index for a given key.
     *
     * @param key  the column key.
     * 
     * @return The column index.
     */
public int getColumnIndex(Comparable key) {
  // defer null argument check
  return this.data.getColumnIndex(key);
}

/**
     * Returns a column key.
     *
     * @param column  the column index (zero-based).
     *
     * @return The column key.
     */
/**
     * Returns a column key.
     *
     * @param column  the column index (zero-based).
     *
     * @return The column key.
     * 
     * @see #getColumnIndex(Comparable)
     */
/**
     * Returns a column key.
     *
     * @param column the column index (zero-based).
     * 
     * @return The column key.
     */
public Comparable getColumnKey(int column) {
  return this.data.getColumnKey(column);
}

/**
     * Returns the column keys.
     *
     * @return The keys.
     */
/**
     * Returns the column keys.
     *
     * @return The keys.
     * 
     * @see #getRowKeys()
     */
public List getColumnKeys() {
  return this.data.getColumnKeys();
}

/**
     * Returns the row index for a given key.
     *
     * @param key  the row key (<code>null</code> not permitted).
     *
     * @return The row index.
     */
/**
     * Returns the row index for a given key.
     *
     * @param key  the row key (<code>null</code> not permitted).
     *
     * @return The row index.
     * 
     * @see #getRowKey(int)
     */
/**
     * Returns the row index for a given key.
     *
     * @param key the row key.
     * 
     * @return The row index.
     */
public int getRowIndex(Comparable key) {
  // defer null argument check
  return this.data.getRowIndex(key);
}

/**
     * Returns a row key.
     *
     * @param row  the row index (zero-based).
     *
     * @return The row key.
     */
/**
     * Returns a row key.
     *
     * @param row  the row index (zero-based).
     *
     * @return The row key.
     * 
     * @see #getRowIndex(Comparable)
     */
/**
     * Returns a row key.
     *
     * @param row the row index (zero-based).
     * 
     * @return The row key.
     */
public Comparable getRowKey(int row) {
  return this.data.getRowKey(row);
}

/**
     * Returns the row keys.
     *
     * @return The keys.
     */
/**
     * Returns the row keys.
     *
     * @return The keys.
     * 
     * @see #getColumnKeys()
     */
public List getRowKeys() {
  return this.data.getRowKeys();
}

/**
     * Returns the number of rows in the table.
     *
     * @return The row count.
     * 
     * @see #getColumnCount()
     */
/**
     * Returns the number of rows in the table.
     *
     * @return The row count.
     */
public int getRowCount() {
  return this.data.getRowCount();
}

/**
     * Returns the number of columns in the table.
     *
     * @return The column count.
     * 
     * @see #getRowCount()
     */
/**
     * Returns the number of columns in the table.
     *
     * @return The column count.
     */
public int getColumnCount() {
  return this.data.getColumnCount();
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
None