Package sis.studentinfo

Examples of sis.studentinfo.Student


    student.addGrade(grade);
    return student;
  }
 
  private Student createHonorsStudent(){
    Student student = new Student("Carl Honor");
    student.setGradingStrategy(new HonorsGradingStrategy());
    return student;
  }
View Full Code Here

TOP

Related Classes of sis.studentinfo.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.