CloneSet1215


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
13210.993class_member_declarations[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
113268
src/NHibernate/Collection/PersistentBag.cs
213353
src/NHibernate/Collection/PersistentSet.cs
Clone Instance
1
Line Count
13
Source Line
268
Source File
src/NHibernate/Collection/PersistentBag.cs

                public override bool NeedsUpdating(object entry, int i, IType elemType)
                {
                        return false;
                }

                public override object GetIndex(object entry, int i, ICollectionPersister persister)
                {
                        throw new NotSupportedException("Bags don't have indexes");
                }

                public override object GetElement(object entry)
                {
                        return entry;
                }



Clone Instance
2
Line Count
13
Source Line
353
Source File
src/NHibernate/Collection/PersistentSet.cs

                public override bool NeedsUpdating(object entry, int i, IType elemType)
                {
                        return false;
                }

                public override object GetIndex(object entry, int i, ICollectionPersister persister)
                {
                        throw new NotSupportedException("Sets don't have indexes");
                }

                public override object GetElement(object entry)
                {
                        return entry;
                }



Clone AbstractionParameter Count: 1Parameter Bindings

public override bool NeedsUpdating(object entry, int i, IType elemType)
{
   return false;
}

public override object GetIndex(object entry, int i, ICollectionPersister persister)
{
   throw new NotSupportedException( [[#variable56f9e380]]);
}

public override object GetElement(object entry)
{
   return entry;
}

 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#56f9e380]]
"Sets don't have indexes" 
12[[#56f9e380]]
"Bags don't have indexes"