CloneSet318


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
7820.986statement_sequence_member
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
17101
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java
27111
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java
37121
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java
47131
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java
57141
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java
67151
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java
77161
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java
87171
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java
Clone Instance
1
Line Count
7
Source Line
101
Source File
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;
                                }
                        }
                }


Clone Instance
2
Line Count
7
Source Line
111
Source File
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java

                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;
                                }
                        }
                }


Clone Instance
3
Line Count
7
Source Line
121
Source File
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java

                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;
                                }
                        }
                }


Clone Instance
4
Line Count
7
Source Line
131
Source File
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java

                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;
                                }
                        }
                }


Clone Instance
5
Line Count
7
Source Line
141
Source File
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java

                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;
                                }
                        }
                }


Clone Instance
6
Line Count
7
Source Line
151
Source File
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java

                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;
                                }
                        }
                }


Clone Instance
7
Line Count
7
Source Line
161
Source File
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java

                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;
                                }
                        }
                }


Clone Instance
8
Line Count
7
Source Line
171
Source File
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java

                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;
                                }
                        }
                }


Clone AbstractionParameter Count: 2Parameter Bindings

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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#b82919a0]]
OPTION_ArgumentSuffixes 
12[[#b82919a0]]
OPTION_LocalSuffixes 
13[[#b82919a0]]
OPTION_StaticFieldSuffixes 
14[[#b82919a0]]
OPTION_FieldSuffixes 
15[[#b82919a0]]
OPTION_ArgumentPrefixes 
16[[#b82919a0]]
OPTION_LocalPrefixes 
17[[#b82919a0]]
OPTION_StaticFieldPrefixes 
18[[#b82919a0]]
OPTION_FieldPrefixes 
21[[#b8291a20]]
argumentSuffixes 
22[[#b8291a20]]
localSuffixes 
23[[#b8291a20]]
staticFieldSuffixes 
24[[#b8291a20]]
fieldSuffixes 
25[[#b8291a20]]
argumentPrefixes 
26[[#b8291a20]]
localPrefixes 
27[[#b8291a20]]
staticFieldPrefixes 
28[[#b8291a20]]
fieldPrefixes