Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
29 | 2 | 1 | 0.986 | namespace_member_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 29 | 60 | src/NHibernate.Test/NHSpecificTest/NH719/Domain.cs |
2 | 28 | 88 | src/NHibernate.Test/NHSpecificTest/NH719/Domain.cs |
| ||||
public class NotCached { private int id; private object owner; protected NotCached() { } public NotCached(int id, object owner) { this.id = id; this.owner = owner; } public int Id { get { return id; } set { id = value; } } public object Owner { get { return owner; } set { owner = value; } } } |
| ||||
public class Cached { private int id; private object owner; protected Cached() { } public Cached(int id, object owner) { this.id = id; this.owner = owner; } public int Id { get { return id; } set { id = value; } } public object Owner { get { return owner; } set { owner = value; } } } |
| |||
public class [[#variable69dfc520]] { private int id; private object owner; protected [[#variable69dfc520]]() { } public [[#variable69dfc520]](int id, object owner) { this.id = id; this.owner = owner; } public int Id { get { return id; } set { id = value; } } public object Owner { get { return owner; } set { owner = value; } } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#69dfc520]] | NotCached |
1 | 2 | [[#69dfc520]] | Cached |