Merge pull request #238 from pcarrier/PsPN

CP: Properties.stringPropertyNames()
This commit is contained in:
Joel Dice 2014-04-20 19:24:10 -06:00
commit 4c3e0f3421

View File

@ -58,6 +58,10 @@ public class Properties extends Hashtable {
return keys();
}
public Set<String> stringPropertyNames() {
return new HashSet(keySet());
}
private abstract static class Parser {
private StringBuilder key = null;
private StringBuilder value = null;