CloneSet711


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
3520.952class_member_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1368
src/NHibernate/SqlTypes/SqlTypeFactory.cs
2373
src/NHibernate/SqlTypes/SqlTypeFactory.cs
3378
src/NHibernate/SqlTypes/SqlTypeFactory.cs
4383
src/NHibernate/SqlTypes/SqlTypeFactory.cs
5388
src/NHibernate/SqlTypes/SqlTypeFactory.cs
Clone Instance
1
Line Count
3
Source Line
68
Source File
src/NHibernate/SqlTypes/SqlTypeFactory.cs

                public static AnsiStringSqlType GetAnsiString(int length)
                {
                        return GetTypeWithLen<AnsiStringSqlType> (length, l => new AnsiStringSqlType(l));
                }



Clone Instance
2
Line Count
3
Source Line
73
Source File
src/NHibernate/SqlTypes/SqlTypeFactory.cs

                public static BinarySqlType GetBinary(int length)
                {
                        return GetTypeWithLen<BinarySqlType> (length, l => new BinarySqlType(l));
                }



Clone Instance
3
Line Count
3
Source Line
78
Source File
src/NHibernate/SqlTypes/SqlTypeFactory.cs

                public static BinaryBlobSqlType GetBinaryBlob(int length)
                {
                        return GetTypeWithLen<BinaryBlobSqlType> (length, l => new BinaryBlobSqlType(l));
                }



Clone Instance
4
Line Count
3
Source Line
83
Source File
src/NHibernate/SqlTypes/SqlTypeFactory.cs

                public static StringSqlType GetString(int length)
                {
                        return GetTypeWithLen<StringSqlType> (length, l => new StringSqlType(l));
                }



Clone Instance
5
Line Count
3
Source Line
88
Source File
src/NHibernate/SqlTypes/SqlTypeFactory.cs

                public static StringClobSqlType GetStringClob(int length)
                {
                        return GetTypeWithLen<StringClobSqlType> (length, l => new StringClobSqlType(l));
                }



Clone AbstractionParameter Count: 2Parameter Bindings

public static [[#variable501ef580]] [[#variable4612c100]](int length)
{
   return GetTypeWithLen< [[#variable501ef580]]> (length, l => new [[#variable501ef580]](l));
}

 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#501ef580]]
AnsiStringSqlType 
12[[#501ef580]]
BinarySqlType 
13[[#501ef580]]
BinaryBlobSqlType 
14[[#501ef580]]
StringSqlType 
15[[#501ef580]]
StringClobSqlType 
21[[#4612c100]]
GetAnsiString 
22[[#4612c100]]
GetBinary 
23[[#4612c100]]
GetBinaryBlob 
24[[#4612c100]]
GetString 
25[[#4612c100]]
GetStringClob