1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package frame.object.data;
|
| import frame.data.DataPool;
| import frame.util.Util;
|
| public class OrderBy {
|
| private String value;
| private boolean empty;
|
| public OrderBy(DataPool dataPool) {
| value = dataPool.getString("orderby");
| empty = Util.isEmptyStr(value);
| }
|
| public String getValue() {
| return value;
| }
|
| public boolean isEmpty() {
| return empty;
| }
|
| }
|
|