1 package net.sf.jour.config; 2 3 import java.util.List; 4 import java.util.Vector; 5 6 public class Jour { 7 8 List aspect; 9 10 boolean isSetSerialVersionUID; 11 12 boolean debug; 13 14 public List getAspect() { 15 return aspect; 16 } 17 18 public void setAspect(List aspect) { 19 this.aspect = aspect; 20 } 21 22 public void addAspect(Aspect aspect) { 23 if (this.aspect == null) { 24 this.aspect = new Vector(); 25 } 26 this.aspect.add(aspect); 27 } 28 29 public boolean isDebug() { 30 return debug; 31 } 32 33 public void setDebug(boolean debug) { 34 this.debug = debug; 35 } 36 37 public boolean isSetSerialVersionUID() { 38 return isSetSerialVersionUID; 39 } 40 41 public void setSetSerialVersionUID(boolean setSerialVersionUID) { 42 this.isSetSerialVersionUID = setSerialVersionUID; 43 } 44 }