1 6 7 package org.roller.config.runtime; 8 9 import java.util.ArrayList ; 10 import java.util.List ; 11 12 13 18 public class RuntimeConfigDefs { 19 20 private List configDefs = null; 21 22 23 public RuntimeConfigDefs() { 24 this.configDefs = new ArrayList (); 25 } 26 27 public RuntimeConfigDefs(List configs) { 28 this.configDefs = configs; 29 } 30 31 32 public boolean addConfigDef(ConfigDef config) { 33 return this.configDefs.add(config); 34 } 35 36 public boolean removeConfigDef(ConfigDef config) { 37 return this.configDefs.remove(config); 38 } 39 40 41 public List getConfigDefs() { 42 return configDefs; 43 } 44 45 public void setConfigDefs(List configDefs) { 46 this.configDefs = configDefs; 47 } 48 49 } 50 | Popular Tags |