moved files to core-java-modules/core-java-reflection

This commit is contained in:
Sjmillington
2019-09-03 19:47:15 +01:00
parent 06cbdfce02
commit 2da48b91e7
23 changed files with 29 additions and 16 deletions

View File

@@ -1,18 +0,0 @@
package com.baeldung.reflect;
public class Person {
private String fullName;
public Person(String fullName) {
this.fullName = fullName;
}
public void setFullName(String fullName) {
this.fullName = fullName;
}
public String getFullName() {
return fullName;
}
}