Uses of Interface
nathan.middleware.Grade

Uses of Grade in nathan.middleware
 

Classes in nathan.middleware that implement Grade
 class GradeImpl
          The implementation of the Grade interface used to store a students grade.
 

Methods in nathan.middleware that return Grade
 Grade StudentImpl.getGrade()
          Get the grades of the student
 Grade Student.getGrade()
          Get the grades of the student
 Grade StudentList.getGrade(java.lang.String studentNumber)
          get the grade of a student
 Grade StudentListImpl.getGrade(java.lang.String aStudentNumber)
          get the grade of a student
 Grade StudentListImplStub.getGrade(java.lang.String param0)
           
 

Methods in nathan.middleware with parameters of type Grade
 void StudentImpl.setGrade(Grade grade)
          set the grades of the student
 void Student.setGrade(Grade grade)
          set the grades of the student
 boolean StudentList.setGrade(java.lang.String studentNumber, Grade grade)
          setGrade set the grade for a student
 boolean StudentListImpl.setGrade(java.lang.String aStudentNumber, Grade aGrade)
          setGrade set the grade for a student
 boolean StudentListImplStub.setGrade(java.lang.String param0, Grade param1)