CloneSet515


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
19340.954compilation_unit
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1191
src/NHibernate.Test/NHSpecificTest/NH1391/PersonWithCats.cs
2191
src/NHibernate.Test/NHSpecificTest/NH1391/PersonWithDogs.cs
3191
src/NHibernate.Test/NHSpecificTest/NH1391/PersonWithSivasKangals.cs
Clone Instance
1
Line Count
19
Source Line
1
Source File
src/NHibernate.Test/NHSpecificTest/NH1391/PersonWithCats.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 ;
                }

        }
}


Clone Instance
2
Line Count
19
Source Line
1
Source File
src/NHibernate.Test/NHSpecificTest/NH1391/PersonWithDogs.cs

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 ;
                }

        }
}


Clone Instance
3
Line Count
19
Source Line
1
Source File
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 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 ;
                }

        }
}


Clone AbstractionParameter Count: 4Parameter Bindings

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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#6e38a1c0]]
PersonWithCats 
12[[#6e38a1c0]]
PersonWithDogs 
13[[#6e38a1c0]]
PersonWithSivasKangals 
21[[#6e38a160]]
CatsGeneric 
22[[#6e38a160]]
DogsGeneric 
23[[#6e38a160]]
SivasKangalsGeneric 
31[[#6e38a100]]
Cat 
32[[#6e38a100]]
Dog 
33[[#6e38a100]]
SivasKangal 
41[[#6e38a080]]
CatsNonGeneric 
42[[#6e38a080]]
DogsNonGeneric 
43[[#6e38a080]]
SivasKangalsNonGeneric