Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
21 | 2 | 1 | 0.987 | compilation_unit |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 21 | 1 | src/NHibernate/Event/IPostDatabaseOperationEventArgs.cs |
2 | 18 | 1 | src/NHibernate/Event/IPreDatabaseOperationEventArgs.cs |
| ||||
using NHibernate.Persister.Entity; namespace NHibernate.Event { /// <summary> /// Represents an operation we performed against the database. /// </summary> public interface IPostDatabaseOperationEventArgs : IDatabaseEventArgs { /// <summary> The entity involved in the database operation. </summary> object Entity { get; } /// <summary> The id to be used in the database operation. </summary> object Id { get; } /// <summary> /// The persister for the <see cref="Entity"/>. /// </summary> IEntityPersister Persister { get; } } } |
| ||||
using NHibernate.Persister.Entity; namespace NHibernate.Event { public interface IPreDatabaseOperationEventArgs : IDatabaseEventArgs { /// <summary> The entity involved in the database operation. </summary> object Entity { get; } /// <summary> The id to be used in the database operation. </summary> object Id { get; } /// <summary> /// The persister for the <see cref="Entity"/>. /// </summary> IEntityPersister Persister { get; } } } |
| |||
using NHibernate.Persister.Entity; namespace NHibernate.Event { /// <summary> /// Represents an operation we performed against the database. /// </summary> public interface [[#variable6f5e0c00]]: IDatabaseEventArgs { /// <summary> The entity involved in the database operation. </summary> object Entity { get; } /// <summary> The id to be used in the database operation. </summary> object Id { get; } /// <summary> /// The persister for the <see cref="Entity"/>. /// </summary> IEntityPersister Persister { get; } } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#6f5e0c00]] | IPostDatabaseOperationEventArgs |
1 | 2 | [[#6f5e0c00]] | IPreDatabaseOperationEventArgs |