CloneSet8960


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
2210.975class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1274
plugins/org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/template/java/SignatureUtil.java
22137
plugins/org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/template/java/SignatureUtil.java
Clone Instance
1
Line Count
2
Source Line
74
Source File
plugins/org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/template/java/SignatureUtil.java

        /**
         * Returns the upper bound of a type signature. Returns the signature of <code>java.lang.Object</code> if
         * <code>signature</code> is a lower bound (<code>? super T</code>); returns
         * the signature of the type <code>T</code> of an upper bound (<code>? extends T</code>)
         * or <code>signature</code> itself if it is not a bound signature.
         * 
         * @param signature the signature
         * @return the upper bound signature of <code>signature</code>
         */
        public static String getUpperBound(String signature) {
                return String.valueOf(getUpperBound(signature.toCharArray()));
        }


Clone Instance
2
Line Count
2
Source Line
137
Source File
plugins/org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/template/java/SignatureUtil.java

        /**
         * Returns the lower bound of a type signature. Returns the null type
         * signature if <code>signature</code> is a wildcard or upper bound (<code>? extends T</code>);
         * returns the signature of the type <code>T</code> of a lower bound (<code>? super T</code>)
         * or <code>signature</code> itself if it is not a bound signature.
         * 
         * @param signature the signature
         * @return the lower bound signature of <code>signature</code>
         */
        public static String getLowerBound(String signature) {
                return String.valueOf(getLowerBound(signature.toCharArray()));
        }


Clone AbstractionParameter Count: 1Parameter Bindings

/**
         * Returns the upper bound of a type signature. Returns the signature of <code>java.lang.Object</code> if
         * <code>signature</code> is a lower bound (<code>? super T</code>); returns
         * the signature of the type <code>T</code> of an upper bound (<code>? extends T</code>)
         * or <code>signature</code> itself if it is not a bound signature.
         * 
         * @param signature the signature
         * @return the upper bound signature of <code>signature</code>
         */
/**
         * Returns the lower bound of a type signature. Returns the null type
         * signature if <code>signature</code> is a wildcard or upper bound (<code>? extends T</code>);
         * returns the signature of the type <code>T</code> of a lower bound (<code>? super T</code>)
         * or <code>signature</code> itself if it is not a bound signature.
         * 
         * @param signature the signature
         * @return the lower bound signature of <code>signature</code>
         */
public static String  [[#variableb48d2ae0]](String signature) {
  return String.valueOf( [[#variableb48d2ae0]](signature.toCharArray()));
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#b48d2ae0]]
getUpperBound 
12[[#b48d2ae0]]
getLowerBound