1 package net.sourceforge.tracelog.config; 2 3 import java.io.Serializable ; 4 import java.util.LinkedList ; 5 import java.util.List ; 6 7 public class UserConfig implements Serializable { 8 private static final long serialVersionUID = 7671161193586725920L; 9 private List <LogGroup> logGroups; 10 public String textEditorPath; 11 12 public UserConfig() { 13 this.textEditorPath = ""; 14 this.logGroups = new LinkedList <LogGroup>(); 15 } 16 17 20 public List <LogGroup> getLogGroups() { 21 return logGroups; 22 } 23 24 28 public void setLogGroups(List <LogGroup> logGroups) { 29 this.logGroups = logGroups; 30 } 31 32 35 public String getTextEditorPath() { 36 return textEditorPath; 37 } 38 39 43 public void setTextEditorPath(String textEditorPath) { 44 this.textEditorPath = textEditorPath.trim(); 45 } 46 47 } | Popular Tags |