Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/input
In directory usw-pr-cvs1:/tmp/cvs-serv27405/src/java/org/lwjgl/input
Modified Files:
GamePad.java Joystick.java Mouse.java Keyboard.java
Log Message:
Minor adjustments to Javadoc comments
Index: GamePad.java
CVS Browser:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/java/org/lwjgl/input/GamePad.java
===================================================================
RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/input/GamePad.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- GamePad.java 19 Aug 2002 14:01:23 -0000 1.3
+++ GamePad.java 20 Aug 2002 14:55:29 -0000 1.4
@@ -116,7 +116,7 @@
* "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)
Index: Joystick.java
CVS Browser:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/java/org/lwjgl/input/Joystick.java
===================================================================
RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/input/Joystick.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- Joystick.java 19 Aug 2002 14:01:23 -0000 1.3
+++ Joystick.java 20 Aug 2002 14:55:29 -0000 1.4
@@ -92,7 +92,7 @@
/**
* "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)
Index: Mouse.java
CVS Browser:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/java/org/lwjgl/input/Mouse.java
===================================================================
RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/input/Mouse.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- Mouse.java 19 Aug 2002 14:01:23 -0000 1.5
+++ Mouse.java 20 Aug 2002 14:55:29 -0000 1.6
@@ -90,7 +90,7 @@
/**
* "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)
Index: Keyboard.java
CVS Browser:
http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/java/org/lwjgl/input/Keyboard.java
===================================================================
RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/input/Keyboard.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- Keyboard.java 19 Aug 2002 14:01:23 -0000 1.6
+++ Keyboard.java 20 Aug 2002 14:55:29 -0000 1.7
@@ -224,7 +224,7 @@
* "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)
|