/Users/johnr/Desktop/IA_14_-_Stage_P_Upload_all_2021-04-08/MyFirstGUIProject - Daniel/src/main/java/com/mycompany/myfirstguiproject/BollywoodClass.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 com.mycompany.myfirstguiproject;
 7 
 8 /**
 9  *
10  * @author 16939
11  */
12 public class BollywoodClass {
13     private String className = "not set yet";
14     private String classLocation = "not set yet";
15     private String inPersonOrZoom = "not set yet";
16     private String classSong = "not set yet";
17     private String classDate = "not set yet";
18    // We will be using the class, Song, in this class as well
19     public BollywoodClass(){
20     
21     }
22     
23     public BollywoodClass(String className, String classLocation, String classDate, String classSong, String inPersonOrZoom){
24         this.className = className;
25         this.classLocation = classLocation;
26         this.classDate = classDate;
27         this.classSong = classSong;
28         this.inPersonOrZoom = inPersonOrZoom;
29         
30     }
31     
32     public String getInPersonOrZoom(){
33         return inPersonOrZoom;
34     }
35     
36     public String getClassName(){
37         return className;
38     }
39     
40     public String getClassDate(){
41         return classDate;
42     }
43     
44     public String getClassSong(){
45         return classSong;
46     }
47     
48     public String getClassLocation(){
49         return classLocation;
50     }
51     
52     public void setInPersonOrZoom(String inPersonOrZoom){
53        this.inPersonOrZoom = inPersonOrZoom;
54     }
55 
56     public void setClassName(String className){
57         this.className = className;
58     }
59     
60     public void setClassLocation(String classLocation){
61         this.classLocation = classLocation;
62     }
63     
64 }
65