-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLabAssignment Inheritance-2.txt
More file actions
652 lines (322 loc) · 11.2 KB
/
LabAssignment Inheritance-2.txt
File metadata and controls
652 lines (322 loc) · 11.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
Filename: “Appointment.java”
//define the class Appointment
public abstract class Appointment
{
//declare the variable description
private String description;
//define the constructor Appointment
public Appointment()
{
//set the value of description
description = "";
}
//method to set the description of this appointment.
public void setDescription(String description)
{
//set the description
this.description = description;
}
//method to determine if this appointment occurs on the given date.
public abstract boolean occursOn(int year, int month, int day);
//define the method toString()
public String toString()
{
//return the description as a string
return description;
}
}
Filename: “AppointmentTester.java”
//define the method AppointmentTester
public class AppointmentTester
{
//define main method
public static void main(String[] args)
{
//print the message
System.out.print("Daily is subclass of Appointment: ");
//get the super class of appoinment, if it is Daily print true, false otherwise
System.out.println(Daily.class.getSuperclass() == Appointment.class);
//print the expected result
System.out.println("Expected: true");
//print the message
System.out.print("Daily appointments have no extra fields:");
// if Daily has no extra fields print true
System.out.println(Daily.class.getDeclaredFields().length == 0);
//print the expected value
System.out.println("Expected: true");
// Try some appointments
Appointment obj = new Daily("walk the dog");
//print the daily appoinment
System.out.println("Checking daily appointment: " + obj);
//print the expected appoinment
System.out.println("Expected: walk the dog");
//call the method occursOn on a particular date. print the result
System.out.println(obj.occursOn(2016, 12, 25));
//print the expected result
System.out.println("Expected: true");
}
}
#################### 2
File name: “Daily.java”
//Import necessary packages
import java.io.PrintWriter;
import java.util.Scanner;
//Create a class
public class Daily extends Appointment
{
//Define the constructor
public Daily() { }
/*Define the parameterized constructor to construct a Daily Appointment */
public Daily(String description)
{
setDescription(description);
}
/*Define a method to determines if the appointment occurs on the given date */
public boolean occursOn(int year, int month, int day)
{
return true;
}
//Define a method to save the appointment to a PrintWriter
public boolean save(PrintWriter outw)
{
try
{
outw.println("D " + super.toString());
}
catch (Exception e)
{
return false;
}
return true;
}
/*Define a method to load the appointment from a Scanner */
public boolean load(Scanner scr)
{
try
{
// The D is already consumed at this point
setDescription(scr.nextLine().trim());
}
catch (Exception e)
{
return false;
}
return true;
}
}
File name: “Monthly.java”
//Import necessary packages
import java.io.PrintWriter;
import java.util.Scanner;
//Create a class
public class Monthly extends Appointment
{
//Declare the variable
private int aday;
//Define the constructor
public Monthly() { }
/*Define a parameterized constructor to initialize appointment for a given date */
public Monthly(int sday, String description)
{
setDescription(description);
this.aday = sday;
}
/*Define a method to determine if the appointment occurs on the given date*/
public boolean occursOn(int year, int month, int day)
{
return day == this.aday;
}
//Define a method to save the appointment to a PrintWriter
public boolean save(PrintWriter outw)
{
try
{
outw.println("M " + aday + " " + super.toString());
}
catch (Exception ep)
{
return false;
}
return true;
}
/*Define a method to load the appointment from a Scanner*/
public boolean load(Scanner scr)
{
try
{
aday = scr.nextInt();
setDescription(scr.nextLine().trim());
}
catch (Exception e)
{
return false;
}
return true;
}
}
File name: “Onetime.java”
//Import necessary package
import java.io.PrintWriter;
import java.util.Scanner;
//Create a class
public class Onetime extends Appointment
{
//Declare necessary variables
private int ayear;
private int amonth;
private int aday;
//Define the constructor
public Onetime() { }
/*Define a parameterized constructor to initialize appointment for a given date */
public Onetime(int year, int month, int day, String description)
{
setDescription(description);
this.ayear = year;
this.amonth = month;
this.aday = day;
}
/*Define a method to determine if the appointment occurs on the given date*/
public boolean occursOn(int year, int month, int day)
{
return year == this.ayear && month == this.amonth && day == this.aday;
}
//Define a method to save the appointment to a PrintWriter
public boolean save(PrintWriter outw)
{
try
{
outw.println("O " + ayear + " " + amonth + " " + aday + " " + super.toString());
}
catch (Exception e)
{
return false;
}
return true;
}
/*Define a method to load the appointment from a Scanner */
public boolean load(Scanner inp)
{
try
{
ayear = inp.nextInt();
amonth = inp.nextInt();
aday = inp.nextInt();
setDescription(inp.nextLine().trim());
}
catch (Exception e)
{
return false;
}
return true;
}
}
################# 3
File name: “Appointment.java”
//Import necessary packages
import java.io.PrintWriter;
import java.util.Scanner;
//Create a class
public abstract class Appointment
{
//Declare a variable
private String descriptions;
/*Define the constructor to construct an appointment without a description */
public Appointment()
{
descriptions = "";
}
//Define a method to set the description of the appointment
public void setDescription(String description)
{
this.descriptions = description;
}
/*Define a method to determine if the appointment occurs on the given date*/
public boolean occursOn(int year, int month, int day)
{
return false;
}
/*Define a method to convert appointment to string description*/
public String toString()
{
return descriptions;
}
/*Declare a method to save the appointment to a PrintWriter*/
public abstract boolean save(PrintWriter out);
//Declare a method to load the appointment from a Scanner
public abstract boolean load(Scanner in);
}
File name: “AppointmentsTester.java”
//Import necessary packages
import java.util.Scanner;
import java.io.PrintWriter;
import java.io.File;
//Create a class
public class AppointmentsTester
{
//Define the main() method
public static void main(String[] args)
{
/*Execute Try statement to check the occurrence of exception*/
try (PrintWriter outw = new PrintWriter("src/appointments.txt"))
{
//Create require number of objects
Appointment dailya = new Daily("brush your teeth");
Appointment monthlya = new Monthly(15, "pay the bills");
Appointment onetimea = new Onetime(2016, 10, 22, "remember anniversary");
//Print actual and expected output
System.out.println(dailya.save(outw));
System.out.println("Expected: true");
System.out.println(monthlya.save(outw));
System.out.println("Expected: true");
System.out.println(onetimea.save(outw));
System.out.println("Expected: true");
}
//Catch if exception occurs
catch (Exception ep)
{
System.out.println("Error: " + ep.toString());
}
/*Execute Try statement to check the occurrence of exception*/
try (Scanner in = new Scanner(new File("src/appointments.txt")))
{
//Read the data from a file
String types = in.next();
//Print actual and expected output
System.out.println(types);
System.out.println("Expected: D");
Appointment daily2 = new Daily();
System.out.println(daily2.load(in));
System.out.println("Expected: true");
System.out.println(daily2.toString());
System.out.println("Expected: brush your teeth");
types = in.next();
System.out.println(types);
System.out.println("Expected: M");
Appointment monthly2 = new Monthly();
System.out.println(monthly2.load(in));
System.out.println("Expected: true");
System.out.println(monthly2.toString());
System.out.println("Expected: pay the bills");
System.out.println(monthly2.occursOn(2016, 11, 15));
System.out.println("Expected: true");
types = in.next();
System.out.println(types);
System.out.println("Expected: O");
Appointment onetime2 = new Onetime();
System.out.println(onetime2.load(in));
System.out.println("Expected: true");
System.out.println(onetime2.toString());
System.out.println("Expected: remember anniversary");
System.out.println(onetime2.occursOn(2016, 10, 22));
System.out.println("Expected: true");
Appointment dummya = new Monthly();
System.out.println(dummya.load(in));
System.out.println("Expected: false");
}
//Catch if exception occur
catch (Exception ep)
{
System.out.println("Error: " + ep.toString());
}
}
}