CloneSet1420


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
7220.973class_member_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
17107
src/NHibernate/SqlCommand/SqlDeleteBuilder.cs
27137
src/NHibernate/SqlCommand/SqlUpdateBuilder.cs
Clone Instance
1
Line Count
7
Source Line
107
Source File
src/NHibernate/SqlCommand/SqlDeleteBuilder.cs

                public virtual SqlDeleteBuilder SetWhere(string whereSql)
                {
                        if (StringHelper.IsNotEmpty(whereSql))
                        {
                                whereStrings = new List<SqlString> (new []
                                                                         { new SqlString(whereSql)
                                                                         } );
                        }
                        return this ;
                }



Clone Instance
2
Line Count
7
Source Line
137
Source File
src/NHibernate/SqlCommand/SqlUpdateBuilder.cs

                public SqlUpdateBuilder SetWhere(string whereSql)
                {
                        if (StringHelper.IsNotEmpty(whereSql))
                        {
                                whereStrings = new List<SqlString> (new [] { new SqlString(whereSql)
                                                                           } );
                        }
                        return this ;
                }



Clone AbstractionParameter Count: 2Parameter Bindings

 [[#variable27d40020]] [[#variable27d13ee0]]SetWhere(string whereSql)
{
   if (StringHelper.IsNotEmpty(whereSql))
   {
      whereStrings = new List<SqlString> (new []
                                          {
                                             new SqlString(whereSql)
                                          } );
   }
   return this ;
}

 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#27d40020]]
public virtual 
12[[#27d40020]]
public 
21[[#27d13ee0]]
SqlDeleteBuilder 
22[[#27d13ee0]]
SqlUpdateBuilder