01: /*
02: * Copyright (C) 2005-2007 JasperSoft http://www.jaspersoft.com
03: *
04: * This program is free software; you can redistribute it and/or modify
05: * it under the terms of the GNU General Public License as published by
06: * the Free Software Foundation; either version 2 of the License, or
07: * (at your option) any later version.
08: *
09: * This program is distributed WITHOUT ANY WARRANTY; and without the
10: * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11: * See the GNU General Public License for more details.
12: *
13: * You should have received a copy of the GNU General Public License
14: * along with this program; if not, see http://www.gnu.org/licenses/gpl.txt
15: * or write to:
16: *
17: * Free Software Foundation, Inc.,
18: * 59 Temple Place - Suite 330,
19: * Boston, MA USA 02111-1307
20: *
21: *
22: * SortField.java
23: *
24: * Created on November 13, 2006, 4:32 PM
25: *
26: * To change this template, choose Tools | Template Manager
27: * and open the template in the editor.
28: */
29:
30: package it.businesslogic.ireport;
31:
32: /**
33: *
34: * @author gtoffoli
35: */
36: public class SortField {
37:
38: private String fieldName = "";
39: private boolean desc = false;
40:
41: /** Creates a new instance of SortField */
42: public SortField() {
43: }
44:
45: public SortField(SortField sf) {
46:
47: this .fieldName = sf.getFieldName();
48: this .desc = sf.isDesc();
49: }
50:
51: public SortField(String fieldName, boolean desc) {
52:
53: this .fieldName = fieldName;
54: this .desc = desc;
55: }
56:
57: public SortField(String fieldName) {
58: this (fieldName, false);
59: }
60:
61: public String getFieldName() {
62: return fieldName;
63: }
64:
65: public void setFieldName(String fieldName) {
66: this .fieldName = fieldName;
67: }
68:
69: public boolean isDesc() {
70: return desc;
71: }
72:
73: public void setDesc(boolean desc) {
74: this.desc = desc;
75: }
76:
77: }
|