ISection
public interface ISection
Represents section of slides.
Methods
Method | Description |
---|---|
getName() | Name of the section. |
setName(String value) | Name of the section. |
getSectionId() | Section Id. |
getStartedFromSlide() | Returns first slide of the section. |
getSlidesListOfSection() | Returns list of slides in the section. |
getName()
public abstract String getName()
Name of the section.
Returns: java.lang.String
setName(String value)
public abstract void setName(String value)
Name of the section.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
getSectionId()
public abstract UUID getSectionId()
Section Id.
Returns: java.util.UUID
getStartedFromSlide()
public abstract ISlide getStartedFromSlide()
Returns first slide of the section.
Returns: ISlide
getSlidesListOfSection()
public abstract ISectionSlideCollection getSlidesListOfSection()
Returns list of slides in the section.
Returns: ISectionSlideCollection - List of slides ISectionSlideCollection