CloneSet2644


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
3220.971class_member_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1384
src/NHibernate/Tool/hbm2ddl/SchemaExport.cs
23103
src/NHibernate/Tool/hbm2ddl/SchemaExport.cs
Clone Instance
1
Line Count
3
Source Line
84
Source File
src/NHibernate/Tool/hbm2ddl/SchemaExport.cs

                /// <summary>
                /// Run the schema creation script
                /// </summary>
                /// <param name="script"><see langword="true" /> if the ddl should be outputted in the Console.</param>
                /// <param name="export"><see langword="true" /> if the ddl should be executed against the Database.</param>
                /// <remarks>
                /// This is a convenience method that calls <see cref="Execute(bool, bool, bool)"/> and sets
                /// the justDrop parameter to false.
                /// </remarks>
                public void Create(bool script, bool export)
                {
                        Execute(script, export, false);
                }



Clone Instance
2
Line Count
3
Source Line
103
Source File
src/NHibernate/Tool/hbm2ddl/SchemaExport.cs

                /// <summary>
                /// Run the drop schema script
                /// </summary>
                /// <param name="script"><see langword="true" /> if the ddl should be outputted in the Console.</param>
                /// <param name="export"><see langword="true" /> if the ddl should be executed against the Database.</param>
                /// <remarks>
                /// This is a convenience method that calls <see cref="Execute(bool, bool, bool)"/> and sets
                /// the justDrop parameter to true.
                /// </remarks>
                public void Drop(bool script, bool export)
                {
                        Execute(script, export, true);
                }



Clone AbstractionParameter Count: 2Parameter Bindings

/// <summary>
/// Run the drop schema script
/// Run the schema creation script
/// </summary>
/// <param name="script"><see langword="true" /> if the ddl should be outputted in the Console.</param>
/// <param name="export"><see langword="true" /> if the ddl should be executed against the Database.</param>
/// <remarks>
/// This is a convenience method that calls <see cref="Execute(bool, bool, bool)"/> and sets
/// the justDrop parameter to true.
/// the justDrop parameter to false.
/// </remarks>
public void [[#variable584d5400]](bool script, bool export)
{
   Execute(script, export, [[#variable584d53a0]]);
}

 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#584d5400]]
Drop 
12[[#584d5400]]
Create 
21[[#584d53a0]]
true 
22[[#584d53a0]]
false