KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sourceforge > tracelog > config > UserConfig


1 package net.sourceforge.tracelog.config;
2
3 import java.io.Serializable JavaDoc;
4 import java.util.LinkedList JavaDoc;
5 import java.util.List JavaDoc;
6
7 public class UserConfig implements Serializable JavaDoc {
8     private static final long serialVersionUID = 7671161193586725920L;
9     private List JavaDoc<LogGroup> logGroups;
10     public String JavaDoc textEditorPath;
11
12     public UserConfig() {
13         this.textEditorPath = "";
14         this.logGroups = new LinkedList JavaDoc<LogGroup>();
15     }
16
17     /**
18      * @return the logGroups
19      */

20     public List JavaDoc<LogGroup> getLogGroups() {
21         return logGroups;
22     }
23
24     /**
25      * @param logGroups
26      * the logGroups to set
27      */

28     public void setLogGroups(List JavaDoc<LogGroup> logGroups) {
29         this.logGroups = logGroups;
30     }
31
32     /**
33      * @return the textEditorPath
34      */

35     public String JavaDoc getTextEditorPath() {
36         return textEditorPath;
37     }
38
39     /**
40      * @param textEditorPath
41      * the textEditorPath to set
42      */

43     public void setTextEditorPath(String JavaDoc textEditorPath) {
44         this.textEditorPath = textEditorPath.trim();
45     }
46
47 }
Popular Tags