/Users/16671/Desktop/IA Computer Science/IA - Winner/src/ia/winner/LiftingLogs.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 ia.winner;
 7 
 8 /**
 9  *
10  * @author 16671
11  */
12 public class LiftingLogs extends Logs {
13     private String liftingWorkout = "not set yet";
14     private int repetitionInput = -999;
15     private int weightInput = -999; 
16     
17     public LiftingLogs(){
18         
19     }
20     
21     public LiftingLogs(String date, String name, String liftingWorkout, int repetitionInput, int weightInput){
22         super(date, name);
23         this.liftingWorkout = liftingWorkout;
24         this.repetitionInput = repetitionInput;
25         this.weightInput = weightInput;
26     }
27 
28     
29     
30     public void setLiftingWorkout(String liftingWorkout){
31         this.liftingWorkout = liftingWorkout;
32     }
33 
34     public void setRepetitionInput(int repetitionInput){
35         this.repetitionInput = repetitionInput;
36     }
37     
38     public void setweightInput(int weightInput){
39         this.weightInput = weightInput;
40     }
41     
42     public String getLiftingWorkout(){
43         return liftingWorkout;
44     }
45     
46     public int getRepetitionInput(){
47         return repetitionInput;
48     }
49     
50     public int getWeightInput(){
51         return weightInput;
52     }
53 }
54