Merge branch 'master' into core-java-move-1

This commit is contained in:
Sam Millington
2019-09-08 18:21:13 +01:00
committed by GitHub
328 changed files with 5465 additions and 5578 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;
}
}