Uses of Interface
nathan.middleware.Student

Uses of Student in nathan.middleware
 

Classes in nathan.middleware that implement Student
 class StudentImpl
          The implementation class for Student Interface.
 

Methods in nathan.middleware that return Student
static Student StudentFactory.create()
          Creates a new Student.
 Student Client.find()
          Find returns a students from the server.
 Student StudentList.find(java.lang.String studentNumber)
          find a specific student in the list
 Student StudentListImpl.find(java.lang.String aStudentNumber)
          find a specific student in the list
 Student StudentListImplStub.find(java.lang.String param0)
           
 

Methods in nathan.middleware with parameters of type Student
 boolean StudentList.addStudent(Student student)
          adds a student to the student list
 boolean StudentListImpl.addStudent(Student aStudent)
          adds a student to the student list
 boolean StudentListImplStub.addStudent(Student param0)
           
 

Method parameters in nathan.middleware with type arguments of type Student
 void StudentList.setReplicatedObject(java.util.Vector<Student> list)
          Set the student list
 void StudentListImpl.setReplicatedObject(java.util.Vector<Student> studentList)