1 18 23 24 package org.apache.roller.config.runtime; 25 26 import java.util.ArrayList ; 27 import java.util.List ; 28 29 30 35 public class RuntimeConfigDefs { 36 37 private List configDefs = null; 38 39 40 public RuntimeConfigDefs() { 41 this.configDefs = new ArrayList (); 42 } 43 44 public RuntimeConfigDefs(List configs) { 45 this.configDefs = configs; 46 } 47 48 49 public boolean addConfigDef(ConfigDef config) { 50 return this.configDefs.add(config); 51 } 52 53 public boolean removeConfigDef(ConfigDef config) { 54 return this.configDefs.remove(config); 55 } 56 57 58 public List getConfigDefs() { 59 return configDefs; 60 } 61 62 public void setConfigDefs(List configDefs) { 63 this.configDefs = configDefs; 64 } 65 66 } 67 | Popular Tags |