Class PositionedContentElementType
- java.lang.Object
-
- net.webpdf.parameter.schema.extraction.barcode.PositionedContentElementType
-
- Direct Known Subclasses:
BarcodeType
public class PositionedContentElementType extends Object
Java class for PositionedContentElementType complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="PositionedContentElementType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="rectangle" type="{http://schema.webpdf.de/1.0/extraction/barcode}RectangleType" maxOccurs="unbounded"/> <element name="plain" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="data" type="{http://schema.webpdf.de/1.0/extraction/barcode}DataType" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description PositionedContentElementType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DataTypegetData()Gets the value of the data property.StringgetPlain()Gets the value of the plain property.List<RectangleType>getRectangle()Gets the value of the rectangle property.voidsetData(DataType value)Sets the value of the data property.voidsetPlain(String value)Sets the value of the plain property.
-
-
-
Field Detail
-
rectangle
protected List<RectangleType> rectangle
-
plain
protected String plain
-
data
protected DataType data
-
-
Method Detail
-
getRectangle
public List<RectangleType> getRectangle()
Gets the value of the rectangle 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 JAXB object. This is why there is not a
setmethod for the rectangle property.For example, to add a new item, do as follows:
getRectangle().add(newItem);
Objects of the following type(s) are allowed in the list
RectangleType- Returns:
- The value of the rectangle property.
-
getPlain
public String getPlain()
Gets the value of the plain property.- Returns:
- possible object is
String
-
setPlain
public void setPlain(String value)
Sets the value of the plain property.- Parameters:
value- allowed object isString
-
getData
public DataType getData()
Gets the value of the data property.- Returns:
- possible object is
DataType
-
-