Class QuadrilateralType
- java.lang.Object
-
- net.webpdf.wsclient.schema.operation.QuadrilateralType
-
public class QuadrilateralType extends Object
<?xml version="1.0" encoding="UTF-8"?><p xmlns:p20622_="https://jakarta.ee/xml/ns/jaxb" xmlns:p420076_="http://jaxb2-commons.dev.java.net/basic/inheritance" xmlns:tns="http://schema.webpdf.de/1.0/operation" xmlns:xs="http://www.w3.org/2001/XMLSchema">Selects a rectangular area via it's 4 determining corner points.</p>
<?xml version="1.0" encoding="UTF-8"?><p xmlns:p20622_="https://jakarta.ee/xml/ns/jaxb" xmlns:p420076_="http://jaxb2-commons.dev.java.net/basic/inheritance" xmlns:tns="http://schema.webpdf.de/1.0/operation" xmlns:xs="http://www.w3.org/2001/XMLSchema"><b>important:</b> The quadrilateral's points shall be defined in the clockwise order: top-left, top-right, bottom-right, bottom-left </p><?xml version="1.0" encoding="UTF-8"?><p xmlns:p20622_="https://jakarta.ee/xml/ns/jaxb" xmlns:p420076_="http://jaxb2-commons.dev.java.net/basic/inheritance" xmlns:tns="http://schema.webpdf.de/1.0/operation" xmlns:xs="http://www.w3.org/2001/XMLSchema"><b>important:</b> Even though the PDF standard defines algorithms, that can handle self intersecting and overlapping quadrilaterals, such should be avoided to prevent unexpected results. </p>Java class for QuadrilateralType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="QuadrilateralType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice maxOccurs="4" minOccurs="4"> <element name="point" type="{http://schema.webpdf.de/1.0/operation}PointType"/> </choice> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description QuadrilateralType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<PointType>getPoint()Gets the value of the point property.booleanisSetPoint()voidunsetPoint()
-
-
-
Method Detail
-
getPoint
public List<PointType> getPoint()
Gets the value of the point 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 point property.For example, to add a new item, do as follows:
getPoint().add(newItem);Objects of the following type(s) are allowed in the list
PointType- Returns:
- The value of the point property.
-
isSetPoint
public boolean isSetPoint()
-
unsetPoint
public void unsetPoint()
-
-