applied patch to move ID tag

This commit is contained in:
Brian Matzon 2006-03-23 19:32:21 +00:00
parent 0c539252b4
commit 8a3bee6b1c
244 changed files with 246 additions and 251 deletions

View File

@ -39,7 +39,6 @@ import java.nio.IntBuffer;
import java.nio.ShortBuffer; import java.nio.ShortBuffer;
/** /**
* $Id$
* <p>A class to check buffer boundaries in general. If there is unsufficient space * <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 * 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. * occur and cause unexpected behaviour, a crash, or worse, a security risk.
@ -47,6 +46,7 @@ import java.nio.ShortBuffer;
* @author cix_foo <cix_foo@users.sourceforge.net> * @author cix_foo <cix_foo@users.sourceforge.net>
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class BufferChecks { public class BufferChecks {
/** Static methods only! */ /** Static methods only! */

View File

@ -42,12 +42,11 @@ import java.nio.LongBuffer;
import java.nio.ShortBuffer; import java.nio.ShortBuffer;
/** /**
* $Id$
*
* Some often-used Buffer code for creating native buffers of the appropriate size. * Some often-used Buffer code for creating native buffers of the appropriate size.
*
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public final class BufferUtils { public final class BufferUtils {

View File

@ -33,10 +33,10 @@ package org.lwjgl;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
abstract class DefaultSysImplementation implements SysImplementation { abstract class DefaultSysImplementation implements SysImplementation {
/** The native library name */ /** The native library name */

View File

@ -35,11 +35,11 @@ import javax.swing.JOptionPane;
import javax.swing.UIManager; import javax.swing.UIManager;
/** /**
* $Id$
* A SysImplementation which delegates as much as it can to J2SE. * A SysImplementation which delegates as much as it can to J2SE.
* <p> * <p>
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
abstract class J2SESysImplementation extends DefaultSysImplementation { abstract class J2SESysImplementation extends DefaultSysImplementation {

View File

@ -32,7 +32,6 @@
package org.lwjgl; package org.lwjgl;
/** /**
* $Id$
* <p> * <p>
* This exception is supplied to make exception handling more generic for LWJGL * This exception is supplied to make exception handling more generic for LWJGL
* specific exceptions * specific exceptions
@ -40,6 +39,7 @@ package org.lwjgl;
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class LWJGLException extends Exception { public class LWJGLException extends Exception {

View File

@ -43,13 +43,13 @@ import java.util.List;
import java.util.StringTokenizer; import java.util.StringTokenizer;
/** /**
* $Id$
* <p> * <p>
* Internal library methods * Internal library methods
* </p> * </p>
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class LWJGLUtil { public class LWJGLUtil {
public static final int PLATFORM_LINUX = 1; public static final int PLATFORM_LINUX = 1;

View File

@ -36,10 +36,10 @@ import java.security.PrivilegedActionException;
import java.security.PrivilegedExceptionAction; import java.security.PrivilegedExceptionAction;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
class LinuxSysImplementation extends J2SESysImplementation { class LinuxSysImplementation extends J2SESysImplementation {
static { static {

View File

@ -36,10 +36,10 @@ import java.security.AccessController;
import java.security.PrivilegedExceptionAction; import java.security.PrivilegedExceptionAction;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
class MacOSXSysImplementation extends J2SESysImplementation { class MacOSXSysImplementation extends J2SESysImplementation {
public String[] getNativeLibraryNames() { public String[] getNativeLibraryNames() {

View File

@ -32,11 +32,11 @@
package org.lwjgl; package org.lwjgl;
/** /**
* $Id$
* A SysImplementation that uses native calls only. * A SysImplementation that uses native calls only.
* <p> * <p>
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
class NativeSysImplementation extends DefaultSysImplementation { class NativeSysImplementation extends DefaultSysImplementation {

View File

@ -41,12 +41,12 @@ import java.security.PrivilegedExceptionAction;
import org.lwjgl.input.Mouse; import org.lwjgl.input.Mouse;
/** /**
* $Id$
* <p> * <p>
* System class (named Sys so as not to conflict with java.lang.System) * System class (named Sys so as not to conflict with java.lang.System)
* </p> * </p>
* @author cix_foo <cix_foo@users.sourceforge.net> * @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public final class Sys { public final class Sys {

View File

@ -32,13 +32,13 @@
package org.lwjgl; package org.lwjgl;
/** /**
* $Id$
* *
* System class platform specific method interface * System class platform specific method interface
* *
* @author cix_foo <cix_foo@users.sourceforge.net> * @author cix_foo <cix_foo@users.sourceforge.net>
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
interface SysImplementation { interface SysImplementation {
/** /**

View File

@ -32,12 +32,12 @@
package org.lwjgl; package org.lwjgl;
/** /**
* $Id$
* <p> * <p>
* Win32 SysImplementation. This is just a straightforward NativsSysImplementation. * Win32 SysImplementation. This is just a straightforward NativsSysImplementation.
* </p> * </p>
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
class Win32SysImplementation extends NativeSysImplementation { class Win32SysImplementation extends NativeSysImplementation {
} }

View File

@ -43,7 +43,6 @@ import org.lwjgl.BufferChecks;
import org.lwjgl.LWJGLException; import org.lwjgl.LWJGLException;
/** /**
* $Id$
* <p> * <p>
* The core DevIL API. * The core DevIL API.
* </p> * </p>
@ -51,6 +50,7 @@ import org.lwjgl.LWJGLException;
* @author captainjester <captainjester@users.sourceforge.net> * @author captainjester <captainjester@users.sourceforge.net>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class IL { public class IL {

View File

@ -35,13 +35,13 @@ import org.lwjgl.LWJGLException;
import org.lwjgl.LWJGLUtil; import org.lwjgl.LWJGLUtil;
/** /**
* $Id$
* <p> * <p>
* Native interface for DevIL * Native interface for DevIL
* </p> * </p>
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
class ILNative { class ILNative {

View File

@ -37,7 +37,6 @@ import org.lwjgl.BufferChecks;
import org.lwjgl.LWJGLException; import org.lwjgl.LWJGLException;
/** /**
* $Id$
* <p> * <p>
* The DevIL ILU API. * The DevIL ILU API.
* </p> * </p>
@ -45,6 +44,7 @@ import org.lwjgl.LWJGLException;
* @author captainjester <captainjester@users.sourceforge.net> * @author captainjester <captainjester@users.sourceforge.net>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class ILU { public class ILU {

View File

@ -37,7 +37,6 @@ import java.nio.IntBuffer;
import org.lwjgl.LWJGLException; import org.lwjgl.LWJGLException;
/** /**
* $Id$
* <p> * <p>
* The DevIL ILUT API. * The DevIL ILUT API.
* </p> * </p>
@ -45,6 +44,7 @@ import org.lwjgl.LWJGLException;
* @author captainjester <captainjester@users.sourceforge.net> * @author captainjester <captainjester@users.sourceforge.net>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class ILUT { public class ILUT {

View File

@ -32,12 +32,12 @@
package org.lwjgl.devil; package org.lwjgl.devil;
/** /**
* $Id$
* *
* ILinfo information holding class. * ILinfo information holding class.
* *
* @author captainjester <captainjester@users.sourceforge.net> * @author captainjester <captainjester@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class ILinfo { public class ILinfo {
public int id; // the image's id public int id; // the image's id

View File

@ -32,12 +32,12 @@
package org.lwjgl.devil; package org.lwjgl.devil;
/** /**
* $Id$
* *
* ILpointf information holding class. * ILpointf information holding class.
* *
* @author captainjester <captainjester@users.sourceforge.net> * @author captainjester <captainjester@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class ILpointf { public class ILpointf {
public float x; public float x;

View File

@ -32,12 +32,12 @@
package org.lwjgl.devil; package org.lwjgl.devil;
/** /**
* $Id$
* *
* ILpointi information holding class. * ILpointi information holding class.
* *
* @author captainjester <captainjester@users.sourceforge.net> * @author captainjester <captainjester@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class ILpointi { public class ILpointi {
public int x; public int x;

View File

@ -38,12 +38,12 @@ import org.lwjgl.opengl.Display;
import org.lwjgl.opengl.GL11; import org.lwjgl.opengl.GL11;
/** /**
* $Id$
* *
* This is a <em>very basic</em> skeleton to init a game and run it. * This is a <em>very basic</em> skeleton to init a game and run it.
* *
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class Game { public class Game {

View File

@ -41,7 +41,6 @@ import org.lwjgl.util.WaveData;
/** /**
* $Id$
* <p> * <p>
* Simple sound manager for OpenAL using n sources accessed in * Simple sound manager for OpenAL using n sources accessed in
* a round robin schedule. Source n is reserved for a single buffer and checking for * a round robin schedule. Source n is reserved for a single buffer and checking for
@ -49,6 +48,7 @@ import org.lwjgl.util.WaveData;
* </p> * </p>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class SoundManager { public class SoundManager {

View File

@ -40,10 +40,10 @@ import org.lwjgl.LWJGLException;
import org.lwjgl.LWJGLUtil; import org.lwjgl.LWJGLUtil;
/** /**
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class FMOD { public class FMOD {

View File

@ -35,10 +35,10 @@ import org.lwjgl.LWJGLException;
/** /**
* FMOD Exception specific for FMOD exceptions (duh!) * FMOD Exception specific for FMOD exceptions (duh!)
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class FMODException extends LWJGLException { public class FMODException extends LWJGLException {

View File

@ -39,10 +39,10 @@ import java.util.ArrayList;
import org.lwjgl.fmod3.callbacks.FMusicCallback; import org.lwjgl.fmod3.callbacks.FMusicCallback;
/** /**
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class FMusic { public class FMusic {

View File

@ -33,10 +33,10 @@ package org.lwjgl.fmod3;
/** /**
* This class is a representation of a Module in FMod. * This class is a representation of a Module in FMod.
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class FMusicModule { public class FMusicModule {
/** Handle to module */ /** Handle to module */

