/Users/johnr/Desktop/IA_14_-_Stage_P_Upload_all_2021-04-08/IBCSIA21296 Isaac/src/fitnesstracker/Lift.java
 1 /*
 2  * To change this license header, choose License Headers in Project Properties.
 3  * To change this template file, choose Tools | Templates
 4  * and open the template in the editor.
 5  */
 6 package fitnesstracker;
 7 
 8 /**
 9  *
10  * @author 21296
11  */
12 public class Lift extends Workout{
13     
14     private String muscleCategory = "not set yet";
15     
16         public Lift(){
17             
18         }
19         
20     public Lift(String date, String muscleCategory, String status) {
21     //super(date, muscleCategory, status);
22         //this.date = date;
23     }    
24 
25     Lift(MuscleCategory muscleCategory, String date, String status) {
26         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
27     }
28     
29     public String getExercises(){
30         return "Arms";
31     }
32    
33     /*public String getCOVIDWarning(){
34         if(thaiTreat.equalsIgnoreCase("Tom yum khun") && this.getTime() > 18.0){
35             return "Sorry, no Tom Yum; no cooking past 18:00 - COVID regulation";
36         }else{
37             return "Enjoy your treat"
38         
39         }
40 */
41 }
42 
43