public class Attributes {
	int 		testAttribute1;
	public	short		testAttriubte2 = 99;
	private 	long 		testAttribute3 = 5L;
	protected boolean	testAttribute4;
	volatile	private char testAttribute5;
	public transient long testAttribute6 = 0x42;

	static final double pi = 3.141592654;

	TestClass testAttributeC1;
	TestClass testAttributeC2 = new TestClass();
} //class Attributes

class TestClass {
} //class TestClass