Package org.ametys.odf.courselist
Interface CourseListContainer
-
- All Known Implementing Classes:
AbstractProgram
,Container
,Course
,Program
,SubProgram
public interface CourseListContainer
Interface representing a container ofCourseList
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
containsCourseList(String clId)
Determines if thisCourseListContainer
contains the given course list as childList<CourseList>
getCourseLists()
Returns the child course listsboolean
hasCourseLists()
Determines if thisCourseListContainer
contains child course list
-
-
-
Method Detail
-
getCourseLists
List<CourseList> getCourseLists()
Returns the child course lists- Returns:
- the child course lists
-
containsCourseList
boolean containsCourseList(String clId)
Determines if thisCourseListContainer
contains the given course list as child- Parameters:
clId
- id of theCourseList
to test- Returns:
- true if the course list is part of this
CourseListContainer
-
hasCourseLists
boolean hasCourseLists()
Determines if thisCourseListContainer
contains child course list- Returns:
- true if this
CourseListContainer
contains at least a child course list
-
-