/Users/johnr/Desktop/IA_14_-_Stage_P_Upload_all_2021-04-08/CSIA_TeacherOrganizer_19927 Marazal March 25th/src/Grade.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 
 7 
 8 /**
 9  *
10  * @author 19927
11  */
12 public class Grade {
13     //private Student student = null;
14     private String topicName = "not set yet";
15     private int topicTestGrade = 0;
16     private String topicNote = "not set yet";
17     
18     public Grade(){
19     }
20     
21     public Grade(String topicName, int topicTestGrade, String topicNote){
22         //this.student = student;
23         this.topicName = topicName;
24         this.topicTestGrade = topicTestGrade;
25         this.topicNote = topicNote;
26     }
27 
28     //public Student getstudent(){
29         //return student;
30     //}
31    
32     public String gettopicName(){
33         return topicName;
34     }
35     public int gettopicTestGrade(){
36         return topicTestGrade;
37     }
38     public String getTopicNote(){
39         return topicNote;
40     }
41  
42 }
43