/*
create a folder pic20
save the file into the folder pic20
compile by javac pic20/SuperClass.java 
(don't change your folder to pic20)
*/

package pic20;

public class SuperClass {
    private int iamprivate = 1;
    protected int iamprotected = 2;
    public int iampublic = 3;
    
    private void privateMethod() {
	System.out.println("I am a private method in the class SuperClass.");
    }
    
    protected void protectedMethod() {
	System.out.println("I am a protected method in the class SuperClass.");
    }
    
    public void publicMethod() {
	System.out.println("I am a public method in the class SuperClass.");
    }
}
    
    
