Class RectangleType
- java.lang.Object
-
- net.webpdf.wsclient.schema.extraction.info.PositionsType
-
- net.webpdf.wsclient.schema.extraction.info.RectangleType
-
- Direct Known Subclasses:
AnnotationRectangleType
public class RectangleType extends PositionsType
<?xml version="1.0" encoding="UTF-8"?><p xmlns="http://schema.webpdf.de/1.0/extraction/info" xmlns:xs="http://www.w3.org/2001/XMLSchema">Defines a rectangular area/box.</p>
Java class for RectangleType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="RectangleType"> <complexContent> <extension base="{http://schema.webpdf.de/1.0/extraction/info}PositionsType"> <attribute name="width" default="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}float"> </restriction> </simpleType> </attribute> <attribute name="height" default="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}float"> </restriction> </simpleType> </attribute> <attribute name="x" default="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}float"> </restriction> </simpleType> </attribute> <attribute name="y" default="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}float"> </restriction> </simpleType> </attribute> </extension> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description RectangleType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description 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.booleanisSetHeight()booleanisSetWidth()booleanisSetX()booleanisSetY()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.voidunsetHeight()voidunsetWidth()voidunsetX()voidunsetY()
-
-
-
Method Detail
-
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
-
isSetWidth
public boolean isSetWidth()
-
unsetWidth
public void unsetWidth()
-
getHeight
public float getHeight()
Gets the value of the height property.- Returns:
- possible object is
Float
-
setHeight
public void setHeight(float value)
Sets the value of the height property.- Parameters:
value- allowed object isFloat
-
isSetHeight
public boolean isSetHeight()
-
unsetHeight
public void unsetHeight()
-
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
-
isSetX
public boolean isSetX()
-
unsetX
public void unsetX()
-
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
-
isSetY
public boolean isSetY()
-
unsetY
public void unsetY()
-
-