Package aitgame.diploma

Examples of aitgame.diploma.Subject


        g.setFont(new Font("Dialog", Font.BOLD, 10));      
        int i = 0;
        Iterator<Subject> subjects = gradeManager.getSubjects();
        while(subjects.hasNext()){
         
          Subject sub = subjects.next();
          g.drawString(sub.getSubjectName(), 265, 245+i*12);
          g.drawString(sub.getSubjectGrade(), 505, 245+i*12);
          g.drawString("" + sub.getSubjectPoints(), 565, 245+i*12);
          g.drawString(sub.getSubjectDate(), 625, 245+i*12);
          i++;
        }
       
  }
View Full Code Here

TOP

Related Classes of aitgame.diploma.Subject

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.