public void ToSource(StringBuilder sb) { if (attributes != null) { attributes.ToSource(sb); this.NewLine(sb); } TraceModifiers(modifiers, sb); type.ToSource(sb); sb.append(" "); if (interfaceType != null) { interfaceType.ToSource(sb); sb.append("."); } sb.append("this["); if (params != null) { String comma = ""; for (ParamDeclNode pdn: params) { sb.append(comma); comma = ", "; pdn.ToSource(sb); } } sb.append("]"); // start block this.NewLine(sb); sb.append("{"); indent++; this.NewLine(sb); if (getter != null) { getter.ToSource(sb); } if (setter != null) { setter.ToSource(sb); } indent--; this.NewLine(sb); sb.append("}"); this.NewLine(sb); }
public void ToSource(StringBuilder sb) { if (attributes != null) { attributes.ToSource(sb); this.NewLine(sb); } this.TraceModifiers(this.modifiers, sb); this.type.ToSource(sb); sb.append(" "); this.names.get(0).ToSource(sb); sb.append("("); if (params != null) { String comma = ""; for (int i = 0; i < params.size(); i++) { sb.append(comma); comma = ", "; params.get(i).ToSource(sb); } } sb.append(")"); this.NewLine(sb); statementBlock.ToSource(sb); }
Clone fragments detected by clone detection tool
File path: /ArgoUML-0.34-src/argouml-csharp/src/org/argouml/language/csharp/importer/csparser/members/IndexerNode.java File path: /ArgoUML-0.34-src/argouml-csharp/src/org/argouml/language/csharp/importer/csparser/members/MethodNode.java
Method name: void ToSource(StringBuilder) Method name: void ToSource(StringBuilder)
Number of AST nodes: 4 Number of AST nodes: 4
1
public  void ToSource(StringBuilder sb)
1
public  void ToSource(StringBuilder sb)
2
		{
2
		{
3
			if (attributes != null)
3
			if (attributes != null)
4
			{
4
			{
5
				attributes.ToSource(sb);
5
				attributes.ToSource(sb);
6
				this.NewLine(sb);
6
				this.NewLine(sb);
7
			}
7
			}
8
			TraceModifiers(modifiers, sb);
8
			this.TraceModifiers(this.modifiers, sb);
9
9
10
			type.ToSource(sb);
10
			this.type.ToSource(sb);
11
			sb.append(" ");
11
			sb.append(" ");
12
			if (interfaceType != null)
12
13
			{
13
			this.names.get(0).ToSource(sb);
14
				interfaceType.ToSource(sb);
14
			sb.append("(");
15
				sb.append(".");
15
16
			}
16
			if (params != null)
17
			sb.append("this[");
17
			{
18
			if (params != null)
18
				String comma = "";
19
			{
19
				for (int i = 0; i < params.size(); i++)
20
				String comma = "";
20
				{
21
				for (ParamDeclNode pdn: params)
21
					sb.append(comma);
22
				{
22
					comma = ", ";
23
					sb.append(comma);
23
					params.get(i).ToSource(sb);
24
					comma = ", ";
24
				}
25
					pdn.ToSource(sb);
25
			}
26
				}
26
27
			}
27
			sb.append(")");
28
			sb.append("]");
28
			this.NewLine(sb);
29
29
30
			// start block
30
			statementBlock.ToSource(sb);
31
			this.NewLine(sb);
31
		}
32
			sb.append("{");
33
			indent++;
34
			this.NewLine(sb);
35
36
			if (getter != null)
37
			{
38
				getter.ToSource(sb);
39
			}
40
			if (setter != null)
41
			{
42
				setter.ToSource(sb);
43
			}
44
45
			indent--;
46
			this.NewLine(sb);
47
			sb.append("}");
48
			this.NewLine(sb);
49
        }
  1. {Non-refactorable}
    Mapping Summary
    Number of mapped statements5
    Number of unmapped statements in the first code fragment0
    Number of unmapped statements in the second code fragment0
    Time elapsed for statement mapping (ms)0.0
    Similarity Score0.667
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    13
    for (ParamDeclNode pdn : params)
    11
    for (int i = 0; i < params.size(); i++)
    14
    sb.append(comma);
    12
    sb.append(comma);
    15
    comma = ", ";
    13
    comma = ", ";
    16
    pdn.ToSource(sb);
    16
    pdn.ToSource(sb);
    14
    params.get(i).ToSource(sb);
    Differences
    Expression1Expression2Difference
    pdnparams.get(i)TYPE_COMPATIBLE_REPLACEMENT
    Preondition Violations
    Expression pdn cannot be parameterized, because it has dependencies to/from statements that will be extracted
    14
    params.get(i).ToSource(sb);
    Precondition Violations (1)
    Row Violation
    1Expression pdn cannot be parameterized, because it has dependencies to/from statements that will be extracted