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

net.sourceforge.openutils.mgnlmessages.i18n.EmptyResourceBundle Maven / Gradle / Ivy

package net.sourceforge.openutils.mgnlmessages.i18n;

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


/**
 * @author molaschi
 * @version $Id: $
 */
public class EmptyResourceBundle extends ResourceBundle
{

    /**
     *
     */
    public EmptyResourceBundle()
    {
        super();
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Enumeration getKeys()
    {

        return new Enumeration()
        {

            /**
             * {@inheritDoc}
             */
            public boolean hasMoreElements()
            {
                return false;
            }

            /**
             * {@inheritDoc}
             */
            public String nextElement()
            {
                return null;
            }

        };
    }

    /**
     * {@inheritDoc}
     */
    @Override
    protected Object handleGetObject(String arg0)
    {
        return null;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy