| 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.996 | class_body_declaration |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 8 | 52 | plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/select/SelectionOnQualifiedNameReference.java |
| 2 | 8 | 55 | plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/select/SelectionOnQualifiedTypeReference.java |
| ||||
public StringBuffer printExpression(int indent, StringBuffer output) {
output.append("<SelectOnName:"); //$NON-NLS-1$
for (int i = 0, length = tokens.length; i < length; i++) {
if (i > 0) output.append('.');
output.append(tokens[i]);
}
return output.append('>');
}
|
| ||||
public StringBuffer printExpression(int indent, StringBuffer output) {
output.append("<SelectOnType:"); //$NON-NLS-1$
for (int i = 0, length = tokens.length; i < length; i++) {
if (i > 0) output.append('.');
output.append(tokens[i]);
}
return output.append('>');
}
|
| |||
public StringBuffer printExpression(int indent, StringBuffer output) {
output.append( [[#variable9236e380]]); //$NON-NLS-1$
for (int i = 0, length = tokens.length; i < length; i++) {
if (i > 0)
output.append('.');
output.append(tokens[i]);
}
return output.append('>');
}
|
| CloneAbstraction |
| Parameter Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| 1 | 1 | [[#9236e380]] | "<SelectOnType:" |
| 1 | 2 | [[#9236e380]] | "<SelectOnName:" |