This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Person { | |
private String firstName; | |
private String lastName; | |
private int age; | |
private Gender gender; | |
public String getFullName() { | |
return this.firstName + " " + this.lastName; | |
} | |
// ... getter and setter | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment