1 | equalButton.setSelected(true);↵ | | |
|
2 | execState = state;↵ | | |
|
3 | } else if (state == SizeAssertion.NOTEQUAL) {↵ | | 1 | if (state == SizeAssertion.NOTEQUAL) {↵
|
4 | notequalButton.setSelected(true);↵ | | 2 | notequalButton.setSelected(true);↵
|
5 | execState = state;↵ | | 3 | execState = state;↵
|
6 | } else if (state == SizeAssertion.GREATERTHAN) {↵ | | 4 | } else if (state == SizeAssertion.GREATERTHAN) {↵
|
7 | greaterthanButton.setSelected(true);↵ | | 5 | greaterthanButton.setSelected(true);↵
|
8 | execState = state;↵ | | 6 | execState = state;↵
|
9 | } else if (state == SizeAssertion.LESSTHAN) {↵ | | 7 | } else if (state == SizeAssertion.LESSTHAN) {↵
|
10 | lessthanButton.setSelected(true);↵ | | 8 | lessthanButton.setSelected(true);↵
|
11 | execState = state;↵ | | 9 | execState = state;↵
|
12 | } else if (state == SizeAssertion.GREATERTHANEQUAL) {↵ | | 10 | } else if (state == SizeAssertion.GREATERTHANEQUAL) {↵
|
13 | greaterthanequalButton.setSelected(true);↵ | | 11 | greaterthanequalButton.setSelected(true);↵
|
14 | execState = state; | | 12 | execState = state;↵
|
| | | 13 | } else if (state == SizeAssertion.LESSTHANEQUAL) {↵
|
| | | 14 | lessthanequalButton.setSelected(true);↵
|
| | | 15 | execState = state;↵
|
| | | 16 | }
|