[BAEL-2424] Added classes and tests

This commit is contained in:
dupirefr
2019-01-05 19:03:14 +01:00
parent 956c2e7dd6
commit 994cb303a0
4 changed files with 150 additions and 0 deletions
@@ -0,0 +1,7 @@
package com.baeldung.reflection;
public class Employee extends Person {
public int employeeId;
}
@@ -0,0 +1,7 @@
package com.baeldung.reflection;
public class MonthEmployee extends Employee {
private double reward;
}
@@ -0,0 +1,8 @@
package com.baeldung.reflection;
public class Person {
public String lastName;
private String firstName;
}