| Previous CloneSet | Next CloneSet | Back to Main Report |
| Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
|---|---|---|---|---|
| 8 | 2 | 1 | 0.976 | class_body_declarations[2] |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 8 | 23 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/BufferCache.java |
| 2 | 8 | 27 | plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/ElementCache.java |
| ||||
/**
* Constructs a new buffer cache of the given size.
*/
public BufferCache(int size) {
super(size);
}
/**
* Constructs a new buffer cache of the given size.
*/
public BufferCache(int size, int overflow) {
super(size, overflow);
}
|
| ||||
/**
* Constructs a new element cache of the given size.
*/
public ElementCache(int size) {
super(size);
}
/**
* Constructs a new element cache of the given size.
*/
public ElementCache(int size, int overflow) {
super(size, overflow);
}
|
| |||
/**
* Constructs a new buffer cache of the given size.
*/
/**
* Constructs a new element cache of the given size.
*/
public [[#variableb442dde0]](int size) {
super(size);
}
/**
* Constructs a new buffer cache of the given size.
*/
/**
* Constructs a new element cache of the given size.
*/
public [[#variableb442dde0]](int size, int overflow) {
super(size, overflow);
}
|
| CloneAbstraction |
| Parameter Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| 1 | 1 | [[#b442dde0]] | BufferCache |
| 1 | 2 | [[#b442dde0]] | ElementCache |