01: //The contents of this file are subject to the Mozilla Public License Version 1.1
02: //(the "License"); you may not use this file except in compliance with the
03: //License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
04: //
05: //Software distributed under the License is distributed on an "AS IS" basis,
06: //WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
07: //for the specific language governing rights and
08: //limitations under the License.
09: //
10: //The Original Code is "The Columba Project"
11: //
12: //The Initial Developers of the Original Code are Frederik Dietz and Timo Stich.
13: //Portions created by Frederik Dietz and Timo Stich are Copyright (C) 2003.
14: //
15: //All Rights Reserved.
16:
17: package org.columba.mail.folder.mbox;
18:
19: public class MboxMessage {
20:
21: private Object uid;
22: private long start;
23: private long length;
24:
25: /**
26: * Constructs the MboxMessage.
27: *
28: * @param uid
29: * @param start
30: * @param length
31: */
32: public MboxMessage(Object uid, long start, long length) {
33: this .uid = uid;
34: this .start = start;
35: this .length = length;
36: }
37:
38: /**
39: * @return Returns the start.
40: */
41: public long getStart() {
42: return start;
43: }
44:
45: /**
46: * @param start The start to set.
47: */
48: public void setStart(long start) {
49: this .start = start;
50: }
51:
52: /**
53: * @return Returns the uid.
54: */
55: public Object getUid() {
56: return uid;
57: }
58:
59: /**
60: * @param uid The uid to set.
61: */
62: public void setUid(Object uid) {
63: this .uid = uid;
64: }
65:
66: /**
67: * @return Returns the length.
68: */
69: public long getLength() {
70: return length;
71: }
72:
73: /**
74: * @param length The length to set.
75: */
76: public void setLength(long length) {
77: this.length = length;
78: }
79: }
|