G I T

G

guessCorrect(int) - Method in class GuessingGame
Checks to see if the player's choice matches the secret number
GuessingGame - class GuessingGame.
 
GuessingGame() - Constructor for class GuessingGame
Creates a new instance of the guessing game.
GuessingGame(int) - Constructor for class GuessingGame
Creates a new instance of the guessing game.
GuessingGame(int, int) - Constructor for class GuessingGame
Creates a new instance of the guessing game.
guessTooHigh(int) - Method in class GuessingGame
Checks to see if the player's choice is higher than the secret number
guessTooLow(int) - Method in class GuessingGame
Checks to see if the player's choice is lower than the secret number

I

inRange(int) - Method in class GuessingGame
Checks to see if the player's guess greater than or equal to the minimum possible value and less than or equal to the maximum possible value

T

toString() - Method in class GuessingGame
Returns a String representation of this GuessingGame which gives the secret number

G I T