01: // Copyright (C) 2003,2004,2005 by Object Mentor, Inc. All rights reserved.
02: // Released under the terms of the GNU General Public License version 2 or later.
03: package fitnesse.components;
04:
05: import java.util.*;
06:
07: public class LogData implements Cloneable {
08: public String host;
09:
10: public GregorianCalendar time;
11:
12: public String requestLine;
13:
14: public int status;
15:
16: public int size;
17:
18: public Object clone() throws CloneNotSupportedException {
19: LogData newData = (LogData) super .clone();
20: newData.time = (GregorianCalendar) time.clone();
21:
22: return newData;
23: }
24: }
|