report
unknown
plain_text
3 years ago
1.1 kB
7
Indexable
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package l00002;
/**
*
* @author MSI GTX
*/
public class Report {
private String studentName;
private String courseName;
private int totalCourse;
public Report() {
}
public Report(String studentName, String courseName, int totalCourse) {
this.studentName = studentName;
this.courseName = courseName;
this.totalCourse = totalCourse;
}
public String getStudentName() {
return studentName;
}
public void setStudentName(String studentName) {
this.studentName = studentName;
}
public String getCourseName() {
return courseName;
}
public void setCourseName(String courseName) {
this.courseName = courseName;
}
public int getTotalCourse() {
return totalCourse;
}
public void setTotalCourse(int totalCourse) {
this.totalCourse = totalCourse;
}
}
Editor is loading...