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

org.noos.xing.mydoggy.plaf.ui.util.DummyResourceBundle Maven / Gradle / Ivy

The newest version!
package org.noos.xing.mydoggy.plaf.ui.util;

import java.util.ResourceBundle;
import java.util.Enumeration;

/**
 * @author Angelo De Caro ([email protected])
 */
public class DummyResourceBundle extends ResourceBundle {

    protected Object handleGetObject(String key) {
        return key;
    }

    public Enumeration getKeys() {
        return new Enumeration() {
            public boolean hasMoreElements() {
                return false;
            }

            public String nextElement() {
                return null;
            }
        };
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy