A better Properties class. This implementation class is thread-safe.
3536373839404142
protected final Properties props; protected final Attributes attribs; public LoadList() { list = new ArrayList<PropertiesReference>(); props = new PropertiesImpl(); attribs = new Attributes(); }
4142434445464748
attribs = new Attributes(); } public LoadList(Attributes attribs) { list = new ArrayList<PropertiesReference>(); props = new PropertiesImpl(); this.attribs = attribs; }