01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/chat/tags/sakai_2-4-1/chat-tool/tool/src/java/org/sakaiproject/chat2/tool/DecoratedSynopticOptions.java $
03: * $Id: DecoratedSynopticOptions.java 22615 2007-03-14 19:53:58Z chmaurer@iupui.edu $
04: ***********************************************************************************
05: *
06: * Copyright (c) 2007 The Sakai Foundation.
07: *
08: * Licensed under the Educational Community License, Version 1.0 (the "License");
09: * you may not use this file except in compliance with the License.
10: * You may obtain a copy of the License at
11: *
12: * http://www.opensource.org/licenses/ecl1.php
13: *
14: * Unless required by applicable law or agreed to in writing, software
15: * distributed under the License is distributed on an "AS IS" BASIS,
16: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17: * See the License for the specific language governing permissions and
18: * limitations under the License.
19: *
20: **********************************************************************************/
21:
22: /**
23: *
24: */package org.sakaiproject.chat2.tool;
25:
26: /**
27: * @author chrismaurer
28: *
29: */
30: public class DecoratedSynopticOptions {
31:
32: int days;
33: int items;
34: int chars;
35:
36: /**
37: * @return the chars
38: */
39: public int getChars() {
40: return chars;
41: }
42:
43: /**
44: * @param chars the chars to set
45: */
46: public void setChars(int chars) {
47: this .chars = chars;
48: }
49:
50: /**
51: * @return the days
52: */
53: public int getDays() {
54: return days;
55: }
56:
57: /**
58: * @param days the days to set
59: */
60: public void setDays(int days) {
61: this .days = days;
62: }
63:
64: /**
65: * @return the items
66: */
67: public int getItems() {
68: return items;
69: }
70:
71: /**
72: * @param items the items to set
73: */
74: public void setItems(int items) {
75: this.items = items;
76: }
77:
78: }
|