refactor example

This commit is contained in:
Chris Oberle
2018-05-30 07:40:26 -04:00
parent 543c87fa70
commit d683b370f6
2 changed files with 20 additions and 43 deletions
@@ -2,41 +2,17 @@ package com.baeldung.reflect;
public class Person {
private String firstName;
private String lastName;
private Integer age;
private String fullName;
public Person(String firstName, String lastName, Integer age) {
this.firstName = firstName;
this.lastName = lastName;
this.age = age;
public Person(String fullName) {
this.fullName = fullName;
}
public Person() {}
public String getFirstName() {
return firstName;
public void setFullName(String fullName) {
this.fullName = fullName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
public String getFullName() {
return fullName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public Integer getAge() {
return age;
}
public void setAge(Integer age) {
this.age = age;
}
}