blob: 8ebe10067ecd2fe430a5a8fd7438d7dfb4dabc9d (
plain)
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
|
/*
@VaadinApache2LicenseForJavaFiles@
*/
package com.vaadin.data.util.sqlcontainer.query;
import java.io.Serializable;
/**
* OrderBy represents a sorting rule to be applied to a query made by the
* SQLContainer's QueryDelegate.
*
* The sorting rule is simple and contains only the affected column's name and
* the direction of the sort.
*/
public class OrderBy implements Serializable {
private String column;
private boolean isAscending;
/**
* Prevent instantiation without required parameters.
*/
@SuppressWarnings("unused")
private OrderBy() {
}
public OrderBy(String column, boolean isAscending) {
setColumn(column);
setAscending(isAscending);
}
public void setColumn(String column) {
this.column = column;
}
public String getColumn() {
return column;
}
public void setAscending(boolean isAscending) {
this.isAscending = isAscending;
}
public boolean isAscending() {
return isAscending;
}
}
|