add java.util.Properties.propertyNames() method

This commit is contained in:
Zsombor Gegesy 2010-08-15 03:13:09 +02:00 committed by Joel Dice
parent 1daa93d3c4
commit 4dc05844df

View File

@ -48,6 +48,10 @@ public class Properties extends Hashtable {
public Object setProperty(String key, String value) {
return put(key, value);
}
public Enumeration<?> propertyNames() {
return keys();
}
private static class Parser {
private StringBuilder key = null;