CloneSet3923


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
4320.983class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
14204
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/core/BindingKey.java
24215
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/core/BindingKey.java
34226
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/core/BindingKey.java
Clone Instance
1
Line Count
4
Source Line
204
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/core/BindingKey.java

        /**
         * Returns whether this binding key represents a raw type.
         * 
         * @return whether this binding key represents a raw type
         */
        public boolean isRawType() {
                KeyKind kind = new KeyKind(this.key);
                kind.parse();
                return (kind.flags&  KeyKind.F_RAW_TYPE) != 0;
        }


Clone Instance
2
Line Count
4
Source Line
215
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/core/BindingKey.java

        /**
         * Returns whether this binding key represents a parameterized type, or if its declaring type is a parameterized type.
         * 
         * @return whether this binding key represents a parameterized type
         */
        public boolean isParameterizedType() {
                KeyKind kind = new KeyKind(this.key);
                kind.parse();
                return (kind.flags&  KeyKind.F_PARAMETERIZED_TYPE) != 0;
        }


Clone Instance
3
Line Count
4
Source Line
226
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/core/BindingKey.java

        /**
         * Returns whether this binding key represents a parameterized method, or if its declaring method is a parameterized method.
         * 
         * @return whether this binding key represents a parameterized method
         */
        public boolean isParameterizedMethod() {
                KeyKind kind = new KeyKind(this.key);
                kind.parse();
                return (kind.flags&  KeyKind.F_PARAMETERIZED_METHOD) != 0;
        }


Clone AbstractionParameter Count: 2Parameter Bindings

/**
         * Returns whether this binding key represents a raw type.
         * 
         * @return whether this binding key represents a raw type
         */
/**
         * Returns whether this binding key represents a parameterized type, or if its declaring type is a parameterized type.
         * 
         * @return whether this binding key represents a parameterized type
         */
/**
         * Returns whether this binding key represents a parameterized method, or if its declaring method is a parameterized method.
         * 
         * @return whether this binding key represents a parameterized method
         */
public boolean  [[#variable608cfe80]]() {
  KeyKind kind = new KeyKind(this.key);
  kind.parse();
  return (kind.flags&KeyKind. [[#variable5f09d200]]) != 0;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#608cfe80]]
isRawType 
12[[#608cfe80]]
isParameterizedType 
13[[#608cfe80]]
isParameterizedMethod 
21[[#5f09d200]]
F_RAW_TYPE 
22[[#5f09d200]]
F_PARAMETERIZED_TYPE 
23[[#5f09d200]]
F_PARAMETERIZED_METHOD