mirror of
https://github.com/corda/corda.git
synced 2025-01-08 14:03:06 +00:00
implement ResourceBundle.getKeys
This commit is contained in:
parent
6f1d02dae7
commit
63c78d9d84
@ -23,4 +23,8 @@ public class PropertyResourceBundle extends ResourceBundle {
|
|||||||
public Object handleGetObject(String key) {
|
public Object handleGetObject(String key) {
|
||||||
return map.get(key);
|
return map.get(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Enumeration<String> getKeys() {
|
||||||
|
return map.keys();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -118,4 +118,6 @@ public abstract class ResourceBundle {
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected abstract Object handleGetObject(String key);
|
protected abstract Object handleGetObject(String key);
|
||||||
|
|
||||||
|
public abstract Enumeration<String> getKeys();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user