CloneSet8379


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
8210.976class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1823
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/BufferCache.java
2827
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/ElementCache.java
Clone Instance
1
Line Count
8
Source Line
23
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/BufferCache.java

/**
 * Constructs a new buffer cache of the given size.
 */
public BufferCache(int size) {
        super(size);
}

/**
 * Constructs a new buffer cache of the given size.
 */
public BufferCache(int size, int overflow) {
        super(size, overflow);
}


Clone Instance
2
Line Count
8
Source Line
27
Source File
plugins/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/ElementCache.java

/**
 * Constructs a new element cache of the given size.
 */
public ElementCache(int size) {
        super(size);
}

/**
 * Constructs a new element cache of the given size.
 */
public ElementCache(int size, int overflow) {
        super(size, overflow);
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
 * Constructs a new buffer cache of the given size.
 */
/**
 * Constructs a new element cache of the given size.
 */
public [[#variableb442dde0]](int size) {
  super(size);
}

/**
 * Constructs a new buffer cache of the given size.
 */
/**
 * Constructs a new element cache of the given size.
 */
public [[#variableb442dde0]](int size, int overflow) {
  super(size, overflow);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#b442dde0]]
BufferCache 
12[[#b442dde0]]
ElementCache