org.jdbf.castor
Class Messages.EmptyResourceBundle

java.lang.Object
java.util.ResourceBundle
org.jdbf.castor.Messages.EmptyResourceBundle
- All Implemented Interfaces:
- java.util.Enumeration
- Enclosing class:
- Messages
- static class Messages.EmptyResourceBundle
- extends java.util.ResourceBundle
- implements java.util.Enumeration
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Messages.EmptyResourceBundle
Messages.EmptyResourceBundle()
getKeys
public java.util.Enumeration getKeys()
- Description copied from class:
java.util.ResourceBundle
- This method should return all keys for which a resource exists; you
should include the enumeration of any parent's keys, after filtering out
duplicates.
handleGetObject
protected java.lang.Object handleGetObject(java.lang.String name)
- Description copied from class:
java.util.ResourceBundle
- Override this method to provide the resource for a keys. This gets
called by
getObject. If you don't have a resource
for the given key, you should return null instead throwing a
MissingResourceException. You don't have to ask the parent, getObject()
already does this; nor should you throw a MissingResourceException.
hasMoreElements
public boolean hasMoreElements()
- Description copied from interface:
java.util.Enumeration
- Tests whether there are elements remaining in the enumeration.
- Specified by:
hasMoreElements in interface java.util.Enumeration
nextElement
public java.lang.Object nextElement()
- Description copied from interface:
java.util.Enumeration
- Obtain the next element in the enumeration.
- Specified by:
nextElement in interface java.util.Enumeration