Class RectangleType
- java.lang.Object
-
- net.webpdf.parameter.schema.extraction.barcode.RectangleType
-
public class RectangleType extends Object
Java class for RectangleType complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="RectangleType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="coordinates" use="required" type="{http://schema.webpdf.de/1.0/extraction/barcode}CoordinatesType" /> <attribute name="x" default="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}float"> <minInclusive value="0"/> </restriction> </simpleType> </attribute> <attribute name="y" default="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}float"> <minInclusive value="0"/> </restriction> </simpleType> </attribute> <attribute name="width" default="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}float"> <minInclusive value="0"/> </restriction> </simpleType> </attribute> <attribute name="height" default="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}float"> <minInclusive value="0"/> </restriction> </simpleType> </attribute> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected CoordinatesTypecoordinatesprotected Floatheightprotected Floatwidthprotected Floatxprotected Floaty
-
Constructor Summary
Constructors Constructor Description RectangleType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CoordinatesTypegetCoordinates()Gets the value of the coordinates property.floatgetHeight()Gets the value of the height property.floatgetWidth()Gets the value of the width property.floatgetX()Gets the value of the x property.floatgetY()Gets the value of the y property.voidsetCoordinates(CoordinatesType value)Sets the value of the coordinates property.voidsetHeight(Float value)Sets the value of the height property.voidsetWidth(Float value)Sets the value of the width property.voidsetX(Float value)Sets the value of the x property.voidsetY(Float value)Sets the value of the y property.
-
-
-
Field Detail
-
coordinates
protected CoordinatesType coordinates
-
x
protected Float x
-
y
protected Float y
-
width
protected Float width
-
height
protected Float height
-
-
Method Detail
-
getCoordinates
public CoordinatesType getCoordinates()
Gets the value of the coordinates property.- Returns:
- possible object is
CoordinatesType
-
setCoordinates
public void setCoordinates(CoordinatesType value)
Sets the value of the coordinates property.- Parameters:
value- allowed object isCoordinatesType
-
getX
public float getX()
Gets the value of the x property.- Returns:
- possible object is
Float
-
setX
public void setX(Float value)
Sets the value of the x property.- Parameters:
value- allowed object isFloat
-
getY
public float getY()
Gets the value of the y property.- Returns:
- possible object is
Float
-
setY
public void setY(Float value)
Sets the value of the y property.- Parameters:
value- allowed object isFloat
-
getWidth
public float getWidth()
Gets the value of the width property.- Returns:
- possible object is
Float
-
setWidth
public void setWidth(Float value)
Sets the value of the width property.- Parameters:
value- allowed object isFloat
-
getHeight
public float getHeight()
Gets the value of the height property.- Returns:
- possible object is
Float
-
-