package fields; public class T { int i = 345; String j = "stringValue"; public Object getI() { return i; } public Object getJ() { return j; } }