Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
17 | 2 | 3 | 0.964 | compilation_unit |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 17 | 1 | src/NHibernate.Test/NHSpecificTest/NH257/User.cs |
2 | 17 | 1 | src/NHibernate.Test/NHSpecificTest/NH257/UserGroup.cs |
| ||||
using System; using Iesi.Collections; namespace NHibernate.Test.NHSpecificTest.NH257 { [Serializable] public class User : Party { private ISet _groups = new HashedSet(); public ISet Groups { get { return _groups; } set { _groups = value; } } } } |
| ||||
using System; using Iesi.Collections; namespace NHibernate.Test.NHSpecificTest.NH257 { [Serializable] public class UserGroup : Party { private ISet _users = new HashedSet(); public ISet Users { get { return _users; } set { _users = value; } } } } |
| |||
using System; using Iesi.Collections; namespace NHibernate.Test.NHSpecificTest.NH257 { [Serializable] public class [[#variable2724a3c0]]: Party { private ISet [[#variable2cb576a0]]= new HashedSet(); public ISet [[#variable2724a2e0]] { get { return [[#variable2cb576a0]]; } set { [[#variable2cb576a0]]= value; } } } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#2724a3c0]] | User |
1 | 2 | [[#2724a3c0]] | UserGroup |
2 | 1 | [[#2cb576a0]] | _groups |
2 | 2 | [[#2cb576a0]] | _users |
3 | 1 | [[#2724a2e0]] | Groups |
3 | 2 | [[#2724a2e0]] | Users |