|
From: Brian M. <ma...@us...> - 2006-03-23 19:28:55
|
Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2995/src/java/org/lwjgl Modified Files: NativeSysImplementation.java MacOSXSysImplementation.java BufferChecks.java LWJGLException.java BufferUtils.java DefaultSysImplementation.java Win32SysImplementation.java SysImplementation.java Sys.java J2SESysImplementation.java LinuxSysImplementation.java LWJGLUtil.java Log Message: applied patch to move ID tag Index: BufferUtils.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/BufferUtils.java,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- BufferUtils.java 4 May 2005 20:59:44 -0000 1.7 +++ BufferUtils.java 23 Mar 2006 19:28:47 -0000 1.8 @@ -42,12 +42,11 @@ import java.nio.ShortBuffer; /** - * $Id$ - * * Some often-used Buffer code for creating native buffers of the appropriate size. - + * * @author $Author$ * @version $Revision$ + * $Id$ */ public final class BufferUtils { Index: LinuxSysImplementation.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/LinuxSysImplementation.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- LinuxSysImplementation.java 16 Jan 2006 21:04:49 -0000 1.6 +++ LinuxSysImplementation.java 23 Mar 2006 19:28:47 -0000 1.7 @@ -36,10 +36,10 @@ import java.security.PrivilegedExceptionAction; /** - * $Id$ * * @author elias_naur <eli...@us...> * @version $Revision$ + * $Id$ */ class LinuxSysImplementation extends J2SESysImplementation { static { Index: LWJGLException.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/LWJGLException.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- LWJGLException.java 20 Jan 2005 22:51:26 -0000 1.3 +++ LWJGLException.java 23 Mar 2006 19:28:47 -0000 1.4 @@ -32,7 +32,6 @@ package org.lwjgl; /** - * $Id$ * <p> * This exception is supplied to make exception handling more generic for LWJGL * specific exceptions @@ -40,6 +39,7 @@ * * @author Brian Matzon <br...@ma...> * @version $Revision$ + * $Id$ */ public class LWJGLException extends Exception { Index: NativeSysImplementation.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/NativeSysImplementation.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- NativeSysImplementation.java 22 Jan 2005 00:34:50 -0000 1.2 +++ NativeSysImplementation.java 23 Mar 2006 19:28:47 -0000 1.3 @@ -32,11 +32,11 @@ package org.lwjgl; /** - * $Id$ * A SysImplementation that uses native calls only. * <p> * @author $Author$ * @version $Revision$ + * $Id$ */ class NativeSysImplementation extends DefaultSysImplementation { Index: Win32SysImplementation.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/Win32SysImplementation.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Win32SysImplementation.java 7 Feb 2005 18:47:53 -0000 1.3 +++ Win32SysImplementation.java 23 Mar 2006 19:28:47 -0000 1.4 @@ -32,12 +32,12 @@ package org.lwjgl; /** - * $Id$ * <p> * Win32 SysImplementation. This is just a straightforward NativsSysImplementation. * </p> * @author $Author$ * @version $Revision$ + * $Id$ */ class Win32SysImplementation extends NativeSysImplementation { } Index: BufferChecks.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/BufferChecks.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- BufferChecks.java 4 May 2005 20:59:44 -0000 1.8 +++ BufferChecks.java 23 Mar 2006 19:28:47 -0000 1.9 @@ -39,7 +39,6 @@ import java.nio.ShortBuffer; /** - * $Id$ * <p>A class to check buffer boundaries in general. If there is unsufficient space * in the buffer when the call is made then a buffer overflow would otherwise * occur and cause unexpected behaviour, a crash, or worse, a security risk. @@ -47,6 +46,7 @@ * @author cix_foo <ci...@us...> * @author elias_naur <eli...@us...> * @version $Revision$ + * $Id$ */ public class BufferChecks { /** Static methods only! */ Index: SysImplementation.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/SysImplementation.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- SysImplementation.java 16 Jan 2006 20:37:28 -0000 1.2 +++ SysImplementation.java 23 Mar 2006 19:28:47 -0000 1.3 @@ -32,13 +32,13 @@ package org.lwjgl; /** - * $Id$ * * System class platform specific method interface * * @author cix_foo <ci...@us...> * @author elias_naur <eli...@us...> * @version $Revision$ + * $Id$ */ interface SysImplementation { /** Index: LWJGLUtil.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/LWJGLUtil.java,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- LWJGLUtil.java 16 Jan 2006 21:04:49 -0000 1.10 +++ LWJGLUtil.java 23 Mar 2006 19:28:47 -0000 1.11 @@ -43,13 +43,13 @@ import java.util.StringTokenizer; /** - * $Id$ * <p> * Internal library methods * </p> * * @author Brian Matzon <br...@ma...> * @version $Revision$ + * $Id$ */ public class LWJGLUtil { public static final int PLATFORM_LINUX = 1; Index: DefaultSysImplementation.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/DefaultSysImplementation.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- DefaultSysImplementation.java 16 Jan 2006 20:37:28 -0000 1.3 +++ DefaultSysImplementation.java 23 Mar 2006 19:28:47 -0000 1.4 @@ -33,10 +33,10 @@ /** - * $Id$ * * @author elias_naur <eli...@us...> * @version $Revision$ + * $Id$ */ abstract class DefaultSysImplementation implements SysImplementation { /** The native library name */ Index: MacOSXSysImplementation.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/MacOSXSysImplementation.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- MacOSXSysImplementation.java 28 Feb 2006 12:39:15 -0000 1.6 +++ MacOSXSysImplementation.java 23 Mar 2006 19:28:47 -0000 1.7 @@ -36,10 +36,10 @@ import java.security.PrivilegedExceptionAction; /** - * $Id$ * * @author elias_naur <eli...@us...> * @version $Revision$ + * $Id$ */ class MacOSXSysImplementation extends J2SESysImplementation { public String[] getNativeLibraryNames() { Index: J2SESysImplementation.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/J2SESysImplementation.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- J2SESysImplementation.java 20 Nov 2005 10:08:02 -0000 1.3 +++ J2SESysImplementation.java 23 Mar 2006 19:28:47 -0000 1.4 @@ -35,11 +35,11 @@ import javax.swing.UIManager; /** - * $Id$ * A SysImplementation which delegates as much as it can to J2SE. * <p> * @author $Author$ * @version $Revision$ + * $Id$ */ abstract class J2SESysImplementation extends DefaultSysImplementation { Index: Sys.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/Sys.java,v retrieving revision 1.93 retrieving revision 1.94 diff -u -d -r1.93 -r1.94 --- Sys.java 17 Jan 2006 08:47:52 -0000 1.93 +++ Sys.java 23 Mar 2006 19:28:47 -0000 1.94 @@ -41,12 +41,12 @@ import org.lwjgl.input.Mouse; /** - * $Id$ * <p> * System class (named Sys so as not to conflict with java.lang.System) * </p> * @author cix_foo <ci...@us...> * @version $Revision$ + * $Id$ */ public final class Sys { |