public void ToSource(StringBuilder sb) { if (attributes != null) { attributes.ToSource(sb); this.NewLine(sb); } this.TraceModifiers(this.modifiers, sb); sb.append("const "); this.type.ToSource(sb); sb.append(" "); String comma = ""; for (int i = 0; i < this.names.size(); i++) { sb.append(comma); comma = ", "; this.names.get(i).ToSource(sb); } if (this.Value != null) { sb.append(" = "); this.Value.ToSource(sb); } sb.append(";"); this.NewLine(sb); }
protected void WriteLocalSource(StringBuilder sb, String kind) { if (attributes != null) { attributes.ToSource(sb); this.NewLine(sb); } TraceModifiers(Modifiers, sb); sb.append(kind + " "); Name.ToSource(sb); sb.append(" "); if (BaseClasses != null && BaseClasses.size() > 1) { sb.append(": "); String comma = ""; for(TypeNode bcls:BaseClasses) { sb.append(comma); comma = ", "; bcls.ToSource(sb); } } this.NewLine(sb); sb.append("{"); indent++; this.NewLine(sb); if(Constants != null) { Constants.ToSource(sb); } if(Fields != null) { Fields.ToSource(sb); } if(Properties != null) { Properties.ToSource(sb); } if (Constructors != null) { Constructors.ToSource(sb); } if (Methods != null) { Methods.ToSource(sb); } if (Indexers != null) { Indexers.ToSource(sb); } if (Events != null) { Events.ToSource(sb); } if (Destructors != null) { Destructors.ToSource(sb); } indent--; this.NewLine(sb); sb.append("}"); this.NewLine(sb); }
Clone fragments detected by clone detection tool
File path: /ArgoUML-0.34-src/argouml-csharp/src/org/argouml/language/csharp/importer/csparser/members/ConstantNode.java File path: /ArgoUML-0.34-src/argouml-csharp/src/org/argouml/language/csharp/importer/csparser/types/ClassNode.java
Method name: void ToSource(StringBuilder) Method name: void WriteLocalSource(StringBuilder, String)
Number of AST nodes: 4 Number of AST nodes: 4
1
public void ToSource(StringBuilder sb)
1
protected void WriteLocalSource(StringBuilder sb, String kind)
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
			this.TraceModifiers(this.modifiers, sb);
8
			TraceModifiers(Modifiers, sb);
9
			sb.append("const ");
9
10
10
			sb.append(kind + " ");
11
			this.type.ToSource(sb);
11
			Name.ToSource(sb);
12
			sb.append(" ");
12
			sb.append(" ");
13
13
14
			String comma = "";
14
			if (BaseClasses != null && BaseClasses.size() > 1)
15
			for (int i = 0; i < this.names.size(); i++)
15
			{
16
			{
16
				sb.append(": ");
17
				sb.append(comma);
17
				String comma = "";
18
				comma = ", ";
18
				for(TypeNode bcls:BaseClasses)
19
				this.names.get(i).ToSource(sb);
19
				{
20
			}
20
					sb.append(comma);
21
21
					comma = ", ";
22
			if (this.Value != null)
22
					bcls.ToSource(sb);
23
			{
23
				}
24
				sb.append(" = ");
24
			}
25
				this.Value.ToSource(sb);
25
26
			}
26
			this.NewLine(sb);
27
27
			sb.append("{");
28
			sb.append(";");
28
			indent++;
29
			this.NewLine(sb);
29
			this.NewLine(sb);
30
30
31
        }
31
			if(Constants != null)
32
			{
33
				Constants.ToSource(sb);
34
			}
35
			if(Fields != null)
36
			{
37
				Fields.ToSource(sb);
38
			}
39
			if(Properties != null)
40
			{
41
				Properties.ToSource(sb);
42
			}
43
			if (Constructors != null)
44
			{
45
				Constructors.ToSource(sb);
46
			}
47
			if (Methods != null)
48
			{
49
				Methods.ToSource(sb);
50
			}
51
			if (Indexers != null)
52
			{
53
				Indexers.ToSource(sb);
54
			}
55
			if (Events != null)
56
			{
57
				Events.ToSource(sb);
58
			}
59
			if (Destructors != null)
60
			{
61
				Destructors.ToSource(sb);
62
			}
63
64
			indent--;
65
			this.NewLine(sb);
66
			sb.append("}");
67
			this.NewLine(sb);
68
69
        }
  1. {Non-refactorable}
    Mapping Summary
    Number of mapped statements4
    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.500
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    9
    for (int i = 0; i < this.names.size(); i++)
    9
    for (int i = 0; i < this.names.size(); i++)
    11
    for (TypeNode bcls : BaseClasses)
    Differences
    Expression1Expression2Difference
    this.namesBaseClassesTYPE_COMPATIBLE_REPLACEMENT
    11
    for (TypeNode bcls : BaseClasses)
    10
    sb.append(comma);
    12
    sb.append(comma);
    11
    comma = ", ";
    13
    comma = ", ";
    12
    this.names.get(i).ToSource(sb);
    12
    this.names.get(i).ToSource(sb);
    14
    bcls.ToSource(sb);
    Differences
    Expression1Expression2Difference
    this.names.get(i)bclsTYPE_COMPATIBLE_REPLACEMENT
    Preondition Violations
    Expression this.names.get(i) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    Expression bcls cannot be parameterized, because it has dependencies to/from statements that will be extracted
    14
    bcls.ToSource(sb);
    Precondition Violations (2)
    Row Violation
    1Expression this.names.get(i) cannot be parameterized, because it has dependencies to/from statements that will be extracted
    2Expression bcls cannot be parameterized, because it has dependencies to/from statements that will be extracted