CloneSet867


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
9220.973statement_list[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
19103
src/NHibernate/Properties/BasicPropertyAccessor.cs
29155
src/NHibernate/Properties/BasicPropertyAccessor.cs
Clone Instance
1
Line Count
9
Source Line
103
Source File
src/NHibernate/Properties/BasicPropertyAccessor.cs

                                // didn't find anything in the base class - check to see if there is 
                                // an explicit interface implementation.
                                if (getter == null)
                                {
                                        System.Type[] interfaces = type.GetInterfaces();
                                        for (int i = 0; getter == null && i < interfaces.Length; i++)
                                        {
                                                getter = GetGetterOrNull(interfaces[i], propertyName);
                                        }
                                }
                                return getter;


Clone Instance
2
Line Count
9
Source Line
155
Source File
src/NHibernate/Properties/BasicPropertyAccessor.cs

                        // didn't find anything in the base class - check to see if there is 
                        // an explicit interface implementation.
                        if (setter == null)
                        {
                                System.Type[] interfaces = type.GetInterfaces();
                                for (int i = 0; setter == null && i < interfaces.Length; i++)
                                {
                                        setter = GetSetterOrNull(interfaces[i], propertyName);
                                }
                        }
                        return setter;


Clone AbstractionParameter Count: 2Parameter Bindings

// didn't find anything in the base class - check to see if there is 
// an explicit interface implementation.
if ( [[#variable4faa9a00]]== null)
{
   System.Type[] interfaces = type.GetInterfaces();
   for (int i = 0; [[#variable4faa9a00]]== null && i < interfaces.Length; i++)
   {
       [[#variable4faa9a00]]= [[#variable550b3900]](interfaces[i], propertyName);
   }
}
return [[#variable4faa9a00]];
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#4faa9a00]]
setter 
12[[#4faa9a00]]
getter 
21[[#550b3900]]
GetSetterOrNull 
22[[#550b3900]]
GetGetterOrNull