Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Write a description of class Person here.
- *
- * @author Ahmad Lamaul Farid
- * @version 28 Oktober 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
Advertisement