Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
3 | 5 | 2 | 0.952 | class_member_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 3 | 68 | src/NHibernate/SqlTypes/SqlTypeFactory.cs |
2 | 3 | 73 | src/NHibernate/SqlTypes/SqlTypeFactory.cs |
3 | 3 | 78 | src/NHibernate/SqlTypes/SqlTypeFactory.cs |
4 | 3 | 83 | src/NHibernate/SqlTypes/SqlTypeFactory.cs |
5 | 3 | 88 | src/NHibernate/SqlTypes/SqlTypeFactory.cs |
| ||||
public static AnsiStringSqlType GetAnsiString(int length) { return GetTypeWithLen<AnsiStringSqlType> (length, l => new AnsiStringSqlType(l)); } |
| ||||
public static BinarySqlType GetBinary(int length) { return GetTypeWithLen<BinarySqlType> (length, l => new BinarySqlType(l)); } |
| ||||
public static BinaryBlobSqlType GetBinaryBlob(int length) { return GetTypeWithLen<BinaryBlobSqlType> (length, l => new BinaryBlobSqlType(l)); } |
| ||||
public static StringSqlType GetString(int length) { return GetTypeWithLen<StringSqlType> (length, l => new StringSqlType(l)); } |
| ||||
public static StringClobSqlType GetStringClob(int length) { return GetTypeWithLen<StringClobSqlType> (length, l => new StringClobSqlType(l)); } |
| |||
public static [[#variable501ef580]] [[#variable4612c100]](int length) { return GetTypeWithLen< [[#variable501ef580]]> (length, l => new [[#variable501ef580]](l)); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#501ef580]] | AnsiStringSqlType |
1 | 2 | [[#501ef580]] | BinarySqlType |
1 | 3 | [[#501ef580]] | BinaryBlobSqlType |
1 | 4 | [[#501ef580]] | StringSqlType |
1 | 5 | [[#501ef580]] | StringClobSqlType |
2 | 1 | [[#4612c100]] | GetAnsiString |
2 | 2 | [[#4612c100]] | GetBinary |
2 | 3 | [[#4612c100]] | GetBinaryBlob |
2 | 4 | [[#4612c100]] | GetString |
2 | 5 | [[#4612c100]] | GetStringClob |