CloneSet700


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6330.972class_member_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
1611
src/NHibernate/Util/PropertiesHelper.cs
2526
src/NHibernate/Util/PropertiesHelper.cs
3533
src/NHibernate/Util/PropertiesHelper.cs
Clone Instance
1
Line Count
6
Source Line
11
Source File
src/NHibernate/Util/PropertiesHelper.cs

                public static bool GetBoolean(string property, IDictionary<string, string> properties, bool defaultValue)
                {
                        string toParse;
                        properties.TryGetValue(property, out toParse);

                        return toParse == null ? defaultValue:  bool.Parse(toParse);
                }



Clone Instance
2
Line Count
5
Source Line
26
Source File
src/NHibernate/Util/PropertiesHelper.cs

                public static int GetInt32(string property, IDictionary<string, string> properties, int defaultValue)
                {
                        string toParse;
                        properties.TryGetValue(property, out toParse);
                        return toParse == null ? defaultValue:  int.Parse(toParse);
                }



Clone Instance
3
Line Count
5
Source Line
33
Source File
src/NHibernate/Util/PropertiesHelper.cs

                public static long GetInt64(string property, IDictionary<string, string> properties, long defaultValue)
                {
                        string toParse;
                        properties.TryGetValue(property, out toParse);
                        return toParse == null ? defaultValue:  long.Parse(toParse);
                }



Clone AbstractionParameter Count: 3Parameter Bindings

public static [[#variable2d079940]] [[#variable2d078840]](string property, IDictionary<string, string> properties, [[#variable2d079940]]defaultValue)
{
   string toParse;
   properties.TryGetValue(property, out toParse);
   return toParse == null ?
          defaultValue: [[#variable2d079880]].Parse(toParse);
}

 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#2d079940]]
bool 
12[[#2d079940]]
int 
13[[#2d079940]]
long 
21[[#2d078840]]
GetBoolean 
22[[#2d078840]]
GetInt32 
23[[#2d078840]]
GetInt64 
31[[#2d079880]]
bool 
32[[#2d079880]]
int 
33[[#2d079880]]
long