public boolean basicContains(Object object) { return super.contains(object); } public boolean basicContainsAll(Collection<?> collection) { return super.containsAll(collection); } public int basicIndexOf(Object object) { return super.indexOf(object); } public int basicLastIndexOf(Object object) { return super.lastIndexOf(object); } public Object[] basicToArray() { return super.toArray(); } public <T> T [] basicToArray(T [] array) { return super.toArray(array);
public boolean basicContains(Object object) { return super.contains(object); } public boolean basicContainsAll(Collection<?> collection) { return super.containsAll(collection); } public int basicIndexOf(Object object) { return super.indexOf(object); } public int basicLastIndexOf(Object object) { return super.lastIndexOf(object); } public Object[] basicToArray() { return super.toArray(); } public <T> T[] basicToArray(T[] array) { return super.toArray(array);
Clone fragments detected by clone detection tool
File path: /emf-2.4.1/src/org/eclipse/emf/ecore/util/EcoreEList.java File path: /emf-2.4.1/src/org/eclipse/emf/ecore/util/NotifyingInternalEListImpl.java
Method name: Method name:
Number of AST nodes: 0 Number of AST nodes: 0
1
public boolean basicContains(Object object)
1
public boolean basicContains(Object object)
2
    {
2
  
3
  
3
{
4
    return super.contains(object);
4
    return super.contains(object);
5
    }
5
  }
6
    public boolean basicContainsAll(Collection<?> collection)
6
  public boolean basicContainsAll(Collection<?> collection)
7
    {
7
  
8
  
8
{
9
    return super.containsAll(collection);
9
    return super.containsAll(collection);
10
    }
10
  }
11
    public int basicIndexOf(Object object)
11
  public int basicIndexOf(Object object)
12
    {
12
  {
13
      return super.indexOf(object);
13
    return super.indexOf(object);
14
    }
14
  }
15
    public int basicLastIndexOf(Object object)
15
  public int basicLastIndexOf(Object object)
16
    {
16
  {
17
      return super.lastIndexOf(object);
17
    return super.lastIndexOf(object);
18
    }
18
  }
19
    public Object[] basicToArray()
19
  public Object[] basicToArray()
20
    {
20
  {
21
      return super.toArray();
21
    return super.toArray();
22
    }
22
  }
23
    public <T> T [] basicToArray(T [] array)
23
  public <T> T[] basicToArray(T[] array)
24
    {
24
  
25
  
25
{
26
    return super.toArray(array);
26
    return super.toArray(array);
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