Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Appointment Class
- public class Appointment {
- protected String name;
- protected String time;
- // Constructor Method
- public Appointment(String appointmentName, String appointmentTime) {
- name = appointmentName;
- time = appointmentTime;
- }
- // Name accessor method
- public String getName() {
- return name;
- }
- // Time accessor method
- public String getTime() {
- return time;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement