CloneSet1321


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
15210.993class_member_declarations[4]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
115157
src/NHibernate/Properties/FieldAccessor.cs
215241
src/NHibernate/Properties/FieldAccessor.cs
Clone Instance
1
Line Count
15
Source Line
157
Source File
src/NHibernate/Properties/FieldAccessor.cs

                        private readonly FieldInfo field;

                        private readonly System.Type clazz;

                        private readonly string name;

                        /// <summary>
                        /// Initializes a new instance of <see cref="FieldGetter"/>.
                        /// </summary>
                        /// <param name="clazz">The <see cref="System.Type"/> that contains the field to use for the Property <c>get</c>.</param>
                        /// <param name="field">The <see cref="FieldInfo"/> for reflection.</param>
                        /// <param name="name">The name of the Field.</param>
                        public FieldGetter(FieldInfo field, System.Type clazz, string name)
                        {
                                this.field = field;
                                this.clazz = clazz;
                                this.name = name;
                        }



Clone Instance
2
Line Count
15
Source Line
241
Source File
src/NHibernate/Properties/FieldAccessor.cs

                        private readonly FieldInfo field;

                        private readonly System.Type clazz;

                        private readonly string name;

                        /// <summary>
                        /// Initializes a new instance of <see cref="FieldSetter"/>.
                        /// </summary>
                        /// <param name="clazz">The <see cref="System.Type"/> that contains the Field to use for the Property <c>set</c>.</param>
                        /// <param name="field">The <see cref="FieldInfo"/> for reflection.</param>
                        /// <param name="name">The name of the Field.</param>
                        public FieldSetter(FieldInfo field, System.Type clazz, string name)
                        {
                                this.field = field;
                                this.clazz = clazz;
                                this.name = name;
                        }



Clone AbstractionParameter Count: 1Parameter Bindings

private readonly FieldInfo field;

private readonly System.Type clazz;

private readonly string name;

/// <summary>
/// Initializes a new instance of <see cref="FieldSetter"/>.
/// Initializes a new instance of <see cref="FieldGetter"/>.
/// </summary>
/// <param name="clazz">The <see cref="System.Type"/> that contains the Field to use for the Property <c>set</c>.</param>
/// <param name="clazz">The <see cref="System.Type"/> that contains the field to use for the Property <c>get</c>.</param>
/// <param name="field">The <see cref="FieldInfo"/> for reflection.</param>
/// <param name="name">The name of the Field.</param>
public [[#variable4c86fb80]](FieldInfo field, System.Type clazz, string name)
{
   this.field = field;
   this.clazz = clazz;
   this.name = name;
}

 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#4c86fb80]]
FieldSetter 
12[[#4c86fb80]]
FieldGetter