CloneSet866


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
13310.997statement_sequence[4]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
113594
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeBinding.java
213747
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeBinding.java
313762
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeBinding.java
Clone Instance
1
Line Count
13
Source Line
594
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeBinding.java

                                ITypeBinding[] typeArguments = getTypeArguments();
                                final int typeArgumentsLength = typeArguments.length;
                                if (typeArgumentsLength != 0) {
                                        buffer.append('<');
                                        for (int i = 0, max = typeArguments.length; i < max; i++) {
                                                if (i > 0) {
                                                        buffer.append(',');
                                                }
                                                buffer.append(typeArguments[i].getName());
                                        }
                                        buffer.append('>');
                                }
                                return String.valueOf(buffer);


Clone Instance
2
Line Count
13
Source Line
747
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeBinding.java

                                        ITypeBinding[] typeArguments = getTypeArguments();
                                        final int typeArgumentsLength = typeArguments.length;
                                        if (typeArgumentsLength != 0) {
                                                buffer.append('<');
                                                for (int i = 0, max = typeArguments.length; i < max; i++) {
                                                        if (i > 0) {
                                                                buffer.append(',');
                                                        }
                                                        buffer.append(typeArguments[i].getQualifiedName());
                                                }
                                                buffer.append('>');
                                        }
                                        return String.valueOf(buffer);


Clone Instance
3
Line Count
13
Source Line
762
Source File
plugins/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/TypeBinding.java

                                ITypeBinding[] typeArguments = getTypeArguments();
                                final int typeArgumentsLength = typeArguments.length;
                                if (typeArgumentsLength != 0) {
                                        buffer.append('<');
                                        for (int i = 0, max = typeArguments.length; i < max; i++) {
                                                if (i > 0) {
                                                        buffer.append(',');
                                                }
                                                buffer.append(typeArguments[i].getQualifiedName());
                                        }
                                        buffer.append('>');
                                }
                                return String.valueOf(buffer);


Clone AbstractionParameter Count: 1Parameter Bindings

ITypeBinding[] typeArguments = getTypeArguments();
final int typeArgumentsLength = typeArguments.length;
if (typeArgumentsLength != 0) {
  buffer.append('<');
  for (int i = 0, max = typeArguments.length; i < max; i++) {
    if (i > 0) {
      buffer.append(',');
    }
    buffer.append(typeArguments[i]. [[#variable569a3620]]());
  }
  buffer.append('>');
}
return String.valueOf(buffer);
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#569a3620]]
getName 
12[[#569a3620]]
getQualifiedName 
13[[#569a3620]]
getQualifiedName