View File

@ -48,10 +48,10 @@ import org.lwjgl.fmod3.callbacks.FSoundStreamCallback;
import org.lwjgl.fmod3.callbacks.FSoundTellCallback; import org.lwjgl.fmod3.callbacks.FSoundTellCallback;
/** /**
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class FSound { public class FSound {

View File

@ -35,10 +35,10 @@ import java.nio.ByteBuffer;
/** /**
* This class is a representation of a DSPUnit in FMod. * This class is a representation of a DSPUnit in FMod.
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class FSoundDSPUnit { public class FSoundDSPUnit {
/** Opaque handle to dsp unit */ /** Opaque handle to dsp unit */

View File

@ -33,10 +33,10 @@ package org.lwjgl.fmod3;
/** /**
* This class is a representation of a Reverb channel property object in FMod. * This class is a representation of a Reverb channel property object in FMod.
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class FSoundReverbChannelProperties { public class FSoundReverbChannelProperties {
/** Handle to stream */ /** Handle to stream */

View File

@ -33,10 +33,10 @@ package org.lwjgl.fmod3;
/** /**
* This class is a representation of a Reverb property object in FMod. * This class is a representation of a Reverb property object in FMod.
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class FSoundReverbProperties { public class FSoundReverbProperties {
/** Handle to stream */ /** Handle to stream */

View File

@ -33,10 +33,10 @@ package org.lwjgl.fmod3;
/** /**
* This class is a representation of a Sound Sample in FMod. * This class is a representation of a Sound Sample in FMod.
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class FSoundSample { public class FSoundSample {
/** Handle to sample */ /** Handle to sample */

View File

@ -34,10 +34,10 @@ package org.lwjgl.fmod3;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;
/** /**
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class FSoundSampleLock { public class FSoundSampleLock {

View File

@ -33,10 +33,10 @@ package org.lwjgl.fmod3;
/** /**
* This class is a representation of a Sound stream in FMod. * This class is a representation of a Sound stream in FMod.
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class FSoundStream { public class FSoundStream {
/** Handle to stream */ /** Handle to stream */

View File

@ -35,10 +35,10 @@ import java.nio.ByteBuffer;
/** /**
* This class is a representation of a SyncPoint in FMod. * This class is a representation of a SyncPoint in FMod.
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class FSoundSyncPoint { public class FSoundSyncPoint {
/** Opaque handle to syncpoint */ /** Opaque handle to syncpoint */

View File

@ -35,10 +35,10 @@ import java.nio.ByteBuffer;
/** /**
* This class defines attributes in a tag field * This class defines attributes in a tag field
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class FSoundTagField { public class FSoundTagField {

View File

@ -33,10 +33,10 @@ package org.lwjgl.fmod3;
/** /**
* This class is a representation of a FSOUND_TOC_TAG property object in FMod. * This class is a representation of a FSOUND_TOC_TAG property object in FMod.
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class FSoundTocTag { public class FSoundTocTag {
/** Handle to toc */ /** Handle to toc */

View File

@ -35,10 +35,10 @@ import org.lwjgl.fmod3.FMusicModule;
/** /**
* This interface describes a callback interface to Fmod music * This interface describes a callback interface to Fmod music
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface FMusicCallback { public interface FMusicCallback {
public void FMUSIC_CALLBACK(FMusicModule module, int param); public void FMUSIC_CALLBACK(FMusicModule module, int param);

View File

@ -33,10 +33,10 @@ package org.lwjgl.fmod3.callbacks;
/** /**
* This interface describes a callback interface to Fmod music * This interface describes a callback interface to Fmod music
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface FSoundCloseCallback { public interface FSoundCloseCallback {
public void FSOUND_CLOSECALLBACK(int handle); public void FSOUND_CLOSECALLBACK(int handle);

View File

@ -35,10 +35,10 @@ import java.nio.ByteBuffer;
/** /**
* This interface describes a callback interface to Fmod music * This interface describes a callback interface to Fmod music
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface FSoundDSPCallback { public interface FSoundDSPCallback {

View File

@ -35,10 +35,10 @@ import java.nio.ByteBuffer;
/** /**
* This interface describes a callback interface to Fmod music * This interface describes a callback interface to Fmod music
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface FSoundMetaDataCallback { public interface FSoundMetaDataCallback {
public void FSOUND_METADATACALLBACK(ByteBuffer name, ByteBuffer value); public void FSOUND_METADATACALLBACK(ByteBuffer name, ByteBuffer value);

View File

@ -33,10 +33,10 @@ package org.lwjgl.fmod3.callbacks;
/** /**
* This interface describes a callback interface to Fmod music * This interface describes a callback interface to Fmod music
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface FSoundOpenCallback { public interface FSoundOpenCallback {
public int FSOUND_OPENCALLBACK(String name); public int FSOUND_OPENCALLBACK(String name);

View File

@ -35,10 +35,10 @@ import java.nio.ByteBuffer;
/** /**
* This interface describes a callback interface to Fmod music * This interface describes a callback interface to Fmod music
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface FSoundReadCallback { public interface FSoundReadCallback {
public int FSOUND_READCALLBACK(ByteBuffer buffer, int size, int handle); public int FSOUND_READCALLBACK(ByteBuffer buffer, int size, int handle);

View File

@ -33,10 +33,10 @@ package org.lwjgl.fmod3.callbacks;
/** /**
* This interface describes a callback interface to Fmod music * This interface describes a callback interface to Fmod music
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface FSoundSeekCallback { public interface FSoundSeekCallback {
public int FSOUND_SEEKCALLBACK(int handle, int pos, int mode); public int FSOUND_SEEKCALLBACK(int handle, int pos, int mode);

View File

@ -37,10 +37,10 @@ import org.lwjgl.fmod3.FSoundStream;
/** /**
* This interface describes a callback interface to Fmod music * This interface describes a callback interface to Fmod music
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface FSoundStreamCallback { public interface FSoundStreamCallback {
public void FSOUND_STREAMCALLBACK(FSoundStream stream, ByteBuffer buff, int len); public void FSOUND_STREAMCALLBACK(FSoundStream stream, ByteBuffer buff, int len);

View File

@ -33,10 +33,10 @@ package org.lwjgl.fmod3.callbacks;
/** /**
* This interface describes a callback interface to Fmod music * This interface describes a callback interface to Fmod music
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface FSoundTellCallback { public interface FSoundTellCallback {
public int FSOUND_TELLCALLBACK(int handle); public int FSOUND_TELLCALLBACK(int handle);

View File

@ -41,13 +41,13 @@ import org.lwjgl.Sys;
import org.lwjgl.opengl.Display; import org.lwjgl.opengl.Display;
/** /**
* $Id$
* *
* A class representing a native cursor. Instances of this * A class representing a native cursor. Instances of this
* class can be used with Mouse.setCursor(), if available. * class can be used with Mouse.setCursor(), if available.
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class Cursor { public class Cursor {

View File

@ -44,7 +44,6 @@ import org.lwjgl.Sys;
import org.lwjgl.opengl.Display; import org.lwjgl.opengl.Display;
/** /**
* $Id$
* <br> * <br>
* A raw Keyboard interface. This can be used to poll the current state of the * A raw Keyboard interface. This can be used to poll the current state of the
* keys, or read all the keyboard presses / releases since the last read. * keys, or read all the keyboard presses / releases since the last read.
@ -53,6 +52,7 @@ import org.lwjgl.opengl.Display;
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class Keyboard { public class Keyboard {
/** /**

View File

@ -43,7 +43,6 @@ import org.lwjgl.Sys;
import org.lwjgl.opengl.Display; import org.lwjgl.opengl.Display;
/** /**
* $Id$
* <br> * <br>
* A raw Mouse interface. This can be used to poll the current state of the * A raw Mouse interface. This can be used to poll the current state of the
* mouse buttons, and determine the mouse movement delta since the last poll. * mouse buttons, and determine the mouse movement delta since the last poll.
@ -57,6 +56,7 @@ import org.lwjgl.opengl.Display;
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class Mouse { public class Mouse {
/** Has the mouse been created? */ /** Has the mouse been created? */

View File

@ -38,12 +38,12 @@ import org.lwjgl.LWJGLUtil;
import org.lwjgl.Sys; import org.lwjgl.Sys;
/** /**
* $Id$
* <br> * <br>
* This is the OpenAL class. It extends the latest core. * This is the OpenAL class. It extends the latest core.
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public final class AL { public final class AL {
/** ALCdevice instance. */ /** ALCdevice instance. */

View File

@ -39,7 +39,6 @@ import org.lwjgl.LWJGLException;
import org.lwjgl.Sys; import org.lwjgl.Sys;
/** /**
* $Id$
* *
* <p> * <p>
* This is the context class for OpenAL. This class implements functions * This is the context class for OpenAL. This class implements functions
@ -66,6 +65,7 @@ import org.lwjgl.Sys;
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public final class ALC { public final class ALC {
/** Bad value */ /** Bad value */

View File

