CloneSet1656


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
13210.991class_member_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11045
src/NHibernate/UnresolvableObjectException.cs
21323
src/NHibernate/WrongClassException.cs
Clone Instance
1
Line Count
10
Source Line
45
Source File
src/NHibernate/UnresolvableObjectException.cs

                public UnresolvableObjectException(string message, object identifier, string entityName)
                        : base(message)
                {
                        this.identifier = identifier;
                        this.entityName = entityName;
                }

                public object Identifier
                {
                        get { return identifier;
                            }
                }



Clone Instance
2
Line Count
13
Source Line
23
Source File
src/NHibernate/WrongClassException.cs

                /// <summary>
                /// Initializes a new instance of the <see cref="WrongClassException"/> class.
                /// </summary>
                /// <param name="message">The message that describes the error. </param>
                /// <param name="identifier">The identifier of the object that was being loaded.</param>
                /// <param name="entityName">The name of entity that NHibernate was told to load.</param>
                public WrongClassException(string message, object identifier, string entityName)
                        : base(message)
                {
                        this.identifier = identifier;
                        this.entityName = entityName;
                }

                /// <summary>
                /// Gets the identifier of the object that was being loaded.
                /// </summary>
                public object Identifier
                {
                        get { return identifier;
                            }
                }



Clone AbstractionParameter Count: 1Parameter Bindings

/// <summary>
/// Initializes a new instance of the <see cref="WrongClassException"/> class.
/// </summary>
/// <param name="message">The message that describes the error. </param>
/// <param name="identifier">The identifier of the object that was being loaded.</param>
/// <param name="entityName">The name of entity that NHibernate was told to load.</param>
public [[#variable284f9de0]](string message, object identifier, string entityName): base(message)
{
   this.identifier = identifier;
   this.entityName = entityName;
}

/// <summary>
/// Gets the identifier of the object that was being loaded.
/// </summary>
public object Identifier
{
   get
   {
      return identifier;
   }
}

 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#284f9de0]]
WrongClassException 
12[[#284f9de0]]
UnresolvableObjectException