Searched defs:handleGetObject (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/test/java/util/ResourceBundle/
H A DTestResource_fr.java64 public Object handleGetObject(String key) throws MissingResourceException { method in class:TestResource_fr
H A DKeySetTest.java87 // Prepare for the handleGetObject call
90 m = clazz.getMethod("handleGetObject", String.class);
101 // handleGetObject() doesn't look up its parent bundles.
102 protected Object handleGetObject(String key) { method in class:KeySetTest.TestBundle
106 throw new RuntimeException("handleGetObject error", e);
/openjdk7/jdk/src/share/classes/java/util/
H A DListResourceBundle.java120 // Implements java.util.ResourceBundle.handleGetObject; inherits javadoc specification.
121 public final Object handleGetObject(String key) { method in class:ListResourceBundle
H A DPropertyResourceBundle.java152 // Implements java.util.ResourceBundle.handleGetObject; inherits javadoc specification.
153 public Object handleGetObject(String key) { method in class:PropertyResourceBundle
H A DResourceBundle.java183 * subclass. Your subclasses must override two methods: <code>handleGetObject</code>
225 * public Object handleGetObject(String key) {
244 * public Object handleGetObject(String key) {
276 protected Object handleGetObject(String key) { return null; }
378 * {@link #handleGetObject(java.lang.String) handleGetObject}.
389 Object obj = handleGetObject(key);
1714 protected abstract Object handleGetObject(String key); method in class:ResourceBundle
1771 * for the ones for which the {@link #handleGetObject(String)
1772 * handleGetObject} metho
[all...]
/openjdk7/jdk/src/share/classes/sun/util/resources/
H A DTimeZoneNamesBundle.java53 * the string arrays returned by <code>handleGetObject</code>.
74 public Object handleGetObject(String key) { method in class:TimeZoneNamesBundle
75 String[] contents = (String[]) super.handleGetObject(key);
H A DOpenListResourceBundle.java56 * This class leaves handleGetObject non-final, and
68 // Implements java.util.ResourceBundle.handleGetObject; inherits javadoc specification.
69 public Object handleGetObject(String key) { method in class:OpenListResourceBundle
/openjdk7/jdk/test/java/util/ResourceBundle/Control/
H A DXMLResourceBundleTest.java103 protected Object handleGetObject(String key) { method in class:XMLResourceBundleTest.XMLResourceBundle
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/
H A DAbstractResourceBundle.java106 * implement handleGetObject() using delegate getBundle(). Uses
108 * ResourceBundle.handleGetObject(). Happily, this means parent tree
111 * Implements java.util.ResourceBundle.handleGetObject; inherits that
114 * @see java.util.ResourceBundle#handleGetObject(String)
116 protected Object handleGetObject(String key) { method in class:AbstractResourceBundle
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJdbcRowSetResourceBundle.java151 public Object handleGetObject(String key) { method in class:JdbcRowSetResourceBundle
152 return propResBundle.handleGetObject(key);

Completed in 43 milliseconds