CloneSet965


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
5220.960block
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1575
E:/TSE/Projects-CloneDR/columba-1.4-src/mail/src/test/java/org/columba/mail/parser/text/HtmlParserTest.java
2582
E:/TSE/Projects-CloneDR/columba-1.4-src/mail/src/test/java/org/columba/mail/parser/text/HtmlParserTest.java
Next
Last
Clone Instance
1
Line Count
5
Source Line
75
Source File
E:/TSE/Projects-CloneDR/columba-1.4-src/mail/src/test/java/org/columba/mail/parser/text/HtmlParserTest.java

{
  String input = "<html><body><p><!- this is a text without comments -></p></body></html>";
  String result = HtmlParser.removeComments(input);
  assertTrue(result.equals("<html><body><p><!- this is a text without comments -></p></body></html>"));
}


First
Previous
Clone Instance
2
Line Count
5
Source Line
82
Source File
E:/TSE/Projects-CloneDR/columba-1.4-src/mail/src/test/java/org/columba/mail/parser/text/HtmlParserTest.java

{
  String input = "<html><body><p><!-- this is a comment -->And some text</p></body></html>";
  String result = HtmlParser.removeComments(input);
  assertTrue(result.equals("<html><body><p>And some text</p></body></html>"));
}


Clone AbstractionParameter Count: 2Parameter Bindings

{
  String input = [[#variable131ba3e0]];
  String result = HtmlParser.removeComments(input);
  assertTrue(result.equals( [[#variable131babc0]]));
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#131ba3e0]]
"<html><body><p><!- this is a text without comments -></p></body></html>" 
12[[#131ba3e0]]
"<html><body><p><!-- this is a comment -->And some text</p></body></html>" 
21[[#131babc0]]
"<html><body><p><!- this is a text without comments -></p></body></html>" 
22[[#131babc0]]
"<html><body><p>And some text</p></body></html>"