CloneSet553


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
17210.988block
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11767
E:/TSE/Projects-CloneDR/columba-1.4-src/mail/src/main/java/org/columba/mail/folder/mailboximport/EvolutionImporter.java
21767
E:/TSE/Projects-CloneDR/columba-1.4-src/mail/src/main/java/org/columba/mail/folder/mailboximport/MozillaImporter.java
Next
Last
Clone Instance
1
Line Count
17
Source Line
67
Source File
E:/TSE/Projects-CloneDR/columba-1.4-src/mail/src/main/java/org/columba/mail/folder/mailboximport/EvolutionImporter.java

{
  // line contains "@" (evolution mbox style) or
  //  -> import message in Columba
  if (str.indexOf("@") != -1) {
    if (strbuf.length() != 0) {
      // found new message
      saveMessage(strbuf.toString(), worker, getDestinationFolder());
      count++;
      sucess = true;
    }
    strbuf = new StringBuffer();
  }
  else {
    strbuf.append(str + "\n");
  }
}


First
Previous
Clone Instance
2
Line Count
17
Source Line
67
Source File
E:/TSE/Projects-CloneDR/columba-1.4-src/mail/src/main/java/org/columba/mail/folder/mailboximport/MozillaImporter.java

{
  // line contains "-" (mozilla mbox style)
  //  -> import message in Columba
  if (str.indexOf("-") != -1) {
    if (strbuf.length() != 0) {
      // found new message
      saveMessage(strbuf.toString(), worker, getDestinationFolder());
      count++;
      sucess = true;
    }
    strbuf = new StringBuffer();
  }
  else {
    strbuf.append(str + "\n");
  }
}


Clone AbstractionParameter Count: 1Parameter Bindings

{
  // line contains "@" (evolution mbox style) or
  // line contains "-" (mozilla mbox style)
  //  -> import message in Columba
  if (str.indexOf( [[#variable1304f9c0]]) != -1) {
    if (strbuf.length() != 0) {
      // found new message
      saveMessage(strbuf.toString(), worker, getDestinationFolder());
      count++;
      sucess = true;
    }
    strbuf = new StringBuffer();
  }
  else {
    strbuf.append(str + "\n");
  }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1304f9c0]]
"@" 
12[[#1304f9c0]]
"-"