-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCoursetable.java
More file actions
95 lines (73 loc) · 2.6 KB
/
Coursetable.java
File metadata and controls
95 lines (73 loc) · 2.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import java.sql.Date;
/*
* 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.
*/
/**
*
* @author jenil
*/
public class Coursetable {
String course_id, program_degrees_id, course_name, professor_name, professor_highest_designation,
course_type,university_id;
Date exam_date;
public Coursetable(String course_id, String program_degrees_id, String course_name, String professor_name, String professor_highest_designation, String course_type, String university_id, Date exam_date) {
this.course_id = course_id;
this.program_degrees_id = program_degrees_id;
this.course_name = course_name;
this.professor_name = professor_name;
this.professor_highest_designation = professor_highest_designation;
this.course_type = course_type;
this.university_id = university_id;
this.exam_date = exam_date;
}
public String getCourse_id() {
return course_id;
}
public void setCourse_id(String course_id) {
this.course_id = course_id;
}
public String getProgram_and_degree_id() {
return program_degrees_id;
}
public void setProgram_and_degree_id(String program_and_degree_id) {
this.program_degrees_id = program_and_degree_id;
}
public String getCourse_name() {
return course_name;
}
public void setCourse_name(String course_name) {
this.course_name = course_name;
}
public String getProfessor_name() {
return professor_name;
}
public void setProfessor_name(String professor_name) {
this.professor_name = professor_name;
}
public String getProfessor_highest_designation() {
return professor_highest_designation;
}
public void setProfessor_highest_designation(String professor_highest_designation) {
this.professor_highest_designation = professor_highest_designation;
}
public String getCourse_type() {
return course_type;
}
public void setCourse_type(String course_type) {
this.course_type = course_type;
}
public String getUniversity_id() {
return university_id;
}
public void setUniversity_id(String university_id) {
this.university_id = university_id;
}
public Date getExam_date() {
return exam_date;
}
public void setExam_date(Date exam_date) {
this.exam_date = exam_date;
}
}