home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- import java.io.IOException;
- import java.io.InputStream;
-
- public class PropertyResourceBundle extends ResourceBundle {
- private Properties lookup = new Properties();
-
- public PropertyResourceBundle(InputStream var1) throws IOException {
- this.lookup.load(var1);
- }
-
- public Object handleGetObject(String var1) {
- Object var2 = this.lookup.get(var1);
- return var2;
- }
-
- public Enumeration getKeys() {
- Object var1 = null;
- if (super.parent != null) {
- Enumeration var2 = this.lookup.keys();
- Enumeration var3 = super.parent.getKeys();
- var1 = new 1(var2, var3, this);
- } else {
- var1 = this.lookup.keys();
- }
-
- return (Enumeration)var1;
- }
- }
-