org.sakaiproject.section.api.coursemanagement.Meeting Maven / Gradle / Ivy
The newest version!
/**
* Copyright (c) 2005-2009 The Apereo Foundation
*
* Licensed under the Educational Community License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://opensource.org/licenses/ecl2
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.sakaiproject.section.api.coursemanagement;
import java.sql.Time;
public interface Meeting {
/**
* Gets the location where this CourseSection meets.
* @return
*/
public String getLocation();
/**
* Whether the CourseSection meets on Mondays.
*
* @return
*/
public boolean isMonday();
/**
* Whether the CourseSection meets on Tuesdays.
*
* @return
*/
public boolean isTuesday();
/**
* Whether the CourseSection meets on Wednesdays.
*
* @return
*/
public boolean isWednesday();
/**
* Whether the CourseSection meets on Thursdays.
*
* @return
*/
public boolean isThursday();
/**
* Whether the CourseSection meets on Fridays.
*
* @return
*/
public boolean isFriday();
/**
* Whether the CourseSection meets on Saturdays.
*
* @return
*/
public boolean isSaturday();
/**
* Whether the CourseSection meets on Sundays.
*
* @return
*/
public boolean isSunday();
/**
* Gets the time of day that this CourseSection's meeting(s) start.
*
* @return
*/
public Time getStartTime();
/**
* Gets the time of day that this CourseSection's meeting(s) end.
*
* @return
*/
public Time getEndTime();
/**
* Indicates whether this meeting has no information. Should return true if there are
* no meeting times and a null location.
*
* @return
*/
public boolean isEmpty();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy