| java.lang.Object org.sakaiproject.component.app.presentation.PrPresentation
PrPresentation | public class PrPresentation implements org.sakaiproject.api.app.presentation.Presentation(Code) | | The Presentation class allows content to be grouped together in a linear sequence.
Any type of presentation control is handled by the presentation manager.
author: Mark Norton |
PrPresentation | public PrPresentation(Id id)(Code) | | Creates a new instance of Presentation
|
PrPresentation | public PrPresentation(Id id, List slides)(Code) | | Creates a new instances of Presentation given a list of slides.
|
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 given position.
author: Mark Norton |
getId | public Id getId()(Code) | | Return 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 |
getSlideCount | public int getSlideCount()(Code) | | Return the number of slides in 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 |
setId | public void setId(Id id)(Code) | | Set the id of this presentation.
author: Mark Norton |
|
|