donaldp 02/05/12 07:24:16
Modified: all/src/scratchpad/org/apache/avalon/excalibur/i18n
Bundle.java
Log:
Fix some javadoc errors
Made Role string derived from classname.
Revision Changes Path
1.9 +5 -6
jakarta-avalon-excalibur/all/src/scratchpad/org/apache/avalon/excalibur/i18n/Bundle.java
Index: Bundle.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/all/src/scratchpad/org/apache/avalon/excalibur/i18n/Bundle.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- Bundle.java 10 May 2002 02:51:13 -0000 1.8
+++ Bundle.java 12 May 2002 14:24:16 -0000 1.9
@@ -13,12 +13,11 @@
* This is the interface of the ResourceBundle, for used for i18n support.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Neeme Praks</a>
- * @version CVS $Revision: 1.8 $ $Date: 2002/05/10 02:51:13 $ $Author:
donaldp $
+ * @version CVS $Revision: 1.9 $ $Date: 2002/05/12 14:24:16 $ $Author:
donaldp $
*/
public interface Bundle
{
-
- String ROLE = "org.apache.avalon.excalibur.i18n.Bundle";
+ String ROLE = Bundle.class.getName();
/**
* Get the bundle info.
@@ -54,7 +53,7 @@
*
* @param key key
* @return value
- * @throws MissingResourceException if value was not found
+ * @throws java.util.MissingResourceException if value was not found
*/
String getString( String key );
@@ -64,7 +63,7 @@
* @param key key
* @param values map with variable values
* @return value with variable values substituted
- * @throws MissingResourceException if value was not found
+ * @throws java.util.MissingResourceException if value was not found
*/
String getString( String key, Map values );
@@ -73,7 +72,7 @@
* "system view". Used to hide the implemented storage
* mechanism and/or XML file schema.
*
- * @param key user key
+ * @param userKey user key
* @return system key
*/
String convertKey( String userKey );
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>