You have a class with three fields:
public class SomeClass {
private AnotherClass instanceField = new AnotherClass();
String stringField = "";
protected int intField;
}
Which of these fields will be accessible from a method of AnotherClass in the same package (not default)?