Fix some straightforward Javadoc problems

This commit is contained in:
Philip Whitehouse 2014-05-20 00:05:53 +01:00
parent 50c0c30499
commit fd726e545f
5 changed files with 10 additions and 10 deletions

View File

@ -605,7 +605,7 @@ public class LWJGLUtil {
* @param field the Field to test * @param field the Field to test
* @param value the integer value of the field * @param value the integer value of the field
* *
* @result true if the Field is accepted * @return true if the Field is accepted
*/ */
boolean accept(Field field, int value); boolean accept(Field field, int value);

View File

@ -82,7 +82,7 @@ public final class ALCcontext {
* @param contextFrequency Frequency to add * @param contextFrequency Frequency to add
* @param contextRefresh Refresh rate to add * @param contextRefresh Refresh rate to add
* @param contextSynchronized Whether to synchronize the context * @param contextSynchronized Whether to synchronize the context
* @return * @return attribute list
*/ */
static IntBuffer createAttributeList(int contextFrequency, int contextRefresh, int contextSynchronized) { static IntBuffer createAttributeList(int contextFrequency, int contextRefresh, int contextSynchronized) {
IntBuffer attribList = BufferUtils.createIntBuffer(7); IntBuffer attribList = BufferUtils.createIntBuffer(7);

View File

@ -1867,8 +1867,8 @@ public class AppletLoader extends Applet implements Runnable, AppletStub {
/** /**
* Compare two certificate chains to see if they match * Compare two certificate chains to see if they match
* *
* @param cert1 first chain of certificates * @param certs1 first chain of certificates
* @param cert2 second chain of certificates * @param certs2 second chain of certificates
* *
* @return true if the certificate chains are the same * @return true if the certificate chains are the same
*/ */
@ -2224,7 +2224,7 @@ public class AppletLoader extends Applet implements Runnable, AppletStub {
/** /**
* set the state of applet loader * set the state of applet loader
* @param new state of applet loader * @param state new state of applet loader
* */ * */
protected void setState(int state) { protected void setState(int state) {
this.state = state; this.state = state;
@ -2256,4 +2256,4 @@ public class AppletLoader extends Applet implements Runnable, AppletStub {
} }
} }
} }

View File

@ -98,7 +98,7 @@ public class Project extends Util {
* @param src * @param src
* @param inverse * @param inverse
* *
* @return * @return true if the matrix was succesfully inverted
*/ */
private static boolean __gluInvertMatrixf(FloatBuffer src, FloatBuffer inverse) { private static boolean __gluInvertMatrixf(FloatBuffer src, FloatBuffer inverse) {
int i, j, k, swap; int i, j, k, swap;

View File

@ -52,15 +52,15 @@ public @interface CacheLinePad {
/** /**
* When true, cache-line padding will be inserted before the field. * When true, cache-line padding will be inserted before the field.
* *
* @return * @return true if cache-line padding will be inserted before the field
*/ */
boolean before() default false; boolean before() default false;
/** /**
* When true, cache-line padding will be inserted after the field. * When true, cache-line padding will be inserted after the field.
* *
* @return * @return true if cache-line padding will be inserted after the field
*/ */
boolean after() default true; boolean after() default true;
} }