CloneSet84


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
52240.970statement_sequence_member
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1587
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java
2594
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java
35181
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java
45188
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java
55195
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java
65202
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java
75464
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
85471
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
95478
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
105485
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
115519
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
125526
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
135533
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
145571
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
155587
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
165594
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
175648
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
185669
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
195676
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
205683
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
215704
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
225725
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java
Clone Instance
1
Line Count
5
Source Line
87
Source File
plugins/org.eclipse.jdt.core/codeassist/org/eclipse/jdt/internal/codeassist/impl/AssistOptions.java

                if ((optionValue = optionsMap.get(OPTION_PerformVisibilityCheck)) != null) {
                        if (ENABLED.equals(optionValue)) {
                                this.checkVisibility = true;
                        }
                        else   if (DISABLED.equals(optionValue)) {
                                this.checkVisibility = false;
                               }
                }


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

                if ((optionValue = optionsMap.get(OPTION_ForceImplicitQualification)) != null) {
                        if (ENABLED.equals(optionValue)) {
                                this.forceImplicitQualification = true;
                        }
                        else   if (DISABLED.equals(optionValue)) {
                                this.forceImplicitQualification = false;
                               }
                }


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

                if ((optionValue = optionsMap.get(OPTION_PerformForbiddenReferenceCheck)) != null) {
                        if (ENABLED.equals(optionValue)) {
                                this.checkForbiddenReference = true;
                        }
                        else   if (DISABLED.equals(optionValue)) {
                                this.checkForbiddenReference = false;
                               }
                }


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

                if ((optionValue = optionsMap.get(OPTION_PerformDiscouragedReferenceCheck)) != null) {
                        if (ENABLED.equals(optionValue)) {
                                this.checkDiscouragedReference = true;
                        }
                        else   if (DISABLED.equals(optionValue)) {
                                this.checkDiscouragedReference = false;
                               }
                }


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

                if ((optionValue = optionsMap.get(OPTION_CamelCaseMatch)) != null) {
                        if (ENABLED.equals(optionValue)) {
                                this.camelCaseMatch = true;
                        }
                        else   if (DISABLED.equals(optionValue)) {
                                this.camelCaseMatch = false;
                               }
                }


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

                if ((optionValue = optionsMap.get(OPTION_PerformDeprecationCheck)) != null) {
                        if (ENABLED.equals(optionValue)) {
                                this.checkDeprecation = true;
                        }
                        else   if (DISABLED.equals(optionValue)) {
                                this.checkDeprecation = false;
                               }
                }


Clone Instance
7
Line Count
5
Source Line
464
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java

                if ((optionValue = optionsMap.get(OPTION_PreserveUnusedLocal)) != null) {
                        if (PRESERVE.equals(optionValue)) {
                                this.preserveAllLocalVariables = true;
                        }
                        else   if (OPTIMIZE_OUT.equals(optionValue)) {
                                this.preserveAllLocalVariables = false;
                               }
                }


Clone Instance
8
Line Count
5
Source Line
471
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java

                if ((optionValue = optionsMap.get(OPTION_ReportDeprecationInDeprecatedCode)) != null) {
                        if (ENABLED.equals(optionValue)) {
                                this.reportDeprecationInsideDeprecatedCode = true;
                        }
                        else   if (DISABLED.equals(optionValue)) {
                                this.reportDeprecationInsideDeprecatedCode = false;
                               }
                }


Clone Instance
9
Line Count
5
Source Line
478
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java

                if ((optionValue = optionsMap.get(OPTION_ReportDeprecationWhenOverridingDeprecatedMethod)) != null) {
                        if (ENABLED.equals(optionValue)) {
                                this.reportDeprecationWhenOverridingDeprecatedMethod = true;
                        }
                        else   if (DISABLED.equals(optionValue)) {
                                this.reportDeprecationWhenOverridingDeprecatedMethod = false;
                               }
                }


Clone Instance
10
Line Count
5
Source Line
485
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java

                if ((optionValue = optionsMap.get(OPTION_ReportUnusedDeclaredThrownExceptionWhenOverriding)) != null) {
                        if (ENABLED.equals(optionValue)) {
                                this.reportUnusedDeclaredThrownExceptionWhenOverriding = true;
                        }
                        else   if (DISABLED.equals(optionValue)) {
                                this.reportUnusedDeclaredThrownExceptionWhenOverriding = false;
                               }
                }


Clone Instance
11
Line Count
5
Source Line
519
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java

                if ((optionValue = optionsMap.get(OPTION_ReportUnusedParameterWhenImplementingAbstract)) != null) {
                        if (ENABLED.equals(optionValue)) {
                                this.reportUnusedParameterWhenImplementingAbstract = true;
                        }
                        else   if (DISABLED.equals(optionValue)) {
                                this.reportUnusedParameterWhenImplementingAbstract = false;
                               }
                }


Clone Instance
12
Line Count
5
Source Line
526
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java

                if ((optionValue = optionsMap.get(OPTION_ReportUnusedParameterWhenOverridingConcrete)) != null) {
                        if (ENABLED.equals(optionValue)) {
                                this.reportUnusedParameterWhenOverridingConcrete = true;
                        }
                        else   if (DISABLED.equals(optionValue)) {
                                this.reportUnusedParameterWhenOverridingConcrete = false;
                               }
                }