@ -36,12 +36,12 @@ import java.nio.IntBuffer;
import org.lwjgl.BufferUtils; import org.lwjgl.BufferUtils;
/** /**
* $Id$
* <br> * <br>
* Wrapper class, to make ALC contexts behave like the orginal api. * Wrapper class, to make ALC contexts behave like the orginal api.
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
final class ALCcontext { final class ALCcontext {

View File

@ -32,12 +32,12 @@
package org.lwjgl.openal; package org.lwjgl.openal;
/** /**
* $Id$
* <br> * <br>
* Wrapper class, to make ALC devices behave like the orginal api. * Wrapper class, to make ALC devices behave like the orginal api.
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
final class ALCdevice { final class ALCdevice {

View File

@ -32,13 +32,13 @@
package org.lwjgl.openal; package org.lwjgl.openal;
/** /**
* $Id$
* <br> * <br>
* Thrown by the debug build library of the LWJGL if any OpenAL operation * Thrown by the debug build library of the LWJGL if any OpenAL operation
* causes an error. * causes an error.
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class OpenALException extends RuntimeException { public class OpenALException extends RuntimeException {

View File

@ -37,10 +37,10 @@ import java.awt.GraphicsDevice;
import org.lwjgl.LWJGLException; import org.lwjgl.LWJGLException;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
interface AWTCanvasImplementation { interface AWTCanvasImplementation {
/** /**

View File

@ -47,12 +47,12 @@ import org.lwjgl.LWJGLUtil;
import org.lwjgl.Sys; import org.lwjgl.Sys;
/** /**
* $Id$
* <p> * <p>
* An AWT rendering context. * An AWT rendering context.
* <p> * <p>
* @version $Revision$ * @version $Revision$
* @author $Author$ * @author $Author$
* $Id$
*/ */
public class AWTGLCanvas extends Canvas implements Drawable, ComponentListener, HierarchyListener { public class AWTGLCanvas extends Canvas implements Drawable, ComponentListener, HierarchyListener {
private final static AWTCanvasImplementation implementation; private final static AWTCanvasImplementation implementation;

View File

@ -41,10 +41,10 @@ import org.lwjgl.LWJGLException;
import org.lwjgl.LWJGLUtil; import org.lwjgl.LWJGLUtil;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
final class AWTSurfaceLock { final class AWTSurfaceLock {

View File

@ -38,7 +38,6 @@ import org.lwjgl.LWJGLUtil;
import org.lwjgl.Sys; import org.lwjgl.Sys;
/** /**
* $Id$
* <p/> * <p/>
* Context encapsulates an OpenGL context. * Context encapsulates an OpenGL context.
* <p/> * <p/>
@ -47,6 +46,7 @@ import org.lwjgl.Sys;
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
final class Context { final class Context {
/** /**

View File

@ -36,13 +36,13 @@ import java.nio.ByteBuffer;
import org.lwjgl.LWJGLException; import org.lwjgl.LWJGLException;
/** /**
* $Id$
* <p/> * <p/>
* Context implementation interface. * Context implementation interface.
* <p/> * <p/>
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
interface ContextImplementation { interface ContextImplementation {
/** /**

View File

@ -32,7 +32,6 @@
package org.lwjgl.opengl; package org.lwjgl.opengl;
/** /**
* $Id$
* *
* This class encapsulates the properties for a given display mode. * This class encapsulates the properties for a given display mode.
* This class is not instantiable, and is aquired from the <code>Display. * This class is not instantiable, and is aquired from the <code>Display.
@ -40,6 +39,7 @@ package org.lwjgl.opengl;
* *
* @author cix_foo <cix_foo@users.sourceforge.net> * @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public final class DisplayMode { public final class DisplayMode {

View File

@ -37,7 +37,7 @@ import java.nio.IntBuffer;
import org.lwjgl.BufferUtils; import org.lwjgl.BufferUtils;
/** /**
* $Id$ A class to check buffer boundaries in GL methods. Many GL * A class to check buffer boundaries in GL methods. Many GL
* methods read data from the GL into a native Buffer at its current position. If there is unsufficient space in the buffer when * methods read data from the GL into a native Buffer at its current position. 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 * the call is made then a buffer overflow would otherwise occur and cause unexpected behaviour, a crash, or worse, a security
* risk. Therefore in those methods where GL reads data back into a buffer, we will call a bounds check method from this class * risk. Therefore in those methods where GL reads data back into a buffer, we will call a bounds check method from this class
@ -47,6 +47,7 @@ import org.lwjgl.BufferUtils;
* *
* @author cix_foo <cix_foo@users.sourceforge.net> * @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
class GLChecks { class GLChecks {

View File

@ -46,7 +46,6 @@ import org.lwjgl.LWJGLUtil;
import org.lwjgl.Sys; import org.lwjgl.Sys;
/** /**
* $Id$
* <p/> * <p/>
* Manages GL contexts. Before any rendering is done by a LWJGL system, a call should be made to GLContext.useContext() with a * Manages GL contexts. Before any rendering is done by a LWJGL system, a call should be made to GLContext.useContext() with a
* context. This will ensure that GLContext has an accurate reflection of the current context's capabilities and function * context. This will ensure that GLContext has an accurate reflection of the current context's capabilities and function
@ -58,6 +57,7 @@ import org.lwjgl.Sys;
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public final class GLContext { public final class GLContext {
/** /**

View File

@ -32,12 +32,12 @@
package org.lwjgl.opengl; package org.lwjgl.opengl;
/** /**
* $Id$
* <p/> * <p/>
* GLU constants. * GLU constants.
* *
* @author cix_foo <cix_foo@users.sourceforge.net> * @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface GLUConstants { public interface GLUConstants {

View File

@ -37,10 +37,10 @@ import org.lwjgl.LWJGLException;
import org.lwjgl.LWJGLUtil; import org.lwjgl.LWJGLUtil;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
final class LinuxAWTGLCanvasPeerInfo extends LinuxPeerInfo { final class LinuxAWTGLCanvasPeerInfo extends LinuxPeerInfo {
private final AWTGLCanvas canvas; private final AWTGLCanvas canvas;

View File

@ -41,10 +41,10 @@ import org.lwjgl.LWJGLException;
import org.lwjgl.LWJGLUtil; import org.lwjgl.LWJGLUtil;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
final class LinuxCanvasImplementation implements AWTCanvasImplementation { final class LinuxCanvasImplementation implements AWTCanvasImplementation {
static int getScreenFromDevice(final GraphicsDevice device) throws LWJGLException { static int getScreenFromDevice(final GraphicsDevice device) throws LWJGLException {

View File

@ -36,10 +36,10 @@ import java.nio.ByteBuffer;
import org.lwjgl.LWJGLException; import org.lwjgl.LWJGLException;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
final class LinuxContextImplementation implements ContextImplementation { final class LinuxContextImplementation implements ContextImplementation {
public ByteBuffer create(PeerInfo peer_info, ByteBuffer shared_context_handle) throws LWJGLException { public ByteBuffer create(PeerInfo peer_info, ByteBuffer shared_context_handle) throws LWJGLException {

View File

@ -36,10 +36,10 @@ import java.nio.ByteBuffer;
import org.lwjgl.LWJGLException; import org.lwjgl.LWJGLException;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
final class LinuxDisplayPeerInfo extends LinuxPeerInfo { final class LinuxDisplayPeerInfo extends LinuxPeerInfo {
public LinuxDisplayPeerInfo(PixelFormat pixel_format) throws LWJGLException { public LinuxDisplayPeerInfo(PixelFormat pixel_format) throws LWJGLException {

View File

@ -36,10 +36,10 @@ import java.nio.ByteBuffer;
import org.lwjgl.LWJGLException; import org.lwjgl.LWJGLException;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
final class LinuxPbufferPeerInfo extends LinuxPeerInfo { final class LinuxPbufferPeerInfo extends LinuxPeerInfo {
public LinuxPbufferPeerInfo(int width, int height, PixelFormat pixel_format) throws LWJGLException { public LinuxPbufferPeerInfo(int width, int height, PixelFormat pixel_format) throws LWJGLException {

View File

@ -34,10 +34,10 @@ package org.lwjgl.opengl;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
abstract class LinuxPeerInfo extends PeerInfo { abstract class LinuxPeerInfo extends PeerInfo {
public LinuxPeerInfo() { public LinuxPeerInfo() {

View File

@ -34,10 +34,10 @@ package org.lwjgl.opengl;
import org.lwjgl.LWJGLException; import org.lwjgl.LWJGLException;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
final class MacOSXAWTGLCanvasPeerInfo extends MacOSXCanvasPeerInfo { final class MacOSXAWTGLCanvasPeerInfo extends MacOSXCanvasPeerInfo {
private final AWTGLCanvas canvas; private final AWTGLCanvas canvas;

View File

@ -37,10 +37,10 @@ import java.awt.GraphicsDevice;
import org.lwjgl.LWJGLException; import org.lwjgl.LWJGLException;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
final class MacOSXCanvasImplementation implements AWTCanvasImplementation { final class MacOSXCanvasImplementation implements AWTCanvasImplementation {
public PeerInfo createPeerInfo(AWTGLCanvas canvas, PixelFormat pixel_format) throws LWJGLException { public PeerInfo createPeerInfo(AWTGLCanvas canvas, PixelFormat pixel_format) throws LWJGLException {

View File

@ -37,10 +37,10 @@ import java.nio.ByteBuffer;
import org.lwjgl.LWJGLException; import org.lwjgl.LWJGLException;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
abstract class MacOSXCanvasPeerInfo extends MacOSXPeerInfo { abstract class MacOSXCanvasPeerInfo extends MacOSXPeerInfo {
private final AWTSurfaceLock awt_surface = new AWTSurfaceLock(); private final AWTSurfaceLock awt_surface = new AWTSurfaceLock();

View File

@ -36,10 +36,10 @@ import java.nio.ByteBuffer;
import org.lwjgl.LWJGLException; import org.lwjgl.LWJGLException;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
final class MacOSXContextImplementation implements ContextImplementation { final class MacOSXContextImplementation implements ContextImplementation {
public ByteBuffer create(PeerInfo peer_info, ByteBuffer shared_context_handle) throws LWJGLException { public ByteBuffer create(PeerInfo peer_info, ByteBuffer shared_context_handle) throws LWJGLException {

View File

@ -36,10 +36,10 @@ import java.awt.Canvas;
import org.lwjgl.LWJGLException; import org.lwjgl.LWJGLException;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
final class MacOSXDisplayPeerInfo extends MacOSXCanvasPeerInfo { final class MacOSXDisplayPeerInfo extends MacOSXCanvasPeerInfo {
private boolean locked = false; private boolean locked = false;

View File

@ -36,10 +36,10 @@ import java.nio.ByteBuffer;
import org.lwjgl.LWJGLException; import org.lwjgl.LWJGLException;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
final class MacOSXPbufferPeerInfo extends MacOSXPeerInfo { final class MacOSXPbufferPeerInfo extends MacOSXPeerInfo {
public MacOSXPbufferPeerInfo(int width, int height, PixelFormat pixel_format) throws LWJGLException { public MacOSXPbufferPeerInfo(int width, int height, PixelFormat pixel_format) throws LWJGLException {

View File

@ -36,10 +36,10 @@ import java.nio.ByteBuffer;
import org.lwjgl.LWJGLException; import org.lwjgl.LWJGLException;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
abstract class MacOSXPeerInfo extends PeerInfo { abstract class MacOSXPeerInfo extends PeerInfo {
public MacOSXPeerInfo(PixelFormat pixel_format, boolean use_display_bpp, boolean support_window, boolean support_pbuffer, boolean double_buffered) throws LWJGLException { public MacOSXPeerInfo(PixelFormat pixel_format, boolean use_display_bpp, boolean support_window, boolean support_pbuffer, boolean double_buffered) throws LWJGLException {

View File

@ -34,12 +34,12 @@ package org.lwjgl.opengl;
import org.lwjgl.opengl.glu.GLU; import org.lwjgl.opengl.glu.GLU;
/** /**
* $Id$
* <p/> * <p/>
* Thrown by the debug build library of the LWJGL if any OpenGL operation causes an error. * Thrown by the debug build library of the LWJGL if any OpenGL operation causes an error.
* *
* @author cix_foo <cix_foo@users.sourceforge.net> * @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class OpenGLException extends RuntimeException { public class OpenGLException extends RuntimeException {

View File

@ -39,7 +39,6 @@ import org.lwjgl.LWJGLUtil;
import org.lwjgl.Sys; import org.lwjgl.Sys;
/** /**
* $Id$
* <p/> * <p/>
* Pbuffer encapsulates an OpenGL pbuffer. * Pbuffer encapsulates an OpenGL pbuffer.
* <p/> * <p/>
@ -48,6 +47,7 @@ import org.lwjgl.Sys;
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public final class Pbuffer implements Drawable { public final class Pbuffer implements Drawable {
/** /**

View File

@ -37,10 +37,10 @@ import org.lwjgl.LWJGLException;
import org.lwjgl.LWJGLUtil; import org.lwjgl.LWJGLUtil;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
abstract class PeerInfo { abstract class PeerInfo {
private final ByteBuffer handle; private final ByteBuffer handle;

View File

@ -36,10 +36,10 @@ import java.nio.ByteBuffer;
import org.lwjgl.LWJGLException; import org.lwjgl.LWJGLException;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
final class Win32AWTGLCanvasPeerInfo extends Win32PeerInfo { final class Win32AWTGLCanvasPeerInfo extends Win32PeerInfo {
private final AWTGLCanvas canvas; private final AWTGLCanvas canvas;

View File

@ -37,10 +37,10 @@ import java.awt.GraphicsDevice;
import org.lwjgl.LWJGLException; import org.lwjgl.LWJGLException;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
final class Win32CanvasImplementation implements AWTCanvasImplementation { final class Win32CanvasImplementation implements AWTCanvasImplementation {
static { static {

View File

@ -36,10 +36,10 @@ import java.nio.ByteBuffer;
import org.lwjgl.LWJGLException; import org.lwjgl.LWJGLException;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
final class Win32ContextImplementation implements ContextImplementation { final class Win32ContextImplementation implements ContextImplementation {
public ByteBuffer create(PeerInfo peer_info, ByteBuffer shared_context_handle) throws LWJGLException { public ByteBuffer create(PeerInfo peer_info, ByteBuffer shared_context_handle) throws LWJGLException {

View File

@ -36,10 +36,10 @@ import java.nio.ByteBuffer;
import org.lwjgl.LWJGLException; import org.lwjgl.LWJGLException;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
final class Win32DisplayPeerInfo extends Win32PeerInfo { final class Win32DisplayPeerInfo extends Win32PeerInfo {
public Win32DisplayPeerInfo(PixelFormat pixel_format) throws LWJGLException { public Win32DisplayPeerInfo(PixelFormat pixel_format) throws LWJGLException {

View File

@ -37,10 +37,10 @@ import java.nio.IntBuffer;
import org.lwjgl.LWJGLException; import org.lwjgl.LWJGLException;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
final class Win32PbufferPeerInfo extends Win32PeerInfo { final class Win32PbufferPeerInfo extends Win32PeerInfo {
public Win32PbufferPeerInfo(int width, int height, PixelFormat pixel_format, IntBuffer pixelFormatCaps, IntBuffer pBufferAttribs) throws LWJGLException { public Win32PbufferPeerInfo(int width, int height, PixelFormat pixel_format, IntBuffer pixelFormatCaps, IntBuffer pBufferAttribs) throws LWJGLException {

View File

@ -37,10 +37,10 @@ import java.nio.IntBuffer;
import org.lwjgl.LWJGLException; import org.lwjgl.LWJGLException;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
abstract class Win32PeerInfo extends PeerInfo { abstract class Win32PeerInfo extends PeerInfo {
public Win32PeerInfo() { public Win32PeerInfo() {

View File

@ -36,12 +36,12 @@ import org.lwjgl.opengl.Display;
import org.lwjgl.opengl.DisplayMode; import org.lwjgl.opengl.DisplayMode;
/** /**
* $Id$
* <br> * <br>
* Test class for Display & DisplayMode * Test class for Display & DisplayMode
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class DisplayTest { public class DisplayTest {

View File

@ -37,12 +37,12 @@ import org.lwjgl.Sys;
import org.lwjgl.opengl.Display; import org.lwjgl.opengl.Display;
/** /**
* $Id$
* <br> * <br>
* Test class for Sys * Test class for Sys
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class SysTest { public class SysTest {

View File

@ -42,11 +42,11 @@ import org.lwjgl.devil.ILUT;
import org.lwjgl.devil.ILinfo; import org.lwjgl.devil.ILinfo;
/** /**
* $Id$
* <p>The core DevIL and ILU API.</p> * <p>The core DevIL and ILU API.</p>
* *
* @author Mark Bernard <captainjester@users.sourceforge.net> * @author Mark Bernard <captainjester@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class BasicTest { public class BasicTest {

View File

@ -41,10 +41,10 @@ import org.lwjgl.fmod3.FSound;
import org.lwjgl.fmod3.FSoundStream; import org.lwjgl.fmod3.FSoundStream;
/** /**
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class CDDAPlayer { public class CDDAPlayer {

View File

@ -40,10 +40,10 @@ import org.lwjgl.fmod3.FMODException;
import org.lwjgl.fmod3.FSound; import org.lwjgl.fmod3.FSound;
/** /**
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class CDPlayer { public class CDPlayer {

View File

@ -44,10 +44,10 @@ import org.lwjgl.fmod3.callbacks.FSoundDSPCallback;
import org.lwjgl.fmod3.callbacks.FSoundStreamCallback; import org.lwjgl.fmod3.callbacks.FSoundStreamCallback;
/** /**
* $Id$ <br>
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$ <br>
*/ */
public class DSPTest { public class DSPTest {

View File

@ -41,10 +41,10 @@ import org.lwjgl.fmod3.FMusicModule;
import org.lwjgl.fmod3.FSound; import org.lwjgl.fmod3.FSound;
/** /**
* $Id$
* <br> * <br>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class MusicPlayer { public class MusicPlayer {

View File

@ -61,10 +61,10 @@ import org.lwjgl.fmod3.FSound;
import org.lwjgl.fmod3.FSoundStream; import org.lwjgl.fmod3.FSoundStream;
/** /**
* $Id$ <br>
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$ <br>
*/ */
public class NetTest { public class NetTest {

View File

@ -40,10 +40,10 @@ import org.lwjgl.fmod3.FSound;
import org.lwjgl.fmod3.FSoundStream; import org.lwjgl.fmod3.FSoundStream;
/** /**
* $Id$ <br>
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$ <br>
*/ */
public class StreamPlayer { public class StreamPlayer {

View File

@ -42,10 +42,10 @@ import org.lwjgl.fmod3.FSound;
import org.lwjgl.fmod3.FSoundStream; import org.lwjgl.fmod3.FSoundStream;
/** /**
* $Id$ <br>
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$ <br>
*/ */
public class StreamPlayerMemory { public class StreamPlayerMemory {

View File

@ -39,10 +39,10 @@ import org.lwjgl.fmod3.FMODException;
import org.lwjgl.fmod3.FSound; import org.lwjgl.fmod3.FSound;
/** /**
* $Id$ <br>
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$ <br>
*/ */
public class StreamTest { public class StreamTest {

View File

@ -44,10 +44,10 @@ import org.lwjgl.fmod3.FSound;
import org.lwjgl.fmod3.callbacks.FMusicCallback; import org.lwjgl.fmod3.callbacks.FMusicCallback;
/** /**
* $Id$ <br>
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$ <br>
*/ */
public class SyncTest { public class SyncTest {

View File

@ -42,10 +42,10 @@ import org.lwjgl.fmod3.FSoundStream;
import org.lwjgl.fmod3.FSoundTagField; import org.lwjgl.fmod3.FSoundTagField;
/** /**
* $Id$ <br>
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$ <br>
*/ */
public class TagFieldTest { public class TagFieldTest {

View File

@ -44,12 +44,12 @@ import org.lwjgl.opengl.GL11;
import org.lwjgl.opengl.glu.GLU; import org.lwjgl.opengl.glu.GLU;
/** /**
* $Id$
* *
* Tests switching between windowed and fullscreen - including hardware cursor test * Tests switching between windowed and fullscreen - including hardware cursor test
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class HWCursorTest { public class HWCursorTest {

View File

@ -39,12 +39,12 @@ import org.lwjgl.opengl.glu.GLU;
import org.lwjgl.util.vector.Vector2f; import org.lwjgl.util.vector.Vector2f;
/** /**
* $Id$
* <br> * <br>
* Keyboard test * Keyboard test
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class KeyboardTest { public class KeyboardTest {

View File

@ -39,12 +39,12 @@ import org.lwjgl.opengl.GL11;
import org.lwjgl.util.vector.Vector2f; import org.lwjgl.util.vector.Vector2f;
/** /**
* $Id$
* <br> * <br>
* Mouse test * Mouse test
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class MouseCreationTest { public class MouseCreationTest {
/** position of quad to draw */ /** position of quad to draw */

View File

@ -40,12 +40,12 @@ import org.lwjgl.util.vector.Vector2f;
import org.lwjgl.util.vector.Vector3f; import org.lwjgl.util.vector.Vector3f;
/** /**
* $Id$
* <br> * <br>
* Mouse test * Mouse test
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class MouseTest { public class MouseTest {
/** Direction mouse has moved */ /** Direction mouse has moved */

View File

@ -37,12 +37,12 @@ import org.lwjgl.BufferUtils;
import org.lwjgl.openal.ALC; import org.lwjgl.openal.ALC;
/** /**
* $Id$
* *
* This is a test for the ALC part of OpenAL * This is a test for the ALC part of OpenAL
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class ALCTest extends BasicTest { public class ALCTest extends BasicTest {

View File

@ -39,12 +39,12 @@ import org.lwjgl.openal.AL10;
import org.lwjgl.opengl.DisplayMode; import org.lwjgl.opengl.DisplayMode;
/** /**
* $Id$
* *
* This is a basic test, which contains the most used stuff * This is a basic test, which contains the most used stuff
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public abstract class BasicTest { public abstract class BasicTest {

View File

@ -41,13 +41,13 @@ import org.lwjgl.util.WaveData;
import org.lwjgl.util.vector.Vector3f; import org.lwjgl.util.vector.Vector3f;
/** /**
* $Id$
* *
* This test simulates a listener positioned in the center, and * This test simulates a listener positioned in the center, and
* a source moving around the listener using the keyboard * a source moving around the listener using the keyboard
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class MovingSoundTest extends BasicTest { public class MovingSoundTest extends BasicTest {

View File

@ -40,13 +40,13 @@ import org.lwjgl.openal.AL10;
import org.lwjgl.util.WaveData; import org.lwjgl.util.WaveData;
/** /**
* $Id$
* <br> * <br>
* Performs a creation test, by creating and destroying OpenAL twice. * Performs a creation test, by creating and destroying OpenAL twice.
* We cannot inherit from BasicTest since it follows another structure. * We cannot inherit from BasicTest since it follows another structure.
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class OpenALCreationTest { public class OpenALCreationTest {

View File

@ -42,13 +42,13 @@ import org.lwjgl.openal.AL10;
import org.lwjgl.util.WaveData; import org.lwjgl.util.WaveData;
/** /**
* $Id$
* *
* This is a basic play test * This is a basic play test
* Yes, over zealous use of getError ;) * Yes, over zealous use of getError ;)
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class PlayTest extends BasicTest { public class PlayTest extends BasicTest {

View File

@ -42,13 +42,13 @@ import org.lwjgl.openal.AL10;
import org.lwjgl.util.WaveData; import org.lwjgl.util.WaveData;
/** /**
* $Id$
* *
* This is a basic play test * This is a basic play test
* Yes, over zealous use of getError ;) * Yes, over zealous use of getError ;)
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class PlayTestMemory extends BasicTest { public class PlayTestMemory extends BasicTest {

View File

@ -46,13 +46,13 @@ import org.lwjgl.opengl.glu.GLU;
import org.lwjgl.util.WaveData; import org.lwjgl.util.WaveData;
/** /**
* $Id$
* <br> * <br>
* This test demonstrates OpenAL positioning Based on the example by Chad Armstrong * This test demonstrates OpenAL positioning Based on the example by Chad Armstrong
* (http://www.edenwaith.com/products/pige/tutorials/openal.php) * (http://www.edenwaith.com/products/pige/tutorials/openal.php)
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class PositionTest extends BasicTest { public class PositionTest extends BasicTest {

View File

@ -38,12 +38,12 @@ import org.lwjgl.openal.AL10;
import org.lwjgl.openal.OpenALException; import org.lwjgl.openal.OpenALException;
/** /**
* $Id$
* *
* Simple test for testing the number of available sources * Simple test for testing the number of available sources
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class SourceLimitTest extends BasicTest { public class SourceLimitTest extends BasicTest {

View File

@ -38,12 +38,12 @@ import org.lwjgl.openal.AL10;
import org.lwjgl.util.WaveData; import org.lwjgl.util.WaveData;
/** /**
* $Id$
* *
* Simple test for stresstesting OpenAL playing random samples ad nausea * Simple test for stresstesting OpenAL playing random samples ad nausea
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class StressTest extends BasicTest { public class StressTest extends BasicTest {

View File

@ -40,12 +40,12 @@ import org.lwjgl.opengl.glu.GLU;
import org.lwjgl.util.vector.Vector2f; import org.lwjgl.util.vector.Vector2f;
/** /**
* $Id$
* *
* Tests switching between windowed and fullscreen * Tests switching between windowed and fullscreen
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class FullScreenWindowedTest { public class FullScreenWindowedTest {
/** Intended deiplay mode */ /** Intended deiplay mode */

View File

@ -46,12 +46,12 @@ import org.lwjgl.opengl.GL11;
import org.lwjgl.opengl.GLContext; import org.lwjgl.opengl.GLContext;
/** /**
* $Id$
* <p> * <p>
* This is the OpenGL "standard" Gears demo, originally by Brian Paul * This is the OpenGL "standard" Gears demo, originally by Brian Paul
* </p> * </p>
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class Gears { public class Gears {

View File

@ -46,12 +46,12 @@ import org.lwjgl.opengl.glu.GLU;
import org.lwjgl.util.vector.Vector2f; import org.lwjgl.util.vector.Vector2f;
/** /**
* $Id$
* *
* Tests Pbuffers * Tests Pbuffers
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class PbufferTest { public class PbufferTest {

View File

@ -44,12 +44,12 @@ import org.lwjgl.opengl.GL11;
import org.lwjgl.opengl.GLContext; import org.lwjgl.opengl.GLContext;
/** /**
* $Id$
* <p> * <p>
* AWT version of the gears demo * AWT version of the gears demo
* <p> * <p>
* @version $Revision$ * @version $Revision$
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* $Id$
*/ */
public class AWTGears extends Frame { public class AWTGears extends Frame {

View File

@ -41,12 +41,12 @@ import org.lwjgl.opengl.GL11;
import org.lwjgl.opengl.glu.GLU; import org.lwjgl.opengl.glu.GLU;
/** /**
* $Id$
* <p> * <p>
* Tests AWTGLCanvas functionality * Tests AWTGLCanvas functionality
* <p> * <p>
* @version $Revision$ * @version $Revision$
* @author $Author$ * @author $Author$
* $Id$
*/ */
public class AWTTest extends Frame { public class AWTTest extends Frame {

View File

@ -57,11 +57,11 @@ import org.lwjgl.opengl.GL11;
import org.lwjgl.opengl.GLContext; import org.lwjgl.opengl.GLContext;
/** /**
* $Id$
* <p> * <p>
* </p> * </p>
* @version $Revision$ * @version $Revision$
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* $Id$
*/ */
public class DemoBox extends Frame { public class DemoBox extends Frame {

View File

@ -45,12 +45,12 @@ import org.lwjgl.opengl.glu.GLU;
import org.lwjgl.util.vector.Vector2f; import org.lwjgl.util.vector.Vector2f;
/** /**
* $Id$
* <p/> * <p/>
* Tests Pbuffers * Tests Pbuffers
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public final class PbufferTest { public final class PbufferTest {

View File

@ -34,10 +34,10 @@ import java.io.Serializable;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;
/** /**
* $Id$
* A mutable Color class * A mutable Color class
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public final class Color implements ReadableColor, Serializable, WritableColor { public final class Color implements ReadableColor, Serializable, WritableColor {

View File

@ -34,10 +34,10 @@ package org.lwjgl.util;
import java.io.Serializable; import java.io.Serializable;
/** /**
* $Id$
* A 2D integer Dimension class, which looks remarkably like an AWT one. * A 2D integer Dimension class, which looks remarkably like an AWT one.
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public final class Dimension implements Serializable, ReadableDimension, WritableDimension { public final class Dimension implements Serializable, ReadableDimension, WritableDimension {

View File

@ -40,11 +40,11 @@ import org.lwjgl.LWJGLUtil;
import org.lwjgl.opengl.DisplayMode; import org.lwjgl.opengl.DisplayMode;
/** /**
* $Id$
* Display initialization utility, that can be used to find display modes and pick * Display initialization utility, that can be used to find display modes and pick
* one for you based on your criteria. * one for you based on your criteria.
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public final class Display { public final class Display {

View File

@ -72,12 +72,12 @@ import org.lwjgl.opengl.GL15;
import org.lwjgl.opengl.GL20; import org.lwjgl.opengl.GL20;
/** /**
* $Id$
* <p/> * <p/>
* An extensible GL class that contains all the GL11 through GL15 methods, and all the ARB and EXT extension methods. * An extensible GL class that contains all the GL11 through GL15 methods, and all the ARB and EXT extension methods.
* *
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class GL { public class GL {

View File

@ -38,13 +38,13 @@ import java.nio.IntBuffer;
import java.nio.ShortBuffer; import java.nio.ShortBuffer;
/** /**
* $Id$
* <p/> * <p/>
* An extensible GL class that contains all the GL11 through GL15 methods, and all the ARB and EXT extension methods - but this * An extensible GL class that contains all the GL11 through GL15 methods, and all the ARB and EXT extension methods - but this
* time as instance methods, like JOGL, Magician, and GL4Java. * time as instance methods, like JOGL, Magician, and GL4Java.
* *
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class GLImpl implements IGL { public class GLImpl implements IGL {

View File

@ -38,12 +38,12 @@ import java.nio.IntBuffer;
import java.nio.ShortBuffer; import java.nio.ShortBuffer;
/** /**
* $Id$ This is an interface describing an Object that can render using
* OpenGL1.1, 1.2, 1.3, 1.4, 1.5, and all the EXT and ARB extensions in the LWJGL library. Its main purpose is to stop * OpenGL1.1, 1.2, 1.3, 1.4, 1.5, and all the EXT and ARB extensions in the LWJGL library. Its main purpose is to stop
* object-oriented zealots annoying us any more. * object-oriented zealots annoying us any more.
* *
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$ This is an interface describing an Object that can render using
*/ */
public interface IGL { public interface IGL {

View File

@ -34,10 +34,10 @@ package org.lwjgl.util;
import java.io.Serializable; import java.io.Serializable;
/** /**
* $Id$
* A 2D integer point class, which looks remarkably like an AWT one. * A 2D integer point class, which looks remarkably like an AWT one.
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public final class Point implements ReadablePoint, WritablePoint, Serializable { public final class Point implements ReadablePoint, WritablePoint, Serializable {

View File

@ -34,10 +34,10 @@ package org.lwjgl.util;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;
/** /**
* $Id$
* Readonly interface for Colors * Readonly interface for Colors
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface ReadableColor { public interface ReadableColor {

View File

@ -32,11 +32,10 @@
package org.lwjgl.util; package org.lwjgl.util;
/** /**
* $Id$
* Readonly interface for Dimensions * Readonly interface for Dimensions
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface ReadableDimension { public interface ReadableDimension {

View File

@ -32,11 +32,10 @@
package org.lwjgl.util; package org.lwjgl.util;
/** /**
* $Id$
* Readonly interface for Points * Readonly interface for Points
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface ReadablePoint { public interface ReadablePoint {

View File

@ -32,11 +32,10 @@
package org.lwjgl.util; package org.lwjgl.util;
/** /**
* $Id$
* Readonly interface for Rectangles * Readonly interface for Rectangles
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface ReadableRectangle extends ReadableDimension, ReadablePoint { public interface ReadableRectangle extends ReadableDimension, ReadablePoint {

View File

@ -34,11 +34,10 @@ package org.lwjgl.util;
import java.io.Serializable; import java.io.Serializable;
/** /**
* $Id$
* A 2D integer Rectangle class which looks remarkably like an AWT one. * A 2D integer Rectangle class which looks remarkably like an AWT one.
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public final class Rectangle implements ReadableRectangle, WritableRectangle, Serializable { public final class Rectangle implements ReadableRectangle, WritableRectangle, Serializable {

View File

@ -32,12 +32,12 @@
package org.lwjgl.util; package org.lwjgl.util;
/** /**
* $Id$
* *
* Simple interface to things that can be Rendered. * Simple interface to things that can be Rendered.
* *
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface Renderable { public interface Renderable {

View File

@ -34,7 +34,6 @@ package org.lwjgl.util;
import org.lwjgl.Sys; import org.lwjgl.Sys;
/** /**
* $Id$
* *
* A hires timer. This measures time in seconds as floating point values. * A hires timer. This measures time in seconds as floating point values.
* All Timers created are updated simultaneously by calling the static method * All Timers created are updated simultaneously by calling the static method
@ -43,6 +42,7 @@ import org.lwjgl.Sys;
* *
* @author cix_foo <cix_foo@users.sourceforge.net> * @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class Timer { public class Timer {

View File

@ -47,12 +47,12 @@ import javax.sound.sampled.AudioSystem;
import org.lwjgl.openal.AL10; import org.lwjgl.openal.AL10;
/** /**
* $Id$
* *
* Utitlity class for loading wavefiles. * Utitlity class for loading wavefiles.
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class WaveData { public class WaveData {
/** actual wave data */ /** actual wave data */

View File

@ -34,11 +34,10 @@ package org.lwjgl.util;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;
/** /**
* $Id$
* Write interface for Colors * Write interface for Colors
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface WritableColor { public interface WritableColor {
/** /**

View File

@ -32,10 +32,10 @@
package org.lwjgl.util; package org.lwjgl.util;
/** /**
* $Id$
* Write interface for Dimensions * Write interface for Dimensions
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface WritableDimension { public interface WritableDimension {

View File

@ -32,10 +32,10 @@
package org.lwjgl.util; package org.lwjgl.util;
/** /**
* $Id$
* Write interface for Points * Write interface for Points
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface WritablePoint { public interface WritablePoint {
public void setLocation(int x, int y); public void setLocation(int x, int y);

View File

@ -32,10 +32,10 @@
package org.lwjgl.util; package org.lwjgl.util;
/** /**
* $Id$
* Write interface for Rectangles * Write interface for Rectangles
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface WritableRectangle extends WritablePoint, WritableDimension { public interface WritableRectangle extends WritablePoint, WritableDimension {

View File

@ -12,7 +12,6 @@ import java.util.HashMap;
import java.util.StringTokenizer; import java.util.StringTokenizer;
/** /**
* $Id$
* <p> * <p>
* NOTE: This simple XPM reader does not support extensions nor hotspots * NOTE: This simple XPM reader does not support extensions nor hotspots
* </p> * </p>
@ -20,6 +19,7 @@ import java.util.StringTokenizer;
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @author Jos Hirth * @author Jos Hirth
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class XPMFile { public class XPMFile {

View File

@ -33,12 +33,12 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* The OpenAL specific generator behaviour * The OpenAL specific generator behaviour
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import com.sun.mirror.declaration.*; import com.sun.mirror.declaration.*;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,12 +32,12 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* AutoType and AutoSize is annotated with @Auto. * AutoType and AutoSize is annotated with @Auto.
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,13 +32,13 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* AutoResultSize specifies that a parameter should determine * AutoResultSize specifies that a parameter should determine
* the size of a Buffer result. * the size of a Buffer result.
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,13 +32,13 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* AutoSize specifies that a parameter should be pre-computed * AutoSize specifies that a parameter should be pre-computed
* according to the remaining() of a Buffer parameter. * according to the remaining() of a Buffer parameter.
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,13 +32,13 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* Indicates that a parameter should be pre-computed according * Indicates that a parameter should be pre-computed according
* to the type of a Buffer parameter. * to the type of a Buffer parameter.
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -1,10 +1,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public enum BufferKind { public enum BufferKind {

View File

@ -32,13 +32,13 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* This annotation implies that a Buffer parameter can be an * This annotation implies that a Buffer parameter can be an
* integer VBO/PBO offset. * integer VBO/PBO offset.
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,13 +32,13 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* This annotation indicates that a buffer parameter is cached by * This annotation indicates that a buffer parameter is cached by
* OpenGL. * OpenGL.
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -47,12 +47,12 @@ import java.nio.*;
import java.lang.annotation.Annotation; import java.lang.annotation.Annotation;
/** /**
* $Id$
* *
* Generator visitor for the context capabilities generator tool * Generator visitor for the context capabilities generator tool
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class ContextCapabilitiesGenerator { public class ContextCapabilitiesGenerator {
private final static String STUBS_LOADED_NAME = "loaded_stubs"; private final static String STUBS_LOADED_NAME = "loaded_stubs";

View File

@ -52,12 +52,12 @@ import static java.util.Collections.*;
import static com.sun.mirror.util.DeclarationVisitors.*; import static com.sun.mirror.util.DeclarationVisitors.*;
/** /**
* $Id$
* *
* Generator tool for creating the ContexCapabilities class * Generator tool for creating the ContexCapabilities class
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class ContextGeneratorProcessorFactory implements AnnotationProcessorFactory, RoundCompleteListener { public class ContextGeneratorProcessorFactory implements AnnotationProcessorFactory, RoundCompleteListener {
private static boolean first_round = true; private static boolean first_round = true;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -33,12 +33,12 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* OpenGL sepcific generator behaviour * OpenGL sepcific generator behaviour
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import com.sun.mirror.declaration.*; import com.sun.mirror.declaration.*;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -44,13 +44,13 @@ import static java.util.Collections.*;
import static com.sun.mirror.util.DeclarationVisitors.*; import static com.sun.mirror.util.DeclarationVisitors.*;
/** /**
* $Id$
* *
* Generator tool for creating the java classes and native code * Generator tool for creating the java classes and native code
* from an annotated template java interface. * from an annotated template java interface.
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class GeneratorProcessorFactory implements AnnotationProcessorFactory, RoundCompleteListener { public class GeneratorProcessorFactory implements AnnotationProcessorFactory, RoundCompleteListener {
private static boolean first_round = true; private static boolean first_round = true;

View File

@ -46,12 +46,12 @@ import java.io.File;
import java.nio.*; import java.nio.*;
/** /**
* $Id$
* *
* Generator visitor for the generator tool * Generator visitor for the generator tool
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class GeneratorVisitor extends SimpleDeclarationVisitor { public class GeneratorVisitor extends SimpleDeclarationVisitor {
private final AnnotationProcessorEnvironment env; private final AnnotationProcessorEnvironment env;

View File

@ -32,13 +32,13 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* Implies that a parameter is indirect, and forces the native * Implies that a parameter is indirect, and forces the native
* stub to use the indirection operator '&' on it. * stub to use the indirection operator '&' on it.
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -36,13 +36,13 @@ import com.sun.mirror.type.*;
import com.sun.mirror.util.*; import com.sun.mirror.util.*;
/** /**
* $Id$
* *
* A TypeVisitor that translates TypeMirrors to JNI * A TypeVisitor that translates TypeMirrors to JNI
* type strings. * type strings.
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class JNITypeTranslator implements TypeVisitor { public class JNITypeTranslator implements TypeVisitor {
private final StringBuilder signature = new StringBuilder(); private final StringBuilder signature = new StringBuilder();

View File

@ -33,12 +33,12 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* This class generates the methods in the generated java source files. * This class generates the methods in the generated java source files.
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import com.sun.mirror.apt.*; import com.sun.mirror.apt.*;

View File

@ -36,13 +36,13 @@ import com.sun.mirror.type.*;
import com.sun.mirror.util.*; import com.sun.mirror.util.*;
/** /**
* $Id$
* *
* A TypeVisitor that translates (annotated) TypeMirrors to * A TypeVisitor that translates (annotated) TypeMirrors to
* java types (represented by a Class) * java types (represented by a Class)
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class JavaTypeTranslator implements TypeVisitor { public class JavaTypeTranslator implements TypeVisitor {
private Class type; private Class type;

View File

@ -33,12 +33,12 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* This class generates the functions in the native source files. * This class generates the functions in the native source files.
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import com.sun.mirror.apt.*; import com.sun.mirror.apt.*;

View File

@ -32,13 +32,13 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* This annotation indicates that another annotation is * This annotation indicates that another annotation is
* a native type. * a native type.
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -33,13 +33,13 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* A TypeVisitor that translates types (and optional native type * A TypeVisitor that translates types (and optional native type
* annotations) to the native type string. * annotations) to the native type string.
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import com.sun.mirror.declaration.*; import com.sun.mirror.declaration.*;

View File

@ -32,13 +32,13 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* This annotation implies that a method should not include * This annotation implies that a method should not include
* error checking even if it is enabled. * error checking even if it is enabled.
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,13 +32,13 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* This annotation implies that a Buffer argument should be * This annotation implies that a Buffer argument should be
* checked for a trailing '\0' * checked for a trailing '\0'
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -1,10 +1,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.io.PrintWriter; import java.io.PrintWriter;

View File

@ -32,7 +32,6 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* This annotation implies that the corresponding native * This annotation implies that the corresponding native
* function symbol is named after the platform specific * function symbol is named after the platform specific
@ -40,6 +39,7 @@ package org.lwjgl.util.generator;
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -33,13 +33,13 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* A TypeVisitor that translates (annotated) TypeMirrors to * A TypeVisitor that translates (annotated) TypeMirrors to
* postfixes. * postfixes.
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import com.sun.mirror.declaration.*; import com.sun.mirror.declaration.*;

View File

@ -52,12 +52,12 @@ import static java.util.Collections.*;
import static com.sun.mirror.util.DeclarationVisitors.*; import static com.sun.mirror.util.DeclarationVisitors.*;
/** /**
* $Id$
* *
* Generator tool for creating the References class * Generator tool for creating the References class
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class ReferencesGeneratorProcessorFactory implements AnnotationProcessorFactory, RoundCompleteListener { public class ReferencesGeneratorProcessorFactory implements AnnotationProcessorFactory, RoundCompleteListener {
private final static String REFERENCES_CLASS_NAME = "References"; private final static String REFERENCES_CLASS_NAME = "References";

View File

@ -33,12 +33,12 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* This class generates the initNatives native function. * This class generates the initNatives native function.
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import com.sun.mirror.declaration.*; import com.sun.mirror.declaration.*;

View File

@ -32,13 +32,13 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* This annotation indicates that the method result is in the * This annotation indicates that the method result is in the
* specified parameter. * specified parameter.
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -33,12 +33,12 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* A TypeVisitor that translates types to JNI signatures. * A TypeVisitor that translates types to JNI signatures.
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import com.sun.mirror.type.*; import com.sun.mirror.type.*;

View File

@ -1,10 +1,10 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public enum Signedness { public enum Signedness {

View File

@ -32,13 +32,13 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* This annotation implies that a method have its postfix stripped * This annotation implies that a method have its postfix stripped
* according to a specified Buffer parameter. * according to a specified Buffer parameter.
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.lang.annotation.Target; import java.lang.annotation.Target;

View File

@ -32,13 +32,13 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* This class represent a parameter configuration. There are multiple * This class represent a parameter configuration. There are multiple
* TypeInfos in case of multityped parameters. * TypeInfos in case of multityped parameters.
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import com.sun.mirror.declaration.*; import com.sun.mirror.declaration.*;

View File

@ -33,12 +33,12 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* The interface to the OpenAL/OpenGL specific generator behaviour * The interface to the OpenAL/OpenGL specific generator behaviour
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import com.sun.mirror.declaration.*; import com.sun.mirror.declaration.*;

View File

@ -33,12 +33,12 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* A TypeVisitor that generates the native typedefs. * A TypeVisitor that generates the native typedefs.
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import com.sun.mirror.declaration.*; import com.sun.mirror.declaration.*;

View File

@ -32,12 +32,12 @@
package org.lwjgl.util.generator; package org.lwjgl.util.generator;
/** /**
* $Id$
* *
* Various utility methods to the generator. * Various utility methods to the generator.
* *
* @author elias_naur <elias_naur@users.sourceforge.net> * @author elias_naur <elias_naur@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import com.sun.mirror.type.*; import com.sun.mirror.type.*;

View File

@ -34,10 +34,10 @@ package org.lwjgl.util.model;
import org.lwjgl.util.vector.Matrix4f; import org.lwjgl.util.vector.Matrix4f;
/** /**
* $Id$
* A BoneFrame describes a set of new positions for Bones in an animation. * A BoneFrame describes a set of new positions for Bones in an animation.
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class BoneFrame extends Frame { public class BoneFrame extends Frame {

View File

@ -38,7 +38,6 @@ import org.lwjgl.util.vector.Vector2f;
/** /**
* $Id$
* *
* A simple animated, skinned, boned 3D model, consisting of a single mesh * A simple animated, skinned, boned 3D model, consisting of a single mesh
* with a single material. The model's internal format is optimised for RAM storage; * with a single material. The model's internal format is optimised for RAM storage;
@ -47,6 +46,7 @@ import org.lwjgl.util.vector.Vector2f;
* *
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class BonedModel extends Model { public class BonedModel extends Model {

View File

@ -34,12 +34,12 @@ package org.lwjgl.util.model;
import org.lwjgl.util.vector.ReadableVector3f; import org.lwjgl.util.vector.ReadableVector3f;
/** /**
* $Id$
* *
* A BonedVerex is a Vertex influenced by bone Weights * A BonedVerex is a Vertex influenced by bone Weights
* *
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class BonedVertex extends Vertex { public class BonedVertex extends Vertex {

View File

@ -34,10 +34,10 @@ package org.lwjgl.util.model;
import java.io.Serializable; import java.io.Serializable;
/** /**
* $Id$
* The base class for animation frames. * The base class for animation frames.
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public abstract class Frame implements Serializable, Comparable { public abstract class Frame implements Serializable, Comparable {

View File

@ -33,10 +33,10 @@ package org.lwjgl.util.model;
/** /**
* $Id$
* A MeshFrame describes a set of new positions for Vertices in an animation. * A MeshFrame describes a set of new positions for Vertices in an animation.
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class MeshFrame extends Frame { public class MeshFrame extends Frame {

View File

@ -38,7 +38,6 @@ import org.lwjgl.util.vector.Vector2f;
/** /**
* $Id$
* *
* A simple animated 3d mesh, consisting of multiple vertex positions. * A simple animated 3d mesh, consisting of multiple vertex positions.
* with a single material. The model's internal format is optimised for RAM storage; * with a single material. The model's internal format is optimised for RAM storage;
@ -47,6 +46,7 @@ import org.lwjgl.util.vector.Vector2f;
* *
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class MeshedModel extends Model { public class MeshedModel extends Model {

View File

@ -39,13 +39,13 @@ import org.lwjgl.util.vector.Vector2f;
/** /**
* $Id$
* *
* Base class for the two kinds of model supported. A Model has a single "material" * Base class for the two kinds of model supported. A Model has a single "material"
* and a single triangular mesh with a single skin, and any number of animations. * and a single triangular mesh with a single skin, and any number of animations.
* *
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public abstract class Model implements Serializable { public abstract class Model implements Serializable {

View File

@ -34,9 +34,9 @@ package org.lwjgl.util.model;
import java.io.Serializable; import java.io.Serializable;
/** /**
* $Id$
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class Triangle implements Serializable { public class Triangle implements Serializable {

View File

@ -36,12 +36,12 @@ import java.io.Serializable;
import org.lwjgl.util.vector.ReadableVector3f; import org.lwjgl.util.vector.ReadableVector3f;
/** /**
* $Id$
* *
* A single vertex in a mesh. * A single vertex in a mesh.
* *
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class Vertex implements Serializable { public class Vertex implements Serializable {

View File

@ -34,10 +34,10 @@ package org.lwjgl.util.model;
import java.io.Serializable; import java.io.Serializable;
/** /**
* $Id$
* Describes how a bone influences a vertex. * Describes how a bone influences a vertex.
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class Weight implements Serializable { public class Weight implements Serializable {

View File

@ -54,13 +54,13 @@ import org.w3c.dom.Document;
import org.w3c.dom.Element; import org.w3c.dom.Element;
/** /**
* $Id$
* *
* Loads a Model from an XML document. Construct with an XML Document as the argument, * Loads a Model from an XML document. Construct with an XML Document as the argument,
* and then retrieve the Model by calling load(). * and then retrieve the Model by calling load().
* *
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class XMLLoader { public class XMLLoader {

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.model.renderer; package org.lwjgl.util.model.renderer;
/** /**
* $Id$
* Listens out for events that occur in animations and takes appropriate actions * Listens out for events that occur in animations and takes appropriate actions
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface AnimationEventListener { public interface AnimationEventListener {
/** /**

View File

@ -36,12 +36,12 @@ import org.lwjgl.util.model.Frame;
import org.lwjgl.util.model.Model; import org.lwjgl.util.model.Model;
/** /**
* $Id$
* The interface for processing individual frames of rendered models. * The interface for processing individual frames of rendered models.
* Typically the processor will process the frame of animation, and store * Typically the processor will process the frame of animation, and store
* the processed results in some data structure that make it easy to render. * the processed results in some data structure that make it easy to render.
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface FrameProcessor extends Renderable { public interface FrameProcessor extends Renderable {

View File

@ -42,7 +42,6 @@ import org.lwjgl.util.model.Frame;
import org.lwjgl.util.model.Model; import org.lwjgl.util.model.Model;
/** /**
* $Id$
* *
* Pluggable model renderer * Pluggable model renderer
* <p> * <p>
@ -55,6 +54,7 @@ import org.lwjgl.util.model.Model;
* *
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class ModelRenderer implements Renderable { public class ModelRenderer implements Renderable {

View File

@ -35,10 +35,10 @@ import org.lwjgl.opengl.GL11;
import org.lwjgl.util.vector.Vector3f; import org.lwjgl.util.vector.Vector3f;
/** /**
* $Id$
* A 3D sprite! * A 3D sprite!
* @author $Author$ * @author $Author$
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class Sprite3D extends ModelRenderer { public class Sprite3D extends ModelRenderer {

View File

@ -35,13 +35,13 @@ import java.io.Serializable;
import java.nio.FloatBuffer; import java.nio.FloatBuffer;
/** /**
* $Id$
* *
* Base class for matrices. When a matrix is constructed it will be the identity * Base class for matrices. When a matrix is constructed it will be the identity
* matrix unless otherwise stated. * matrix unless otherwise stated.
* *
* @author cix_foo <cix_foo@users.sourceforge.net> * @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public abstract class Matrix implements Serializable { public abstract class Matrix implements Serializable {

View File

@ -35,12 +35,12 @@ import java.io.Serializable;
import java.nio.FloatBuffer; import java.nio.FloatBuffer;
/** /**
* $Id$
* *
* Holds a 2x2 matrix * Holds a 2x2 matrix
* *
* @author cix_foo <cix_foo@users.sourceforge.net> * @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class Matrix2f extends Matrix implements Serializable { public class Matrix2f extends Matrix implements Serializable {

View File

@ -35,12 +35,12 @@ import java.io.Serializable;
import java.nio.FloatBuffer; import java.nio.FloatBuffer;
/** /**
* $Id$
* *
* Holds a 3x3 matrix. * Holds a 3x3 matrix.
* *
* @author cix_foo <cix_foo@users.sourceforge.net> * @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class Matrix3f extends Matrix implements Serializable { public class Matrix3f extends Matrix implements Serializable {

View File

@ -32,12 +32,12 @@
package org.lwjgl.util.vector; package org.lwjgl.util.vector;
/** /**
* $Id$
* *
* Quaternions for LWJGL! * Quaternions for LWJGL!
* *
* @author fbi * @author fbi
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
import java.nio.FloatBuffer; import java.nio.FloatBuffer;

View File

@ -35,12 +35,12 @@ import java.io.Serializable;
import java.nio.FloatBuffer; import java.nio.FloatBuffer;
/** /**
* $Id$
* *
* Base class for vectors. * Base class for vectors.
* *
* @author cix_foo <cix_foo@users.sourceforge.net> * @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public abstract class Vector implements Serializable, ReadableVector { public abstract class Vector implements Serializable, ReadableVector {

View File

@ -35,12 +35,12 @@ import java.io.Serializable;
import java.nio.FloatBuffer; import java.nio.FloatBuffer;
/** /**
* $Id$
* *
* Holds a 2-tuple vector. * Holds a 2-tuple vector.
* *
* @author cix_foo <cix_foo@users.sourceforge.net> * @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class Vector2f extends Vector implements Serializable, ReadableVector2f, WritableVector2f { public class Vector2f extends Vector implements Serializable, ReadableVector2f, WritableVector2f {

View File

@ -35,12 +35,12 @@ import java.io.Serializable;
import java.nio.FloatBuffer; import java.nio.FloatBuffer;
/** /**
* $Id$
* *
* Holds a 3-tuple vector. * Holds a 3-tuple vector.
* *
* @author cix_foo <cix_foo@users.sourceforge.net> * @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class Vector3f extends Vector implements Serializable, ReadableVector3f, WritableVector3f { public class Vector3f extends Vector implements Serializable, ReadableVector3f, WritableVector3f {

View File

@ -35,12 +35,12 @@ import java.io.Serializable;
import java.nio.FloatBuffer; import java.nio.FloatBuffer;
/** /**
* $Id$
* *
* Holds a 4-tuple vector. * Holds a 4-tuple vector.
* *
* @author cix_foo <cix_foo@users.sourceforge.net> * @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public class Vector4f extends Vector implements Serializable, ReadableVector4f, WritableVector4f { public class Vector4f extends Vector implements Serializable, ReadableVector4f, WritableVector4f {

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.vector; package org.lwjgl.util.vector;
/** /**
* $Id$
* Writable interface to Vector2fs * Writable interface to Vector2fs
* @author $author$ * @author $author$
* @version $revision$ * @version $revision$
* $Id$
*/ */
public interface WritableVector2f { public interface WritableVector2f {

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.vector; package org.lwjgl.util.vector;
/** /**
* $Id$
* Writable interface to Vector3fs * Writable interface to Vector3fs
* @author $author$ * @author $author$
* @version $revision$ * @version $revision$
* $Id$
*/ */
public interface WritableVector3f extends WritableVector2f { public interface WritableVector3f extends WritableVector2f {

View File

@ -32,10 +32,10 @@
package org.lwjgl.util.vector; package org.lwjgl.util.vector;
/** /**
* $Id$
* Writable interface to Vector4fs * Writable interface to Vector4fs
* @author $author$ * @author $author$
* @version $revision$ * @version $revision$
* $Id$
*/ */
public interface WritableVector4f extends WritableVector3f { public interface WritableVector4f extends WritableVector3f {

View File

@ -39,13 +39,13 @@ import java.nio.DoubleBuffer;
import org.lwjgl.util.generator.*; import org.lwjgl.util.generator.*;
/** /**
* $Id$
* <br> * <br>
* This is the core OpenAL class. This class implements * This is the core OpenAL class. This class implements
* AL.h version 1.0 * AL.h version 1.0
* *
* @author Brian Matzon <brian@matzon.dk> * @author Brian Matzon <brian@matzon.dk>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface AL10 { public interface AL10 {
/** Bad value */ /** Bad value */

View File

@ -36,12 +36,12 @@ import org.lwjgl.util.generator.*;
import java.nio.*; import java.nio.*;
/** /**
* $Id$
* <p/> * <p/>
* The GL12 imaging subset extension. * The GL12 imaging subset extension.
* *
* @author cix_foo <cix_foo@users.sourceforge.net> * @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
@Extension(postfix = "") @Extension(postfix = "")

View File

@ -36,12 +36,12 @@ import org.lwjgl.util.generator.*;
import java.nio.*; import java.nio.*;
/** /**
* $Id$
* *
* The core OpenGL1.1 API. * The core OpenGL1.1 API.
* *
* @author cix_foo <cix_foo@users.sourceforge.net> * @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface GL11 { public interface GL11 {

View File

@ -36,12 +36,12 @@ import org.lwjgl.util.generator.*;
import java.nio.*; import java.nio.*;
/** /**
* $Id$
* <p/> * <p/>
* The core OpenGL1.2.1 API, with the imaging subset. * The core OpenGL1.2.1 API, with the imaging subset.
* *
* @author cix_foo <cix_foo@users.sourceforge.net> * @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface GL12 { public interface GL12 {

View File

@ -36,12 +36,12 @@ import org.lwjgl.util.generator.*;
import java.nio.*; import java.nio.*;
/** /**
* $Id$
* <p/> * <p/>
* The core OpenGL1.3 API. * The core OpenGL1.3 API.
* *
* @author cix_foo <cix_foo@users.sourceforge.net> * @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface GL13 { public interface GL13 {
int GL_TEXTURE0 = 0x84C0; int GL_TEXTURE0 = 0x84C0;

View File

@ -36,12 +36,12 @@ import org.lwjgl.util.generator.*;
import java.nio.*; import java.nio.*;
/** /**
* $Id$
* <p/> * <p/>
* The core OpenGL1.4 API. * The core OpenGL1.4 API.
* *
* @author cix_foo <cix_foo@users.sourceforge.net> * @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$ * @version $Revision$
* $Id$
*/ */
public interface GL14 { public interface GL14 {
int GL_GENERATE_MIPMAP = 0x8191; int GL_GENERATE_MIPMAP = 0x8191;