| Previous CloneSet | Next CloneSet | Back to Main Report |
| Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
|---|---|---|---|---|
| 27 | 4 | 1 | 0.995 | compilation_unit |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 27 | 1 | src/NHibernate.Test/GenericTest/BagGeneric/B.cs |
| 2 | 27 | 1 | src/NHibernate.Test/GenericTest/ListGeneric/B.cs |
| 3 | 27 | 1 | src/NHibernate.Test/GenericTest/MapGeneric/B.cs |
| 4 | 27 | 1 | src/NHibernate.Test/GenericTest/SetGeneric/B.cs |
| ||||
using System;
using System.Collections.Generic;
using System.Text;
namespace NHibernate.Test.GenericTest.BagGeneric
{
public class B
{
private int ? _id;
private string _name;
public B() {
}
public int ? Id
{
get { return _id;
}
set { _id = value;
}
}
public string Name
{
get { return _name;
}
set { _name = value;
}
}
}
}
|
| ||||
using System;
using System.Collections.Generic;
using System.Text;
namespace NHibernate.Test.GenericTest.ListGeneric
{
public class B
{
private int ? _id;
private string _name;
public B() {
}
public int ? Id
{
get { return _id;
}
set { _id = value;
}
}
public string Name
{
get { return _name;
}
set { _name = value;
}
}
}
}
|
| ||||
using System;
using System.Collections.Generic;
using System.Text;
namespace NHibernate.Test.GenericTest.MapGeneric
{
public class B
{
private int ? _id;
private string _name;
public B() {
}
public int ? Id
{
get { return _id;
}
set { _id = value;
}
}
public string Name
{
get { return _name;
}
set { _name = value;
}
}
}
}
|
| ||||
using System;
using System.Collections.Generic;
using System.Text;
namespace NHibernate.Test.GenericTest.SetGeneric
{
public class B
{
private int ? _id;
private string _name;
public B() {
}
public int ? Id
{
get { return _id;
}
set { _id = value;
}
}
public string Name
{
get { return _name;
}
set { _name = value;
}
}
}
}
|
| |||
using System;
using System.Collections.Generic;
using System.Text;
namespace NHibernate.Test.GenericTest. [[#variable2745b440]]
{
public class B
{
private int ? _id;
private string _name;
public B()
{
}
public int ? Id
{
get
{
return _id;
}
set
{
_id = value;
}
}
public string Name
{
get
{
return _name;
}
set
{
_name = value;
}
}
}
}
|
| CloneAbstraction |
| Parameter Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| 1 | 1 | [[#2745b440]] | BagGeneric |
| 1 | 2 | [[#2745b440]] | ListGeneric |
| 1 | 3 | [[#2745b440]] | MapGeneric |
| 1 | 4 | [[#2745b440]] | SetGeneric |