forked from ghostmkg/programming-language
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCourse.java
56 lines (42 loc) · 1.17 KB
/
Course.java
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
package CMS;
public class Course
{
private String courseName;
private String coursecode;
private int credithours;
public Course(String courseName, String courseCode , int creditHours)
{
this.courseName = courseName;
this.coursecode = courseCode;
this.credithours = creditHours;
}
public void setcourseName(String courseName)
{
this.courseName = courseName;
}
public String getcourseName()
{
return courseName;
}
public void setcoursecode(String coursecode)
{
this.coursecode = coursecode;
}
public String getcoursecode()
{
return coursecode;
}
public void setCredithours(int credithours)
{
this.credithours = credithours;
}
public int getCredithours()
{
return credithours;
}
public String toString()
{
// return String.format("Course Name Course code Credit hours%n%-30s%-19s%s", courseName, coursecode, credithours);
return String.format("%-30s%-19s%s", courseName, coursecode, credithours);
}
}