package org.eidecker.oca8lernen.chapter01; /** * @author seidecke. */ public class ParentOne { private String text; public static void handle() { System.out.println("handle()"); } public static void handle(String s) { System.out.println("handle(String)"); } public void test() { } protected void protectedTest() { } private void privateTest() { } void packageTest() { System.out.printf("ParentOne.packageTest"); } }