Author: [email protected]
Date: Wed Apr 1 21:23:03 2009
New Revision: 5160
Modified:
trunk/user/test/com/google/gwt/i18n/client/Moods.java
trunk/user/test/com/google/gwt/i18n/client/TestConstants.java
Log:
Build fix: missed a couple of old-style Javadoc annotations in tests.
Modified: trunk/user/test/com/google/gwt/i18n/client/Moods.java
==============================================================================
--- trunk/user/test/com/google/gwt/i18n/client/Moods.java (original)
+++ trunk/user/test/com/google/gwt/i18n/client/Moods.java Wed Apr 1
21:23:03 2009
@@ -24,26 +24,26 @@
/**
* The word for 'Happy'.
*
- * @gwt.key 123
* @return 'happy'
*/
+ @Key("123")
String getHappy();
/**
* Convenience method to get all key/value pairs associated with the mood
* array.
*
- * @gwt.key moods
* @return returnType of moods
*/
+ @Key("moods")
Map moodMap();
/**
* Gets the keys associated with moods. However note that this will not
* display well as the values are "Sad", "123".
*
- * @gwt.key moods
* @return array of moods
*/
+ @Key("moods")
String[] moodArray();
}
Modified: trunk/user/test/com/google/gwt/i18n/client/TestConstants.java
==============================================================================
--- trunk/user/test/com/google/gwt/i18n/client/TestConstants.java
(original)
+++ trunk/user/test/com/google/gwt/i18n/client/TestConstants.java Wed Apr
1 21:23:03 2009
@@ -59,9 +59,7 @@
float floatZero();
- /**
- * @gwt.key string
- */
+ @Key("string")
String getString();
int intMax();
--~--~---------~--~----~------------~-------~--~----~
http://groups.google.com/group/Google-Web-Toolkit-Contributors
-~----------~----~----~----~------~----~------~--~---