From: <eli...@us...> - 2008-01-21 22:15:13
|
Revision: 2954 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=2954&view=rev Author: elias_naur Date: 2008-01-21 14:15:12 -0800 (Mon, 21 Jan 2008) Log Message: ----------- javdoc fixes Modified Paths: -------------- trunk/LWJGL/src/java/org/lwjgl/input/Keyboard.java trunk/LWJGL/src/java/org/lwjgl/input/Mouse.java trunk/LWJGL/src/java/org/lwjgl/opengl/Display.java trunk/LWJGL/src/templates/org/lwjgl/openal/AL11.java trunk/LWJGL/src/templates/org/lwjgl/opengl/GL20.java Modified: trunk/LWJGL/src/java/org/lwjgl/input/Keyboard.java =================================================================== --- trunk/LWJGL/src/java/org/lwjgl/input/Keyboard.java 2008-01-21 22:11:01 UTC (rev 2953) +++ trunk/LWJGL/src/java/org/lwjgl/input/Keyboard.java 2008-01-21 22:15:12 UTC (rev 2954) @@ -192,14 +192,14 @@ /** * The left windows key, mapped to KEY_LMETA * - * @Deprecated Use KEY_LMETA instead + * @deprecated Use KEY_LMETA instead */ public static final int KEY_LWIN = KEY_LMETA; /* Left Windows key */ public static final int KEY_RMETA = 0xDC; /* Right Windows/Option key */ /** * The right windows key, mapped to KEY_RMETA * - * @Deprecated Use KEY_RMETA instead + * @deprecated Use KEY_RMETA instead */ public static final int KEY_RWIN = KEY_RMETA; /* Right Windows key */ public static final int KEY_APPS = 0xDD; /* AppMenu key */ @@ -563,7 +563,7 @@ } /** - * @see org.lwjgl.input.Keyboard#enableRepeatEvents() + * @see org.lwjgl.input.Keyboard#enableRepeatEvents(boolean) * @return true if the current event is a repeat event, false if * the current event is not a repeat even or if repeat events are disabled. */ Modified: trunk/LWJGL/src/java/org/lwjgl/input/Mouse.java =================================================================== --- trunk/LWJGL/src/java/org/lwjgl/input/Mouse.java 2008-01-21 22:11:01 UTC (rev 2953) +++ trunk/LWJGL/src/java/org/lwjgl/input/Mouse.java 2008-01-21 22:15:12 UTC (rev 2954) @@ -186,9 +186,9 @@ * Set the position of the cursor. If the cursor is not grabbed, * the native cursor is moved to the new position. * - * @param x The x coordinate of the new cursor position in OpenGL coordinates relative + * @param new_x The x coordinate of the new cursor position in OpenGL coordinates relative * to the window origin. - * @param y The y coordinate of the new cursor position in OpenGL coordinates relative + * @param new_y The y coordinate of the new cursor position in OpenGL coordinates relative * to the window origin. */ public static void setCursorPosition(int new_x, int new_y) { Modified: trunk/LWJGL/src/java/org/lwjgl/opengl/Display.java =================================================================== --- trunk/LWJGL/src/java/org/lwjgl/opengl/Display.java 2008-01-21 22:11:01 UTC (rev 2953) +++ trunk/LWJGL/src/java/org/lwjgl/opengl/Display.java 2008-01-21 22:15:12 UTC (rev 2954) @@ -899,7 +899,7 @@ * * A video frame period is the time required to display a full frame of video data. * - * @param sync true to synchronize; false to ignore synchronization + * @param value The swap interval in frames, 0 to disable */ public static void setSwapInterval(int value) { synchronized (GlobalLock.lock) { @@ -926,9 +926,9 @@ * The window is clamped to remain entirely on the screen. If you attempt * to position the window such that it would extend off the screen, the window * is simply placed as close to the edge as possible. - * <br><b>note</b>If no location has been specified (or x == y == -1) the window will be centered - * @param x The new window location on the x axis - * @param y The new window location on the y axis + * <br><b>note</b>If no location has been specified (or x == y == -1) the window will be centered + * @param new_x The new window location on the x axis + * @param new_y The new window location on the y axis */ public static void setLocation(int new_x, int new_y) { synchronized (GlobalLock.lock) { Modified: trunk/LWJGL/src/templates/org/lwjgl/openal/AL11.java =================================================================== --- trunk/LWJGL/src/templates/org/lwjgl/openal/AL11.java 2008-01-21 22:11:01 UTC (rev 2953) +++ trunk/LWJGL/src/templates/org/lwjgl/openal/AL11.java 2008-01-21 22:15:12 UTC (rev 2954) @@ -68,7 +68,7 @@ /** Type of source: when it has the NULL buffer attached */ public static final int AL_UNDETERMINED = 0x1030; - /** @see AL10.AL_INVALID_OPERATION */ + /** @see AL10#AL_INVALID_OPERATION */ public static final int AL_ILLEGAL_COMMAND = 0xA004; /** Speed of Sound in units per second */ Modified: trunk/LWJGL/src/templates/org/lwjgl/opengl/GL20.java =================================================================== --- trunk/LWJGL/src/templates/org/lwjgl/opengl/GL20.java 2008-01-21 22:11:01 UTC (rev 2953) +++ trunk/LWJGL/src/templates/org/lwjgl/opengl/GL20.java 2008-01-21 22:15:12 UTC (rev 2954) @@ -223,7 +223,6 @@ * @param program * @param name * - * @return */ int glGetUniformLocation(@GLuint int program, @NullTerminated @Check("1") @Const @GLchar ByteBuffer name); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |