CloneSet968


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
23240.958compilation_unit
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1231
src/NHibernate.Test/NHSpecificTest/NH440/Apple.cs
2231
src/NHibernate.Test/NHSpecificTest/NH440/Fruit.cs
Clone Instance
1
Line Count
23
Source Line
1
Source File
src/NHibernate.Test/NHSpecificTest/NH440/Apple.cs

using System;

namespace NHibernate.Test.NHSpecificTest.NH440
{
        public class Apple
        {
                private int id;

                public int Id
                {
                        get { return id;
                            }
                        set { id = value;
                            }
                }

                private Fruit theFruit;

                public Fruit TheFruit
                {
                        get { return theFruit;
                            }
                        set { theFruit = value;
                            }
                }

        }
}


Clone Instance
2
Line Count
23
Source Line
1
Source File
src/NHibernate.Test/NHSpecificTest/NH440/Fruit.cs

using System;

namespace NHibernate.Test.NHSpecificTest.NH440
{
        public class Fruit
        {
                private int id;

                public int Id
                {
                        get { return id;
                            }
                        set { id = value;
                            }
                }

                private Apple theApple;

                public Apple TheApple
                {
                        get { return theApple;
                            }
                        set { theApple = value;
                            }
                }

        }
}


Clone AbstractionParameter Count: 4Parameter Bindings

using System;
namespace NHibernate.Test.NHSpecificTest.NH440
{
   public class [[#variable54b1fca0]]
   {
      private int id;

      public int Id
      {
         get
         {
            return id;
         }
         set
         {
            id = value;
         }
      }

      private [[#variable54b1fc00]] [[#variable54b1fb60]];

      public [[#variable54b1fc00]] [[#variable54b1fb00]]
      {
         get
         {
            return [[#variable54b1fb60]];
         }
         set
         {
             [[#variable54b1fb60]]= value;
         }
      }

   }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#54b1fca0]]
Apple 
12[[#54b1fca0]]
Fruit 
21[[#54b1fc00]]
Fruit 
22[[#54b1fc00]]
Apple 
31[[#54b1fb60]]
theFruit 
32[[#54b1fb60]]
theApple 
41[[#54b1fb00]]
TheFruit 
42[[#54b1fb00]]
TheApple