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