| java.lang.Object example.Grade
Grade | public class Grade (Code) | | Implementation class for the Student bean.
CREATE TABLE amber_many2many_map (
grade_id INTEGER PRIMARY KEY auto_increment,
student_id INTEGER REFERENCES Student(student_id)
course_id INTEGER REFERENCES Course(course_id)
);
|
getCourse | public Course getCourse()(Code) | | Returns the course.
|
getId | public long getId()(Code) | | Gets the id.
|
setCourse | public void setCourse(Course course)(Code) | | Sets the course.
|
setGrade | public void setGrade(String grade)(Code) | | Sets the grade.
|
setId | public void setId(long id)(Code) | | Sets the id.
|
setStudent | public void setStudent(Student student)(Code) | | Sets the student.
|
|
|