Package dilanperera.rapidws.services.campus.admin

Examples of dilanperera.rapidws.services.campus.admin.Student


  public int setupStudent(Student s1, int[] i1, float[] f1) {
    return 0;
  }

  public Student registerStudent(Name name, Address address, College college) {
    Student student = new Student();

    student.setId(1);
    student.setName(name);
    student.setAddress(address);
    student.setCollege(college);

    return student;
  }
View Full Code Here


    Student[] students = new Student[STUDENT_COUNT];

    for (int currentStudentIndex = 0; currentStudentIndex < STUDENT_COUNT; currentStudentIndex++)
    {
      Student student = new Student();
      Name name = new Name();
      Address address = new Address();
      College college = new College();

      name.setLastName(String.valueOf(currentStudentIndex));

      student.setId(currentStudentIndex);
      student.setName(name);
      student.setAddress(address);
      student.setCollege(college);

      students[currentStudentIndex] = student;
    }

    return students;
View Full Code Here

TOP

Related Classes of dilanperera.rapidws.services.campus.admin.Student

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.