| Previous CloneSet | Next CloneSet | Back to Main Report |
| Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
|---|---|---|---|---|
| 7 | 8 | 2 | 0.986 | statement_sequence_member |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 7 | 101 | plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java |
| 2 | 7 | 111 | plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java |
| 3 | 7 | 121 | plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java |
| 4 | 7 | 131 | plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java |
| 5 | 7 | 141 | plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java |
| 6 | 7 | 151 | plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java |
| 7 | 7 | 161 | plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java |
| 8 | 7 | 171 | plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java |
| ||||
if ((optionValue = optionsMap.get(OPTION_FieldPrefixes)) != null) {
if (optionValue instanceof String) {
String stringValue = (String) optionValue;
if (stringValue.length() > 0) {
this.fieldPrefixes = this.splitAndTrimOn(',', stringValue.toCharArray());
}
else {
this.fieldPrefixes = null;
}
}
}
|
| ||||
if ((optionValue = optionsMap.get(OPTION_StaticFieldPrefixes)) != null) {
if (optionValue instanceof String) {
String stringValue = (String) optionValue;
if (stringValue.length() > 0) {
this.staticFieldPrefixes = this.splitAndTrimOn(',', stringValue.toCharArray());
}
else {
this.staticFieldPrefixes = null;
}
}
}
|
| ||||
if ((optionValue = optionsMap.get(OPTION_LocalPrefixes)) != null) {
if (optionValue instanceof String) {
String stringValue = (String) optionValue;
if (stringValue.length() > 0) {
this.localPrefixes = this.splitAndTrimOn(',', stringValue.toCharArray());
}
else {
this.localPrefixes = null;
}
}
}
|
| ||||
if ((optionValue = optionsMap.get(OPTION_ArgumentPrefixes)) != null) {
if (optionValue instanceof String) {
String stringValue = (String) optionValue;
if (stringValue.length() > 0) {
this.argumentPrefixes = this.splitAndTrimOn(',', stringValue.toCharArray());
}
else {
this.argumentPrefixes = null;
}
}
}
|
| ||||
if ((optionValue = optionsMap.get(OPTION_FieldSuffixes)) != null) {
if (optionValue instanceof String) {
String stringValue = (String) optionValue;
if (stringValue.length() > 0) {
this.fieldSuffixes = this.splitAndTrimOn(',', stringValue.toCharArray());
}
else {
this.fieldSuffixes = null;
}
}
}
|
| ||||
if ((optionValue = optionsMap.get(OPTION_StaticFieldSuffixes)) != null) {
if (optionValue instanceof String) {
String stringValue = (String) optionValue;
if (stringValue.length() > 0) {
this.staticFieldSuffixes = this.splitAndTrimOn(',', stringValue.toCharArray());
}
else {
this.staticFieldSuffixes = null;
}
}
}
|
| ||||
if ((optionValue = optionsMap.get(OPTION_LocalSuffixes)) != null) {
if (optionValue instanceof String) {
String stringValue = (String) optionValue;
if (stringValue.length() > 0) {
this.localSuffixes = this.splitAndTrimOn(',', stringValue.toCharArray());
}
else {
this.localSuffixes = null;
}
}
}
|
| ||||
if ((optionValue = optionsMap.get(OPTION_ArgumentSuffixes)) != null) {
if (optionValue instanceof String) {
String stringValue = (String) optionValue;
if (stringValue.length() > 0) {
this.argumentSuffixes = this.splitAndTrimOn(',', stringValue.toCharArray());
}
else {
this.argumentSuffixes = null;
}
}
}
|
| |||
if ((optionValue = optionsMap.get( [[#variableb82919a0]])) != null) {
if (optionValue instanceof String) {
String stringValue = (String) optionValue;
if (stringValue.length() > 0) {
this. [[#variableb8291a20]]= this.splitAndTrimOn(',', stringValue.toCharArray());
}
else {
this. [[#variableb8291a20]]= null;
}
}
}
|
| CloneAbstraction |
| Parameter Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| 1 | 1 | [[#b82919a0]] | OPTION_ArgumentSuffixes |
| 1 | 2 | [[#b82919a0]] | OPTION_LocalSuffixes |
| 1 | 3 | [[#b82919a0]] | OPTION_StaticFieldSuffixes |
| 1 | 4 | [[#b82919a0]] | OPTION_FieldSuffixes |
| 1 | 5 | [[#b82919a0]] | OPTION_ArgumentPrefixes |
| 1 | 6 | [[#b82919a0]] | OPTION_LocalPrefixes |
| 1 | 7 | [[#b82919a0]] | OPTION_StaticFieldPrefixes |
| 1 | 8 | [[#b82919a0]] | OPTION_FieldPrefixes |
| 2 | 1 | [[#b8291a20]] | argumentSuffixes |
| 2 | 2 | [[#b8291a20]] | localSuffixes |
| 2 | 3 | [[#b8291a20]] | staticFieldSuffixes |
| 2 | 4 | [[#b8291a20]] | fieldSuffixes |
| 2 | 5 | [[#b8291a20]] | argumentPrefixes |
| 2 | 6 | [[#b8291a20]] | localPrefixes |
| 2 | 7 | [[#b8291a20]] | staticFieldPrefixes |
| 2 | 8 | [[#b8291a20]] | fieldPrefixes |