CloneSet9286


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
2230.961class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
12175
plugins/org.eclipse.jdt.core/search/org/eclipse/jdt/core/search/SearchMatch.java
22200
plugins/org.eclipse.jdt.core/search/org/eclipse/jdt/core/search/SearchMatch.java
Clone Instance
1
Line Count
2
Source Line
175
Source File
plugins/org.eclipse.jdt.core/search/org/eclipse/jdt/core/search/SearchMatch.java

        /**
         * Returns whether match element is compatible with searched pattern or not.
         * Note that equivalent matches are also erasure ones.
         * 
         * @return <code>true</code> if match element is compatible 
         *                              <code>false</code> otherwise
         * @since 3.1
         */
        public final boolean isEquivalent() {
                return isErasure() && (this.rule&  SearchPattern.R_EQUIVALENT_MATCH) != 0;
        }


Clone Instance
2
Line Count
2
Source Line
200
Source File
plugins/org.eclipse.jdt.core/search/org/eclipse/jdt/core/search/SearchMatch.java

        /**
         * Returns whether element matches exactly searched pattern or not.
         * Note that exact matches are also erasure and equivalent ones.
         * 
         * @return <code>true</code> if match is exact
         *                              <code>false</code> otherwise
         * @since 3.1
         */
        public final boolean isExact() {
                return isEquivalent() && (this.rule&  SearchPattern.R_FULL_MATCH) != 0;
        }


Clone AbstractionParameter Count: 3Parameter Bindings

/**
         * Returns whether match element is compatible with searched pattern or not.
         * Note that equivalent matches are also erasure ones.
         * 
         * @return <code>true</code> if match element is compatible 
         *                              <code>false</code> otherwise
         * @since 3.1
         */
/**
         * Returns whether element matches exactly searched pattern or not.
         * Note that exact matches are also erasure and equivalent ones.
         * 
         * @return <code>true</code> if match is exact
         *                              <code>false</code> otherwise
         * @since 3.1
         */
public final boolean  [[#variableb44e51e0]]() {
  return [[#variableb44e5140]]() && (this.rule&SearchPattern. [[#variableb44e50c0]]) != 0;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#b44e51e0]]
isEquivalent 
12[[#b44e51e0]]
isExact 
21[[#b44e5140]]
isErasure 
22[[#b44e5140]]
isEquivalent 
31[[#b44e50c0]]
R_EQUIVALENT_MATCH 
32[[#b44e50c0]]
R_FULL_MATCH