StaticFieldTester.java
package com.mackenziehigh.autumn.resources;
/**
* This class provides static fields for use in tests and example programs.
*
* @author Mackenzie High
*/
public final class StaticFieldTester
{
/**
* Test Field #1.
*/
public static boolean value1;
/**
* Test Field #2.
*/
public static char value2;
/**
* Test Field #3.
*/
public static byte value3;
/**
* Test Field #4.
*/
public static short value4;
/**
* Test Field #5.
*/
public static int value5;
/**
* Test Field #6.
*/
public static long value6;
/**
* Test Field #7.
*/
public static float value7;
/**
* Test Field #8.
*/
public static double value8;
/**
* Test Field #9.
*/
public static String value9;
/**
* Test Field.
*/
public static Object object;
}