Examples of GetGroups()


Examples of Core.CourseClass.GetGroups()

          g.setColor(Color.BLACK);
          g.drawRect(rect.x, rect.y, rect.width, rect.height);

            str = String.format("%s\n%s\n/", c.GetCourse().GetName(), c.GetLecturer().GetName());

          for(Iterator<StudentsGroup> it2 = c.GetGroups().iterator();
            it2.hasNext();)
          {
            str += it2.next().GetName();
            str += "/";
          }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.