CloneSet2842


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
9220.969interface_member_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
19197
src/NHibernate/Persister/Collection/ICollectionPersister.cs
29213
src/NHibernate/Persister/Collection/ICollectionPersister.cs
Clone Instance
1
Line Count
9
Source Line
197
Source File
src/NHibernate/Persister/Collection/ICollectionPersister.cs

                /// <summary>
                /// (Re)create the collection's persistent state
                /// </summary>
                /// <param name="collection"></param>
                /// <param name="key"></param>
                /// <param name="session"></param>
                void Recreate(IPersistentCollection collection, object key, ISessionImplementor session);

                /// <summary>
                /// Delete the persistent state of any elements that were removed from the collection
                /// </summary>
                /// <param name="collection"></param>
                /// <param name="key"></param>
                /// <param name="session"></param>
                void DeleteRows(IPersistentCollection collection, object key, ISessionImplementor session);


Clone Instance
2
Line Count
9
Source Line
213
Source File
src/NHibernate/Persister/Collection/ICollectionPersister.cs

                /// <summary>
                /// Update the persistent state of any elements that were modified
                /// </summary>
                /// <param name="collection"></param>
                /// <param name="key"></param>
                /// <param name="session"></param>
                void UpdateRows(IPersistentCollection collection, object key, ISessionImplementor session);

                /// <summary>
                /// Insert the persistent state of any new collection elements
                /// </summary>
                /// <param name="collection"></param>
                /// <param name="key"></param>
                /// <param name="session"></param>
                void InsertRows(IPersistentCollection collection, object key, ISessionImplementor session);


Clone AbstractionParameter Count: 2Parameter Bindings

/// <summary>
/// (Re)create the collection's persistent state
/// Update the persistent state of any elements that were modified
/// </summary>
/// <param name="collection"></param>
/// <param name="key"></param>
/// <param name="session"></param>
void [[#variable47064700]](IPersistentCollection collection, object key, ISessionImplementor session);
/// <summary>
/// Delete the persistent state of any elements that were removed from the collection
/// Insert the persistent state of any new collection elements
/// </summary>
/// <param name="collection"></param>
/// <param name="key"></param>
/// <param name="session"></param>
void [[#variable47064e40]](IPersistentCollection collection, object key, ISessionImplementor session);
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#47064700]]
Recreate 
12[[#47064700]]
UpdateRows 
21[[#47064e40]]
DeleteRows 
22[[#47064e40]]
InsertRows