All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.util.PropertyResourceBundle Maven / Gradle / Ivy

The newest version!
package java.util;

import java.io.IOException;
import java.io.InputStream;

public class PropertyResourceBundle extends ResourceBundle {
    /**
     * @throws IOException
     */
    public PropertyResourceBundle(InputStream stream) throws IOException {}

    public Enumeration getKeys() {
        return null;
    }

    public Object handleGetObject(String key) {
        return null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy