Minor adjustments to Javadoc comments

This commit is contained in:
Caspian Rychlik-Prince 2002-08-20 14:55:29 +00:00
parent db9a312469
commit a5615938c9
4 changed files with 4 additions and 4 deletions

View File

@ -116,7 +116,7 @@ public class GamePad {
* "Create" the gamepad. The display must first have been created. The
* reason for this is so the gamepad has a window to "focus" in.
*
* @throw Exception if the gamepad could not be created for any reason
* @throws Exception if the gamepad could not be created for any reason
*/
public static void create() throws Exception {
if (created)

View File

@ -92,7 +92,7 @@ public class Joystick {
/**
* "Create" the joystick. The display must first have been created.
* @throw Exception if the joystick could not be created for any reason
* @throws Exception if the joystick could not be created for any reason
*/
public static void create() throws Exception {
if (created)

View File

@ -224,7 +224,7 @@ public class Keyboard {
* "Create" the keyboard. The display must first have been created. The
* reason for this is so the keyboard has a window to "focus" in.
*
* @throw Exception if the keyboard could not be created for any reason
* @throws Exception if the keyboard could not be created for any reason
*/
public static void create() throws Exception {
if (created)

View File

@ -90,7 +90,7 @@ public class Mouse {
/**
* "Create" the mouse. The display must first have been created.
* @throw Exception if the mouse could not be created for any reason
* @throws Exception if the mouse could not be created for any reason
*/
public static void create() throws Exception {
if (created)