1 2 3 4 5 6 7 8 9
package p1; public class Base { protected int value=0; protected String getName() { return "Base"; } }