| Previous CloneSet | Next CloneSet | Back to Main Report |
| Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
|---|---|---|---|---|
| 10 | 2 | 3 | 0.955 | class_member_declarations[2] |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 14 | 256 | src/NHibernate.DomainModel/Baz.cs |
| 2 | 10 | 136 | src/NHibernate.DomainModel/NHSpecific/BasicClass.cs |
| ||||
/// <summary>
/// Gets or sets the stringArray
/// </summary>
public string[] StringArray
{
get { return _stringArray;
}
set { _stringArray = value;
}
}
/// <summary>
/// Gets or sets the fooArray
/// </summary>
public FooProxy[] FooArray
{
get { return _fooArray;
}
set { _fooArray = value;
}
}
|
| ||||
public string[] StringArray
{
get { return _stringArray;
}
set { _stringArray = value;
}
}
public int[] Int32Array
{
get { return _int32Array;
}
set { _int32Array = value;
}
}
|
| |||
/// <summary>
/// Gets or sets the stringArray
/// </summary>
public string[] StringArray
{
get
{
return _stringArray;
}
set
{
_stringArray = value;
}
}
/// <summary>
/// Gets or sets the fooArray
/// </summary>
public [[#variable27eaf940]][] [[#variable27d7ce60]]
{
get
{
return [[#variable27d7ce40]];
}
set
{
[[#variable27d7ce40]]= value;
}
}
|
| CloneAbstraction |
| Parameter Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| 1 | 1 | [[#27eaf940]] | int |
| 1 | 2 | [[#27eaf940]] | FooProxy |
| 2 | 1 | [[#27d7ce60]] | Int32Array |
| 2 | 2 | [[#27d7ce60]] | FooArray |
| 3 | 1 | [[#27d7ce40]] | _int32Array |
| 3 | 2 | [[#27d7ce40]] | _fooArray |