| Previous CloneSet | Next CloneSet | Back to Main Report |
| Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
|---|---|---|---|---|
| 9 | 2 | 1 | 0.982 | class_member_declaration |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 9 | 324 | src/NHibernate/Mapping/Component.cs |
| 2 | 9 | 207 | src/NHibernate/Mapping/Property.cs |
| ||||
public MetaAttribute GetMetaAttribute(string attributeName)
{
if (MetaAttributes == null)
{
return null;
}
MetaAttribute result;
MetaAttributes.TryGetValue(attributeName, out result);
return result;
}
|
| ||||
public MetaAttribute GetMetaAttribute(string attributeName)
{
if (metaAttributes == null)
{
return null;
}
MetaAttribute result;
metaAttributes.TryGetValue(attributeName, out result);
return result;
}
|
| |||
public MetaAttribute GetMetaAttribute(string attributeName)
{
if ( [[#variable289b35a0]]== null)
{
return null;
}
MetaAttribute result;
[[#variable289b35a0]].TryGetValue(attributeName, out result);
return result;
}
|
| CloneAbstraction |
| Parameter Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| 1 | 1 | [[#289b35a0]] | MetaAttributes |
| 1 | 2 | [[#289b35a0]] | metaAttributes |