Class OptionsType.PageTransitions
- java.lang.Object
-
- net.webpdf.wsclient.schema.operation.OptionsType.PageTransitions
-
- Enclosing class:
- OptionsType
public static class OptionsType.PageTransitions extends Object
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice maxOccurs="unbounded"> <element name="add"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice> <element name="pageTransition" type="{http://schema.webpdf.de/1.0/operation}TransitionType"/> </choice> </restriction> </complexContent> </complexType> </element> <element name="remove"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice> <element name="transitionSelection" type="{http://schema.webpdf.de/1.0/operation}SelectionTransitionType"/> </choice> </restriction> </complexContent> </complexType> </element> </choice> </restriction> </complexContent> </complexType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classOptionsType.PageTransitions.AddJava class for anonymous complex type.static classOptionsType.PageTransitions.RemoveJava class for anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected List<OptionsType.PageTransitions.Add>addprotected List<OptionsType.PageTransitions.Remove>remove
-
Constructor Summary
Constructors Constructor Description PageTransitions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<OptionsType.PageTransitions.Add>getAdd()Gets the value of the add property.List<OptionsType.PageTransitions.Remove>getRemove()Gets the value of the remove property.
-
-
-
Field Detail
-
add
protected List<OptionsType.PageTransitions.Add> add
-
remove
protected List<OptionsType.PageTransitions.Remove> remove
-
-
Method Detail
-
getAdd
public List<OptionsType.PageTransitions.Add> getAdd()
Gets the value of the add property.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 Jakarta XML Binding object. This is why there is not a
setmethod for the add property.For example, to add a new item, do as follows:
getAdd().add(newItem);Objects of the following type(s) are allowed in the list
OptionsType.PageTransitions.Add- Returns:
- The value of the add property.
-
getRemove
public List<OptionsType.PageTransitions.Remove> getRemove()
Gets the value of the remove property.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 Jakarta XML Binding object. This is why there is not a
setmethod for the remove property.For example, to add a new item, do as follows:
getRemove().add(newItem);Objects of the following type(s) are allowed in the list
OptionsType.PageTransitions.Remove- Returns:
- The value of the remove property.
-
-