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
package term;
import bil.Expression;
import bil.Variable;
import com.google.gson.annotations.SerializedName;
public class Arg {
@SerializedName("var")
private Variable var;
@SerializedName("location")
private Expression location;
@SerializedName("intent")
private String intent;
public Arg() {
}
public Arg(Variable var, String intent) {
this.setVar(var);
this.setIntent(intent);
}
public Arg(Expression location, String intent) {
this.setLocation(location);
this.setIntent(intent);
}
public Variable getVar() {
return var;
}
public void setVar(Variable var) {
this.var = var;
}
public Expression getLocation() {
return location;
}
public void setLocation(Expression location) {
this.location = location;
}
public String getIntent() {
return intent;
}
public void setIntent(String intent) {
this.intent = intent;
}
}