CP: Properties.stringPropertyNames()

This commit is contained in:
Pierre Carrier 2014-04-20 04:17:08 -07:00
parent 70b5ea6838
commit a36176baca

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;