[BAEL-2424] Updated tests to illustrate modifiers filtering and to disable order checking

This commit is contained in:
dupirefr
2019-01-19 10:06:35 +01:00
parent bb966c8e14
commit 2acd1e2792
3 changed files with 82 additions and 60 deletions
@@ -2,6 +2,6 @@ package com.baeldung.reflection;
public class MonthEmployee extends Employee {
private double reward;
protected double reward;
}
@@ -2,7 +2,7 @@ package com.baeldung.reflection;
public class Person {
public String lastName;
protected String lastName;
private String firstName;
}