Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- @author Albert FIlip Silalahi
- @version 4 Nov 2020
- */
- public class Person
- {
- private final String name;
- public Person(String newName)
- {
- this.name = newName;
- }
- public String getName()
- {
- return name;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment