@Override public Iterator<E> iterator() { return basicIterator(); } /** * Returns the {@link #basicListIterator() basic list iterator}. * @return the basic list iterator. */ @Override public ListIterator<E> listIterator() { return basicListIterator(); } /** * Returns the {@link #basicListIterator(int) basic list iterator} advanced to the index. * @param index the starting index. * @return the basic list iterator. */ @Override public ListIterator<E> listIterator(int index) { return basicListIterator(index);
@Override public Iterator<E> iterator() { return basicIterator(); } /** * Returns the {@link #basicListIterator() basic list iterator}. * @return the basic list iterator. */ @Override public ListIterator<E> listIterator() { return basicListIterator(); } /** * Returns the {@link #basicListIterator(int) basic list iterator} advanced to the index. * @param index the starting index. * @return the basic list iterator. */ @Override public ListIterator<E> listIterator(int index) { return basicListIterator(index);
Clone fragments detected by clone detection tool
File path: /emf-2.4.1/src/org/eclipse/emf/common/util/BasicEList.java File path: /emf-2.4.1/src/org/eclipse/emf/common/util/DelegatingEList.java
Method name: Method name:
Number of AST nodes: 0 Number of AST nodes: 0
1
@Override
1
@Override
2
    public Iterator<E> iterator() 
2
    public Iterator<E> iterator() 
3
    {
3
    {
4
      return basicIterator();
4
      return basicIterator();
5
    }
5
    }
6
    /**
6
    /**
7
     * Returns the {@link #basicListIterator() basic list iterator}.
7
     * Returns the {@link #basicListIterator() basic list iterator}.
8
     * @return the basic list iterator.
8
     * @return the basic list iterator.
9
     */
9
     */
10
    @Override
10
    @Override
11
    public ListIterator<E> listIterator() 
11
    public ListIterator<E> listIterator() 
12
    {
12
    {
13
      return basicListIterator();
13
      return basicListIterator();
14
    }
14
    }
15
  
15
  
16
    /**
16
    /**
17
     * Returns the {@link #basicListIterator(int) basic list iterator} advanced to the index.
17
     * Returns the {@link #basicListIterator(int) basic list iterator} advanced to the index.
18
     * @param index the starting index.
18
     * @param index the starting index.
19
     * @return the basic list iterator.
19
     * @return the basic list iterator.
20
     */
20
     */
21
    @Override
21
    @Override
22
    public ListIterator<E> listIterator(int index) 
22
    public ListIterator<E> listIterator(int index) 
23
    {
23
    {
24
      return basicListIterator(index);
24
      return basicListIterator(index);
Summary
Number of common nesting structure subtrees0
Number of refactorable cases0
Number of non-refactorable cases0
Time elapsed for finding largest common nesting structure subtrees (ms)0.0
Clones location
Number of node comparisons0