Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package edg;
import java.util.Arrays;
public class LDASTNodeInfo
{
private String file;
private String className;
private final long line;
private final String construction;
private final boolean isExpression;
private Object[] info;
public LDASTNodeInfo(long line, String construction, Object... info)
{
this(null, null, line, false, construction, info);
}
public LDASTNodeInfo(long line, boolean expression, String construction, Object... info)
{
this(null, null, line, expression, construction, info);
}
public LDASTNodeInfo(String file, long line, String construction, Object... info)
{
this(file, null, line, false, construction, info);
}
public LDASTNodeInfo(String file, long line, boolean expression, String construction, Object... info)
{
this(file, null, line, expression, construction, info);
}
public LDASTNodeInfo(String file, String className, long line, String construction, Object... info)
{
this(file, className, line, false, construction, info);
}
public LDASTNodeInfo(String file, String className, long line, boolean expression, String construction, Object... info)
{
this.file = file;
this.className = className;
this.line = line;
this.construction = construction;
this.isExpression = expression;
this.info = info;
}
public LDASTNodeInfo(LDASTNodeInfo info, boolean expression) {
this(info.file, info.className, info.line, expression, info.construction, Arrays.copyOf(info.info, info.info.length));
}
public String getFile()
{
return this.file;
}
public String getClassName()
{
return this.className;
}
public long getLine()
{
return this.line;
}
public String getConstruction()
{
return this.construction;
}
public boolean isExpression()
{
return this.isExpression;
}
public Object[] getInfo()
{
return this.info;
}
public void setFile(String file)
{
this.file = file;
}
public void setClassName(String className)
{
this.className = className;
}
public void addInfo(Object o)
{
int lastIndex = this.info.length;
Object[] newInfo = new Object[lastIndex+1];
for (int i = 0; i < lastIndex; i++)
newInfo[i] = this.info[i];
newInfo[lastIndex] = o;
this.info = newInfo;
}
}