Clone Instance
13
Line Count
5
Source Line
533
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java

                if ((optionValue = optionsMap.get(OPTION_ReportSpecialParameterHidingField)) != null) {
                        if (ENABLED.equals(optionValue)) {
                                this.reportSpecialParameterHidingField = true;
                        }
                        else   if (DISABLED.equals(optionValue)) {
                                this.reportSpecialParameterHidingField = false;
                               }
                }


Clone Instance
14
Line Count
5
Source Line
571
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java

                if ((optionValue = optionsMap.get(OPTION_TaskCaseSensitive)) != null) {
                        if (ENABLED.equals(optionValue)) {
                                this.isTaskCaseSensitive = true;
                        }
                        else   if (DISABLED.equals(optionValue)) {
                                this.isTaskCaseSensitive = false;
                               }
                }


Clone Instance
15
Line Count
5
Source Line
587
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java

                if ((optionValue = optionsMap.get(OPTION_SuppressWarnings)) != null) {
                        if (ENABLED.equals(optionValue)) {
                                this.suppressWarnings = true;
                        }
                        else   if (DISABLED.equals(optionValue)) {
                                this.suppressWarnings = false;
                               }
                }


Clone Instance
16
Line Count
5
Source Line
594
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java

                if ((optionValue = optionsMap.get(OPTION_FatalOptionalError)) != null) {
                        if (ENABLED.equals(optionValue)) {
                                this.treatOptionalErrorAsFatal = true;
                        }
                        else   if (DISABLED.equals(optionValue)) {
                                this.treatOptionalErrorAsFatal = false;
                               }
                }


Clone Instance
17
Line Count
5
Source Line
648
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java

                // Javadoc options
                if ((optionValue = optionsMap.get(OPTION_DocCommentSupport)) != null) {
                        if (ENABLED.equals(optionValue)) {
                                this.docCommentSupport = true;
                        }
                        else   if (DISABLED.equals(optionValue)) {
                                this.docCommentSupport = false;
                               }
                }


Clone Instance
18
Line Count
5
Source Line
669
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java

                if ((optionValue = optionsMap.get(OPTION_ReportInvalidJavadocTags)) != null) {
                        if (ENABLED.equals(optionValue)) {
                                this.reportInvalidJavadocTags = true;
                        }
                        else   if (DISABLED.equals(optionValue)) {
                                this.reportInvalidJavadocTags = false;
                               }
                }


Clone Instance
19
Line Count
5
Source Line
676
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java

                if ((optionValue = optionsMap.get(OPTION_ReportInvalidJavadocTagsDeprecatedRef)) != null) {
                        if (ENABLED.equals(optionValue)) {
                                this.reportInvalidJavadocTagsDeprecatedRef = true;
                        }
                        else   if (DISABLED.equals(optionValue)) {
                                this.reportInvalidJavadocTagsDeprecatedRef = false;
                               }
                }


Clone Instance
20
Line Count
5
Source Line
683
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java

                if ((optionValue = optionsMap.get(OPTION_ReportInvalidJavadocTagsNotVisibleRef)) != null) {
                        if (ENABLED.equals(optionValue)) {
                                this.reportInvalidJavadocTagsNotVisibleRef = true;
                        }
                        else   if (DISABLED.equals(optionValue)) {
                                this.reportInvalidJavadocTagsNotVisibleRef = false;
                               }
                }


Clone Instance
21
Line Count
5
Source Line
704
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java

                if ((optionValue = optionsMap.get(OPTION_ReportMissingJavadocTagsOverriding)) != null) {
                        if (ENABLED.equals(optionValue)) {
                                this.reportMissingJavadocTagsOverriding = true;
                        }
                        else   if (DISABLED.equals(optionValue)) {
                                this.reportMissingJavadocTagsOverriding = false;
                               }
                }


Clone Instance
22
Line Count
5
Source Line
725
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/impl/CompilerOptions.java

                if ((optionValue = optionsMap.get(OPTION_ReportMissingJavadocCommentsOverriding)) != null) {
                        if (ENABLED.equals(optionValue)) {
                                this.reportMissingJavadocCommentsOverriding = true;
                        }
                        else   if (DISABLED.equals(optionValue)) {
                                this.reportMissingJavadocCommentsOverriding = false;
                               }
                }


Clone AbstractionParameter Count: 4Parameter Bindings

