Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
19 | 3 | 4 | 0.954 | compilation_unit |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 19 | 1 | src/NHibernate.Test/NHSpecificTest/NH1391/PersonWithCats.cs |
2 | 19 | 1 | src/NHibernate.Test/NHSpecificTest/NH1391/PersonWithDogs.cs |
3 | 19 | 1 | src/NHibernate.Test/NHSpecificTest/NH1391/PersonWithSivasKangals.cs |
| ||||
using System; using System.Collections; using System.Collections.Generic; using System.Text; namespace NHibernate.Test.NHSpecificTest.NH1391 { public class PersonWithCats : Person { public PersonWithCats() { this.CatsGeneric = new List<Cat> (); this.CatsNonGeneric = new ArrayList(); } public virtual IList CatsNonGeneric { get ; set ; } public virtual IList<Cat> CatsGeneric { get ; set ; } } } |
| ||||
using System; using System.Collections; using System.Collections.Generic; using System.Text; namespace NHibernate.Test.NHSpecificTest.NH1391 { public class PersonWithDogs : Person { public PersonWithDogs() { this.DogsGeneric = new List<Dog> (); this.DogsNonGeneric = new ArrayList(); } public virtual IList DogsNonGeneric { get ; set ; } public virtual IList<Dog> DogsGeneric { get ; set ; } } } |
| ||||
using System; using System.Collections; using System.Collections.Generic; using System.Text; namespace NHibernate.Test.NHSpecificTest.NH1391 { public class PersonWithSivasKangals: Person { public PersonWithSivasKangals() { this.SivasKangalsGeneric = new List<SivasKangal> (); this.SivasKangalsNonGeneric = new ArrayList(); } public virtual IList SivasKangalsNonGeneric { get ; set ; } public virtual IList<SivasKangal> SivasKangalsGeneric { get ; set ; } } } |
| |||
using System; using System.Collections; using System.Collections.Generic; using System.Text; namespace NHibernate.Test.NHSpecificTest.NH1391 { public class [[#variable6e38a1c0]]: Person { public [[#variable6e38a1c0]]() { this. [[#variable6e38a160]]= new List< [[#variable6e38a100]]> (); this. [[#variable6e38a080]]= new ArrayList(); } public virtual IList [[#variable6e38a080]] { get ; set ; } public virtual IList< [[#variable6e38a100]]> [[#variable6e38a160]] { get ; set ; } } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#6e38a1c0]] | PersonWithCats |
1 | 2 | [[#6e38a1c0]] | PersonWithDogs |
1 | 3 | [[#6e38a1c0]] | PersonWithSivasKangals |
2 | 1 | [[#6e38a160]] | CatsGeneric |
2 | 2 | [[#6e38a160]] | DogsGeneric |
2 | 3 | [[#6e38a160]] | SivasKangalsGeneric |
3 | 1 | [[#6e38a100]] | Cat |
3 | 2 | [[#6e38a100]] | Dog |
3 | 3 | [[#6e38a100]] | SivasKangal |
4 | 1 | [[#6e38a080]] | CatsNonGeneric |
4 | 2 | [[#6e38a080]] | DogsNonGeneric |
4 | 3 | [[#6e38a080]] | SivasKangalsNonGeneric |