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