Chapter 1

This commit is contained in:
Sebastian Eidecker
2019-03-24 19:16:27 +01:00
parent 4eadfcc252
commit 3d51d5ede1
12 changed files with 255 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
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");
}
}