| org.sakaiproject.api.app.presentation.Presentation
All known Subclasses: org.sakaiproject.component.app.presentation.PrPresentation,
Presentation | public interface Presentation extends java.io.Serializable(Code) | | The Presentation class allows content to be grouped together in a ordered, linear sequence.
In addition to the list of content slides, a wait slide may be included to be displayed
before the presentation starts. If no wait slide is present, nothing is displayed.
author: Mark Norton |
Method Summary | |
public void | addSlide(Slide slide) Append a slide to the end of the slide list. | public void | deleteSlide(int position) Delete the slide at the position given. | public Id | getId() Get the Id of this presentation. | public String | getModificationDate() | public Slide | getSlide(int offset) Return the slide at the given offset. | public int | getSlideCount() Get the number of slides in the slide set associated with this presentation. | public List | getSlides() Return an iterator which lists the slides in this presentation. | public String | getTitle() | public void | insertSlide(int position, Slide slide) Insert a slide at the position given. | public void | setId(Id id) Set the Id of this presentation. |
PRESENTATION_AUTHOR | final public static String PRESENTATION_AUTHOR(Code) | | |
PRESENTATION_CREATED | final public static String PRESENTATION_CREATED(Code) | | |
PRESENTATION_TITLE | final public static String PRESENTATION_TITLE(Code) | | |
addSlide | public void addSlide(Slide slide)(Code) | | Append a slide to the end of the slide list.
author: Mark Norton |
deleteSlide | public void deleteSlide(int position)(Code) | | Delete the slide at the position given.
author: Mark Norton exception: Throws - INVALID_OFFSET if the offset is less than zero or greater than max. |
getId | public Id getId()(Code) | | Get the Id of this presentation.
author: Mark Norton |
getModificationDate | public String getModificationDate()(Code) | | |
getSlide | public Slide getSlide(int offset)(Code) | | Return the slide at the given offset.
author: Mark Norton exception: Throws - INVALID_OFFSET if the offset is less than zero or greater than max. |
getSlideCount | public int getSlideCount()(Code) | | Get the number of slides in the slide set associated with this presentation.
author: Mark Norton |
getSlides | public List getSlides()(Code) | | Return an iterator which lists the slides in this presentation.
author: Mark Norton |
insertSlide | public void insertSlide(int position, Slide slide)(Code) | | Insert a slide at the position given.
author: Mark Norton exception: Throws - INVALID_OFFSET if the offset is less than zero or greater than max. |
setId | public void setId(Id id)(Code) | | Set the Id of this presentation.
author: Mark Norton |
|
|