public class Slide extends Object
Java class for Slide complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Slide"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="content" type="{http://www.jrebirth.org/Presentation}SlideContent" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="page" type="{http://www.w3.org/2001/XMLSchema}int" /> <attribute name="modelClass" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="style" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="showAnimation" type="{http://www.jrebirth.org/Presentation}AnimationType" default="None" /> <attribute name="hideAnimation" type="{http://www.jrebirth.org/Presentation}AnimationType" default="None" /> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected List<SlideContent> |
content |
protected AnimationType |
hideAnimation |
protected String |
modelClass |
protected Integer |
page |
protected AnimationType |
showAnimation |
protected String |
style |
protected String |
title |
Constructor and Description |
---|
Slide() |
Modifier and Type | Method and Description |
---|---|
List<SlideContent> |
getContent()
Gets the value of the content property.
|
AnimationType |
getHideAnimation()
Gets the value of the hideAnimation property.
|
String |
getModelClass()
Gets the value of the modelClass property.
|
Integer |
getPage()
Gets the value of the page property.
|
AnimationType |
getShowAnimation()
Gets the value of the showAnimation property.
|
String |
getStyle()
Gets the value of the style property.
|
String |
getTitle()
Gets the value of the title property.
|
void |
setHideAnimation(AnimationType value)
Sets the value of the hideAnimation property.
|
void |
setModelClass(String value)
Sets the value of the modelClass property.
|
void |
setPage(Integer value)
Sets the value of the page property.
|
void |
setShowAnimation(AnimationType value)
Sets the value of the showAnimation property.
|
void |
setStyle(String value)
Sets the value of the style property.
|
void |
setTitle(String value)
Sets the value of the title property.
|
protected List<SlideContent> content
protected String modelClass
protected AnimationType showAnimation
protected AnimationType hideAnimation
public Slide()
public String getTitle()
String
public void setTitle(String value)
value
- allowed object is
String
public List<SlideContent> getContent()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set
method for the content property.
For example, to add a new item, do as follows:
getContent().add(newItem);
Objects of the following type(s) are allowed in the list
SlideContent
public Integer getPage()
Integer
public void setPage(Integer value)
value
- allowed object is
Integer
public String getModelClass()
String
public void setModelClass(String value)
value
- allowed object is
String
public String getStyle()
String
public void setStyle(String value)
value
- allowed object is
String
public AnimationType getShowAnimation()
AnimationType
public void setShowAnimation(AnimationType value)
value
- allowed object is
AnimationType
public AnimationType getHideAnimation()
AnimationType
public void setHideAnimation(AnimationType value)
value
- allowed object is
AnimationType
Copyright © 2011–2016 JRebirth OSS. All rights reserved.