Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
StudentCredit |
|
| 1.0;1 |
1 | package org.kuali.student.enrollment.class2.grading.dataobject; | |
2 | ||
3 | /* | |
4 | * Copyright 2007 The Kuali Foundation | |
5 | * | |
6 | * Licensed under the Educational Community License, Version 1.0 (the "License"); | |
7 | * you may not use this file except in compliance with the License. | |
8 | * You may obtain a copy of the License at | |
9 | * | |
10 | * http://www.opensource.org/licenses/ecl1.php | |
11 | * | |
12 | * Unless required by applicable law or agreed to in writing, software | |
13 | * distributed under the License is distributed on an "AS IS" BASIS, | |
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
15 | * See the License for the specific language governing permissions and | |
16 | * limitations under the License. | |
17 | */ | |
18 | ||
19 | public class StudentCredit { | |
20 | ||
21 | private String courseId; | |
22 | private String courseName; | |
23 | private String credits; | |
24 | private String grade; | |
25 | ||
26 | 0 | public StudentCredit(){ |
27 | 0 | } |
28 | ||
29 | public String getCourseId() { | |
30 | 0 | return courseId; |
31 | } | |
32 | ||
33 | public void setCourseId(String courseId) { | |
34 | 0 | this.courseId = courseId; |
35 | 0 | } |
36 | ||
37 | public String getCourseName() { | |
38 | 0 | return courseName; |
39 | } | |
40 | ||
41 | public void setCourseName(String courseName) { | |
42 | 0 | this.courseName = courseName; |
43 | 0 | } |
44 | ||
45 | public String getCredits() { | |
46 | 0 | return credits; |
47 | } | |
48 | ||
49 | public void setCredits(String credits) { | |
50 | 0 | this.credits = credits; |
51 | 0 | } |
52 | ||
53 | public String getGrade() { | |
54 | 0 | return grade; |
55 | } | |
56 | ||
57 | public void setGrade(String grade) { | |
58 | 0 | this.grade = grade; |
59 | 0 | } |
60 | } |