CloneSet1048


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
35240.957namespace_member_declarations
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1356
src/NHibernate.Test/NHSpecificTest/NH1447/Person.cs
2355
src/NHibernate.Test/NHSpecificTest/NH1478/Person.cs
Clone Instance
1
Line Count
35
Source Line
6
Source File
src/NHibernate.Test/NHSpecificTest/NH1447/Person.cs

namespace NHibernate.Test.NHSpecificTest.NH1447
{
        public class Person
        {
                public Person()
                {
                }


                public Person(string name, bool wantsNewsLetter)
                {
                        this.Name = name;
                        this.WantsNewsletter = wantsNewsLetter;
                }

                public virtual int Id
                { get ;
                        set ;
                }

                public virtual string Name
                {
                        get ;
                        set ;
                }

                public virtual bool WantsNewsletter
                {
                        get ;
                        set ;
                }

        }
}


Clone Instance
2
Line Count
35
Source Line
5
Source File
src/NHibernate.Test/NHSpecificTest/NH1478/Person.cs

namespace NHibernate.Test.NHSpecificTest.NH1478
{
        public class Person
        {
                public Person()
                {
                }


                public Person(string name, string bio)
                {
                        this.Name = name;
                        this.Biography = bio;
                }

                public virtual int Id
                {
                        get ;
                        set ;
                }

                public virtual string Name
                {
                        get ;
                        set ;
                }

                public virtual string Biography
                {
                        get ;
                        set ;
                }

        }
}


Clone AbstractionParameter Count: 4Parameter Bindings

namespace NHibernate.Test.NHSpecificTest. [[#variable4f878a20]]
{
   public class Person
   {
      public Person()
      {
      }

      public Person(string name, [[#variable4f8789c0]] [[#variable4f878940]])
      {
         this.Name = name;
         this. [[#variable4f878860]]= [[#variable4f878940]];
      }

      public virtual int Id
      {
         get ;
         set ;
      }

      public virtual string Name
      {
         get ;
         set ;
      }

      public virtual [[#variable4f8789c0]] [[#variable4f878860]]
      {
         get ;
         set ;
      }

   }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#4f878a20]]
NH1447 
12[[#4f878a20]]
NH1478 
21[[#4f8789c0]]
bool 
22[[#4f8789c0]]
string 
31[[#4f878940]]
wantsNewsLetter 
32[[#4f878940]]
bio 
41[[#4f878860]]
WantsNewsletter 
42[[#4f878860]]
Biography