| Previous CloneSet | Next CloneSet | Back to Main Report |
| Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
|---|---|---|---|---|
| 13 | 3 | 1 | 0.997 | statement_sequence[4] |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 13 | 594 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeBinding.java |
| 2 | 13 | 747 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeBinding.java |
| 3 | 13 | 762 | plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeBinding.java |
| ||||
ITypeBinding[] typeArguments = getTypeArguments();
final int typeArgumentsLength = typeArguments.length;
if (typeArgumentsLength != 0) {
buffer.append('<');
for (int i = 0, max = typeArguments.length; i < max; i++) {
if (i > 0) {
buffer.append(',');
}
buffer.append(typeArguments[i].getName());
}
buffer.append('>');
}
return String.valueOf(buffer);
|
| ||||
ITypeBinding[] typeArguments = getTypeArguments();
final int typeArgumentsLength = typeArguments.length;
if (typeArgumentsLength != 0) {
buffer.append('<');
for (int i = 0, max = typeArguments.length; i < max; i++) {
if (i > 0) {
buffer.append(',');
}
buffer.append(typeArguments[i].getQualifiedName());
}
buffer.append('>');
}
return String.valueOf(buffer);
|
| ||||
ITypeBinding[] typeArguments = getTypeArguments();
final int typeArgumentsLength = typeArguments.length;
if (typeArgumentsLength != 0) {
buffer.append('<');
for (int i = 0, max = typeArguments.length; i < max; i++) {
if (i > 0) {
buffer.append(',');
}
buffer.append(typeArguments[i].getQualifiedName());
}
buffer.append('>');
}
return String.valueOf(buffer);
|
| |||
ITypeBinding[] typeArguments = getTypeArguments();
final int typeArgumentsLength = typeArguments.length;
if (typeArgumentsLength != 0) {
buffer.append('<');
for (int i = 0, max = typeArguments.length; i < max; i++) {
if (i > 0) {
buffer.append(',');
}
buffer.append(typeArguments[i]. [[#variable569a3620]]());
}
buffer.append('>');
}
return String.valueOf(buffer);
|
| CloneAbstraction |
| Parameter Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| 1 | 1 | [[#569a3620]] | getName |
| 1 | 2 | [[#569a3620]] | getQualifiedName |
| 1 | 3 | [[#569a3620]] | getQualifiedName |