CloneSet2606


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
5220.971class_member_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1559
src/NHibernate.Test/Events/Collections/AbstractParentWithCollection.cs
2572
src/NHibernate.Test/Events/Collections/AbstractParentWithCollection.cs
Clone Instance
1
Line Count
5
Source Line
59
Source File
src/NHibernate.Test/Events/Collections/AbstractParentWithCollection.cs

                public virtual void AddAllChildren(ICollection<IChild> children)
                {
                        foreach (IChild child in children)
                        {
                                this.children.Add(child);
                        }
                }



Clone Instance
2
Line Count
5
Source Line
72
Source File
src/NHibernate.Test/Events/Collections/AbstractParentWithCollection.cs

                public virtual void RemoveAllChildren(ICollection<IChild> children)
                {
                        foreach (IChild child in children)
                        {
                                this.children.Remove(child);
                        }
                }



Clone AbstractionParameter Count: 2Parameter Bindings

public virtual void [[#variable583f8520]](ICollection<IChild> children)
{
   foreach (IChild child in children)
   {
      this.children. [[#variable583f84c0]](child);
   }
}

 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#583f8520]]
RemoveAllChildren 
12[[#583f8520]]
AddAllChildren 
21[[#583f84c0]]
Remove 
22[[#583f84c0]]
Add