Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
23 | 2 | 4 | 0.958 | compilation_unit |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 23 | 1 | src/NHibernate.Test/NHSpecificTest/NH440/Apple.cs |
2 | 23 | 1 | src/NHibernate.Test/NHSpecificTest/NH440/Fruit.cs |
| ||||
using System; namespace NHibernate.Test.NHSpecificTest.NH440 { public class Apple { private int id; public int Id { get { return id; } set { id = value; } } private Fruit theFruit; public Fruit TheFruit { get { return theFruit; } set { theFruit = value; } } } } |
| ||||
using System; namespace NHibernate.Test.NHSpecificTest.NH440 { public class Fruit { private int id; public int Id { get { return id; } set { id = value; } } private Apple theApple; public Apple TheApple { get { return theApple; } set { theApple = value; } } } } |
| |||
using System; namespace NHibernate.Test.NHSpecificTest.NH440 { public class [[#variable54b1fca0]] { private int id; public int Id { get { return id; } set { id = value; } } private [[#variable54b1fc00]] [[#variable54b1fb60]]; public [[#variable54b1fc00]] [[#variable54b1fb00]] { get { return [[#variable54b1fb60]]; } set { [[#variable54b1fb60]]= value; } } } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#54b1fca0]] | Apple |
1 | 2 | [[#54b1fca0]] | Fruit |
2 | 1 | [[#54b1fc00]] | Fruit |
2 | 2 | [[#54b1fc00]] | Apple |
3 | 1 | [[#54b1fb60]] | theFruit |
3 | 2 | [[#54b1fb60]] | theApple |
4 | 1 | [[#54b1fb00]] | TheFruit |
4 | 2 | [[#54b1fb00]] | TheApple |