CloneSet1099


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
10330.962class_member_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11014
src/NHibernate.DomainModel/Assignable.cs
21029
src/NHibernate.DomainModel/Holder.cs
32128
src/NHibernate.DomainModel/NHSpecific/Node.cs
Clone Instance
1
Line Count
10
Source Line
14
Source File
src/NHibernate.DomainModel/Assignable.cs

                public string Id
                {
                        get { return _id;
                            }
                        set { _id = value;
                            }
                }

                public IList Categories
                {
                        get { return _categories;
                            }
                        set { _categories = value;
                            }
                }



Clone Instance
2
Line Count
10
Source Line
29
Source File
src/NHibernate.DomainModel/Holder.cs

                public string Id
                {
                        get { return _id;
                            }
                        set { _id = value;
                            }
                }

                public IList Ones
                {
                        get { return _ones;
                            }
                        set { _ones = value;
                            }
                }



Clone Instance
3
Line Count
21
Source Line
28
Source File
src/NHibernate.DomainModel/NHSpecific/Node.cs

                public string Id
                {
                        get { return _id;
                            }
                        set { _id = value;
                            }
                }

                /// <summary>
                /// The Nodes that lead into this Node.
                /// </summary>
                /// <remarks>
                /// I would not recommend that mapping of set be made public because
                /// under the scene they rely on Dictionaries, but this is in here for 
                /// testing.
                /// 
                /// Any modifications to the "inverse" side should not be persisted - unless
                /// the modifications are also made to the non-inverse side.
                /// </remarks>
                public ISet PreviousNodes
                {
                        get { return _previousNodes;
                            }
                        set { _previousNodes = value;
                            }
                }



Clone AbstractionParameter Count: 3Parameter Bindings

public string Id
{
   get
   {
      return _id;
   }
   set
   {
      _id = value;
   }
}

/// <summary>
/// The Nodes that lead into this Node.
/// </summary>
/// <remarks>
/// I would not recommend that mapping of set be made public because
/// under the scene they rely on Dictionaries, but this is in here for 
/// testing.
/// 
/// Any modifications to the "inverse" side should not be persisted - unless
/// the modifications are also made to the non-inverse side.
/// </remarks>
public [[#variable293473e0]] [[#variable290ce6c0]]
{
   get
   {
      return [[#variable290ce660]];
   }
   set
   {
       [[#variable290ce660]]= value;
   }
}

 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#293473e0]]
IList 
12[[#293473e0]]
ISet 
13[[#293473e0]]
IList 
21[[#290ce6c0]]
Categories 
22[[#290ce6c0]]
PreviousNodes 
23[[#290ce6c0]]
Ones 
31[[#290ce660]]
_categories 
32[[#290ce660]]
_previousNodes 
33[[#290ce660]]
_ones