// Javadoc options
if ((optionValue = optionsMap.get( [[#variablebb5158a0]])) != null) {
  if ( [[#variablebb515820]].equals(optionValue)) {
    this. [[#variablebb515780]]= true;
  }
  else
    if ( [[#variablebb515700]].equals(optionValue)) {
      this. [[#variablebb515780]]= false;
    }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#bb5158a0]]
OPTION_PerformDeprecationCheck 
12[[#bb5158a0]]
OPTION_CamelCaseMatch 
13[[#bb5158a0]]
OPTION_PerformDiscouragedReferenceCheck 
14[[#bb5158a0]]
OPTION_PerformForbiddenReferenceCheck 
15[[#bb5158a0]]
OPTION_ForceImplicitQualification 
16[[#bb5158a0]]
OPTION_PerformVisibilityCheck 
17[[#bb5158a0]]
OPTION_ReportMissingJavadocCommentsOverriding 
18[[#bb5158a0]]
OPTION_ReportMissingJavadocTagsOverriding 
19[[#bb5158a0]]
OPTION_ReportInvalidJavadocTagsNotVisibleRef 
110[[#bb5158a0]]
OPTION_ReportInvalidJavadocTagsDeprecatedRef 
111[[#bb5158a0]]
OPTION_ReportInvalidJavadocTags 
112[[#bb5158a0]]
OPTION_DocCommentSupport 
113[[#bb5158a0]]
OPTION_FatalOptionalError 
114[[#bb5158a0]]
OPTION_SuppressWarnings 
115[[#bb5158a0]]
OPTION_TaskCaseSensitive 
116[[#bb5158a0]]
OPTION_ReportSpecialParameterHidingField 
117[[#bb5158a0]]
OPTION_ReportUnusedParameterWhenOverridingConcrete 
118[[#bb5158a0]]
OPTION_ReportUnusedParameterWhenImplementingAbstract 
119[[#bb5158a0]]
OPTION_ReportUnusedDeclaredThrownExceptionWhenOverriding 
120[[#bb5158a0]]
OPTION_ReportDeprecationWhenOverridingDeprecatedMethod 
121[[#bb5158a0]]
OPTION_ReportDeprecationInDeprecatedCode 
122[[#bb5158a0]]
OPTION_PreserveUnusedLocal 
21[[#bb515820]]
ENABLED 
22[[#bb515820]]
ENABLED 
23[[#bb515820]]
ENABLED 
24[[#bb515820]]
ENABLED 
25[[#bb515820]]
ENABLED 
26[[#bb515820]]
ENABLED 
27[[#bb515820]]
ENABLED 
28[[#bb515820]]
ENABLED 
29[[#bb515820]]
ENABLED 
210[[#bb515820]]
ENABLED 
211[[#bb515820]]
ENABLED 
212[[#bb515820]]
ENABLED 
213[[#bb515820]]
ENABLED 
214[[#bb515820]]
ENABLED 
215[[#bb515820]]
ENABLED 
216[[#bb515820]]
ENABLED 
217[[#bb515820]]
ENABLED 
218[[#bb515820]]
ENABLED 
219[[#bb515820]]
ENABLED 
220[[#bb515820]]
ENABLED 
221[[#bb515820]]
ENABLED 
222[[#bb515820]]
PRESERVE 
31[[#bb515780]]
checkDeprecation 
32[[#bb515780]]
camelCaseMatch 
33[[#bb515780]]
checkDiscouragedReference 
34[[#bb515780]]
checkForbiddenReference 
35[[#bb515780]]
forceImplicitQualification 
36[[#bb515780]]
checkVisibility 
37[[#bb515780]]
reportMissingJavadocCommentsOverriding 
38[[#bb515780]]
reportMissingJavadocTagsOverriding 
39[[#bb515780]]
reportInvalidJavadocTagsNotVisibleRef 
310[[#bb515780]]
reportInvalidJavadocTagsDeprecatedRef 
311[[#bb515780]]
reportInvalidJavadocTags 
312[[#bb515780]]
docCommentSupport 
313[[#bb515780]]
treatOptionalErrorAsFatal 
314[[#bb515780]]
suppressWarnings 
315[[#bb515780]]
isTaskCaseSensitive 
316[[#bb515780]]
reportSpecialParameterHidingField 
317[[#bb515780]]
reportUnusedParameterWhenOverridingConcrete 
318[[#bb515780]]
reportUnusedParameterWhenImplementingAbstract 
319[[#bb515780]]
reportUnusedDeclaredThrownExceptionWhenOverriding 
320[[#bb515780]]
reportDeprecationWhenOverridingDeprecatedMethod 
321[[#bb515780]]
reportDeprecationInsideDeprecatedCode 
322[[#bb515780]]
preserveAllLocalVariables 
41[[#bb515700]]
DISABLED 
42[[#bb515700]]
DISABLED 
43[[#bb515700]]
DISABLED 
44[[#bb515700]]
DISABLED 
45[[#bb515700]]
DISABLED 
46[[#bb515700]]
DISABLED 
47[[#bb515700]]
DISABLED 
48[[#bb515700]]
DISABLED 
49[[#bb515700]]
DISABLED 
410[[#bb515700]]
DISABLED 
411[[#bb515700]]
DISABLED 
412[[#bb515700]]
DISABLED 
413[[#bb515700]]
DISABLED 
414[[#bb515700]]
DISABLED 
415[[#bb515700]]
DISABLED 
416[[#bb515700]]
DISABLED 
417[[#bb515700]]
DISABLED 
418[[#bb515700]]
DISABLED 
419[[#bb515700]]
DISABLED 
420[[#bb515700]]
DISABLED 
421[[#bb515700]]
DISABLED 
422[[#bb515700]]
OPTIMIZE_OUT