CloneSet716


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
29210.986namespace_member_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
12960
src/NHibernate.Test/NHSpecificTest/NH719/Domain.cs
22888
src/NHibernate.Test/NHSpecificTest/NH719/Domain.cs
Clone Instance
1
Line Count
29
Source Line
60
Source File
src/NHibernate.Test/NHSpecificTest/NH719/Domain.cs

        public class NotCached
        {
                private int id;

                private object owner;

                protected NotCached()
                {
                }

                public NotCached(int id, object owner)
                {
                        this.id = id;
                        this.owner = owner;
                }

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

                public object Owner
                {
                        get { return owner;
                            }
                        set { owner = value;
                            }
                }

        }


Clone Instance
2
Line Count
28
Source Line
88
Source File
src/NHibernate.Test/NHSpecificTest/NH719/Domain.cs

        public class Cached
        {
                private int id;

                private object owner;

                protected Cached()
                {
                }

                public Cached(int id, object owner)
                {
                        this.id = id;
                        this.owner = owner;
                }

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

                public object Owner
                {
                        get { return owner;
                            }
                        set { owner = value;
                            }
                }

        }


Clone AbstractionParameter Count: 1Parameter Bindings

public class [[#variable69dfc520]]
{
   private int id;

   private object owner;

   protected [[#variable69dfc520]]()
   {
   }

   public [[#variable69dfc520]](int id, object owner)
   {
      this.id = id;
      this.owner = owner;
   }

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

   public object Owner
   {
      get
      {
         return owner;
      }
      set
      {
         owner = value;
      }
   }

}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#69dfc520]]
NotCached 
12[[#69dfc520]]
Cached