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
package bil;
import com.google.gson.annotations.SerializedName;
public class Expression {
@SerializedName("mnemonic")
private String mnemonic;
@SerializedName("input0")
private Variable input0;
@SerializedName("input1")
private Variable input1;
@SerializedName("input2")
private Variable input2;
public Expression() {
}
public Expression(String mnemonic, Variable input0) {
this.setMnemonic(mnemonic);
this.setInput0(input0);
}
public Expression(String mnemonic, Variable input0, Variable input1) {
this.setMnemonic(mnemonic);
this.setInput0(input0);
this.setInput1(input1);
}
public Expression(String mnemonic, Variable input0, Variable input1, Variable input2) {
this.setMnemonic(mnemonic);
this.setInput0(input0);
this.setInput1(input1);
this.setInput2(input2);
}
public String getMnemonic() {
return mnemonic;
}
public void setMnemonic(String mnemonic) {
this.mnemonic = mnemonic;
}
public Variable getInput0() {
return input0;
}
public void setInput0(Variable input0) {
this.input0 = input0;
}
public Variable getInput1() {
return input1;
}
public void setInput1(Variable input1) {
this.input1 = input1;
}
public Variable getInput2() {
return input2;
}
public void setInput2(Variable input2) {
this.input2 = input2;
}
}