| package com.google.gwt.examples.i18n; | |
| import com.google.gwt.i18n.client.Messages; | |
| public interface GameStatusMessages extends Messages { | |
| /** | |
| * @param username the name of a player | |
| * @param numTurns the number of turns remaining | |
| * @return a message specifying the remaining turns for a player | |
| */ | |
| String turnsLeft(String username, int numTurns); | |
| /** | |
| * @param numPoints the number of points | |
| * @return a message describing the current score for the current player | |
| */ | |
| String currentScore(int numPoints); | |
| } |