CloneSet380


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
8220.951block
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
18245
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/types/PatternSet.java
28263
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/types/PatternSet.java
Next
Last
Clone Instance
1
Line Count
8
Source Line
245
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/types/PatternSet.java

{
  if (isReference()) {
    throw tooManyAttributes();
  }
  if (includes != null && includes.length() > 0) {
    StringTokenizer tok = new StringTokenizer(includes, ", ", false);
    while (tok.hasMoreTokens()) {
      createInclude().setName(tok.nextToken());
    }
  }
}


First
Previous
Clone Instance
2
Line Count
8
Source Line
263
Source File
E:/TSE/Projects-CloneDR/apache-ant-1.7.0/src/org/apache/tools/ant/types/PatternSet.java

{
  if (isReference()) {
    throw tooManyAttributes();
  }
  if (excludes != null && excludes.length() > 0) {
    StringTokenizer tok = new StringTokenizer(excludes, ", ", false);
    while (tok.hasMoreTokens()) {
      createExclude().setName(tok.nextToken());
    }
  }
}


Clone AbstractionParameter Count: 2Parameter Bindings

{
  if (isReference()) {
    throw tooManyAttributes();
  }
  if ( [[#variable100ff900]]!= null && [[#variable100ff900]].length() > 0) {
    StringTokenizer tok = new StringTokenizer( [[#variable100ff900]], ", ", false);
    while (tok.hasMoreTokens()) {
       [[#variable100ff920]]().setName(tok.nextToken());
    }
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#100ff900]]
includes 
12[[#100ff900]]
excludes 
21[[#100ff920]]
createInclude 
22[[#100ff920]]
createExclude