CloneSet771


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
16210.987method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1161153
E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/common/util/DelegatingEList.java
2161432
E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/common/util/DelegatingEList.java
Next
Last
Clone Instance
1
Line Count
16
Source Line
1153
Source File
E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/common/util/DelegatingEList.java

/**
 * Returns the next object and advances the iterator.
 * This implementation accesses the backing list directly.
 * @return the next object.
 * @exception NoSuchElementException if the iterator is done.
 */
@Override public E doNext() {
  try {
    E next = delegateGet(cursor);
    checkModCount();
    lastCursor = cursor++;
    return next;
  }
  catch (IndexOutOfBoundsException
         exception) {
    checkModCount();
    throw new NoSuchElementException();
  }
}


First
Previous
Clone Instance
2
Line Count
16
Source Line
1432
Source File
E:/TSE/Projects-CloneDR/emf-2.4.1/src/org/eclipse/emf/common/util/DelegatingEList.java

/**
 * Returns the next object and advances the iterator.
 * This implementation accesses the backing list directly.
 * @return the next object.
 * @exception NoSuchElementException if the iterator is done.
 */
@Override protected E doNext() {
  try {
    E next = delegateGet(cursor);
    checkModCount();
    lastCursor = cursor++;
    return next;
  }
  catch (IndexOutOfBoundsException
         exception) {
    checkModCount();
    throw new NoSuchElementException();
  }
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Returns the next object and advances the iterator.
     * This implementation accesses the backing list directly.
     * @return the next object.
     * @exception NoSuchElementException if the iterator is done.
     */
@Override [[#variable17405a80]]E doNext() {
  try {
    E next = delegateGet(cursor);
    checkModCount();
    lastCursor = cursor++;
    return next;
  }
  catch (IndexOutOfBoundsException
         exception) {
    checkModCount();
    throw new NoSuchElementException();
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#17405a80]]
public 
12[[#17405a80]]
protected