Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
3 | 2 | 2 | 0.959 | class_member_declaration |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 3 | 285 | src/NHibernate/Criterion/Projections.cs |
2 | 3 | 297 | src/NHibernate/Criterion/Projections.cs |
| ||||
/// <summary> /// Calls the named <see cref="ISQLFunction"/> /// </summary> /// <param name="functionName">Name of the function.</param> /// <param name="type">The type.</param> /// <param name="projections">The projections.</param> /// <returns></returns> public static IProjection SqlFunction(string functionName, IType type, params IProjection [] projections) { return new SqlFunctionProjection(functionName, type, projections); } |
| ||||
/// <summary> /// Calls the specified <see cref="ISQLFunction"/> /// </summary> /// <param name="function">the function.</param> /// <param name="type">The type.</param> /// <param name="projections">The projections.</param> /// <returns></returns> public static IProjection SqlFunction(ISQLFunction function, IType type, params IProjection[] projections) { return new SqlFunctionProjection(function, type, projections); } |
| |||
/// <summary> /// Calls the specified <see cref="ISQLFunction"/> /// Calls the named <see cref="ISQLFunction"/> /// </summary> /// <param name="function">the function.</param> /// <param name="functionName">Name of the function.</param> /// <param name="type">The type.</param> /// <param name="projections">The projections.</param> /// <returns></returns> public static IProjection SqlFunction( [[#variable51e65040]] [[#variable51e65ce0]], IType type, params IProjection[] projections) { return new SqlFunctionProjection( [[#variable51e65ce0]], type, projections); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#51e65040]] | ISQLFunction |
1 | 2 | [[#51e65040]] | string |
2 | 1 | [[#51e65ce0]] | function |
2 | 2 | [[#51e65ce0]] | functionName |