[Deprecation] Not enough warnings for you?

pull/12/head
Caroline Bell 2020-02-27 18:52:41 -08:00
parent bb192e0710
commit f6e9c5ebba
13 changed files with 13 additions and 0 deletions

View File

@ -40,6 +40,7 @@ import java.nio.FloatBuffer;
* @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$
* $Id$ */
@Deprecated
public abstract class Matrix implements Serializable
{
private static final long serialVersionUID = 1L;

View File

@ -41,6 +41,7 @@ import com.github.hydos.ginger.engine.math.vectors.Vector2f;
* @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$
* $Id$ */
@Deprecated
public class Matrix2f extends Matrix implements Serializable
{
private static final long serialVersionUID = 1L;

View File

@ -41,6 +41,7 @@ import com.github.hydos.ginger.engine.math.vectors.Vector3f;
* @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$
* $Id$ */
@Deprecated
public class Matrix3f extends Matrix implements Serializable
{
private static final long serialVersionUID = 1L;

View File

@ -41,6 +41,7 @@ import com.github.hydos.ginger.engine.math.vectors.*;
/** Holds a 4x4 float matrix.
*
* @author foo */
@Deprecated
public class Matrix4f extends Matrix implements Serializable
{
private static final long serialVersionUID = 1L;

View File

@ -34,6 +34,7 @@ package com.github.hydos.ginger.engine.math.vectors;
import java.nio.FloatBuffer;
/** @author foo */
@Deprecated
public interface ReadableVector
{
/** @return the length of the vector */

View File

@ -32,6 +32,7 @@
package com.github.hydos.ginger.engine.math.vectors;
/** @author foo */
@Deprecated
public interface ReadableVector2f extends ReadableVector
{
/** @return x */

View File

@ -32,6 +32,7 @@
package com.github.hydos.ginger.engine.math.vectors;
/** @author foo */
@Deprecated
public interface ReadableVector3f extends ReadableVector2f
{
/** @return z */

View File

@ -32,6 +32,7 @@
package com.github.hydos.ginger.engine.math.vectors;
/** @author foo */
@Deprecated
public interface ReadableVector4f extends ReadableVector3f
{
/** @return w */

View File

@ -39,6 +39,7 @@ import java.nio.FloatBuffer;
* @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$
* $Id$ */
@Deprecated
public abstract class Vector implements Serializable, ReadableVector
{
private static final long serialVersionUID = 1L;

View File

@ -39,6 +39,7 @@ import java.nio.FloatBuffer;
* @author cix_foo <cix_foo@users.sourceforge.net>
* @version $Revision$
* $Id$ */
@Deprecated
public class Vector2f extends Vector implements Serializable, ReadableVector2f, WritableVector2f
{
private static final long serialVersionUID = 1L;

View File

@ -36,6 +36,7 @@ package com.github.hydos.ginger.engine.math.vectors;
* @author $author$
* @version $revision$
* $Id$ */
@Deprecated
public interface WritableVector2f
{
/** Set the X,Y values

View File

@ -36,6 +36,7 @@ package com.github.hydos.ginger.engine.math.vectors;
* @author $author$
* @version $revision$
* $Id$ */
@Deprecated
public interface WritableVector3f extends WritableVector2f
{
/** Set the X,Y,Z values

View File

@ -36,6 +36,7 @@ package com.github.hydos.ginger.engine.math.vectors;
* @author $author$
* @version $revision$
* $Id$ */
@Deprecated
public interface WritableVector4f extends WritableVector3f
{
/** Set the X,Y,Z,W values