Class OptionsType.Boxes
- java.lang.Object
-
- net.webpdf.wsclient.schema.operation.OptionsType.Boxes
-
- Enclosing class:
- OptionsType
public static class OptionsType.Boxes 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="resize"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice> <element name="boxesResize" type="{http://schema.webpdf.de/1.0/operation}BoxesResizeType"/> </choice> </restriction> </complexContent> </complexType> </element> <element name="remove"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice> <element name="boxesRemove" type="{http://schema.webpdf.de/1.0/operation}SelectionBoxType"/> </choice> </restriction> </complexContent> </complexType> </element> </choice> </restriction> </complexContent> </complexType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classOptionsType.Boxes.RemoveJava class for anonymous complex type.static classOptionsType.Boxes.ResizeJava class for anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected List<OptionsType.Boxes.Remove>removeprotected List<OptionsType.Boxes.Resize>resize
-
Constructor Summary
Constructors Constructor Description Boxes()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<OptionsType.Boxes.Remove>getRemove()Gets the value of the remove property.List<OptionsType.Boxes.Resize>getResize()Gets the value of the resize property.
-
-
-
Field Detail
-
resize
protected List<OptionsType.Boxes.Resize> resize
-
remove
protected List<OptionsType.Boxes.Remove> remove
-
-
Method Detail
-
getResize
public List<OptionsType.Boxes.Resize> getResize()
Gets the value of the resize 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 resize property.For example, to add a new item, do as follows:
getResize().add(newItem);Objects of the following type(s) are allowed in the list
OptionsType.Boxes.Resize- Returns:
- The value of the resize property.
-
getRemove
public List<OptionsType.Boxes.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.Boxes.Remove- Returns:
- The value of the remove property.
-
-