Class ColorType
- java.lang.Object
-
- net.webpdf.wsclient.schema.extraction.info.ColorType
-
public class ColorType extends Object
Java class for ColorType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ColorType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="r" default="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}float"> <minInclusive value="0"/> <maxInclusive value="1"/> </restriction> </simpleType> </attribute> <attribute name="b" default="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}float"> <minInclusive value="0"/> <maxInclusive value="1"/> </restriction> </simpleType> </attribute> <attribute name="g" default="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}float"> <minInclusive value="0"/> <maxInclusive value="1"/> </restriction> </simpleType> </attribute> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description ColorType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description floatgetB()Gets the value of the b property.floatgetG()Gets the value of the g property.floatgetR()Gets the value of the r property.booleanisSetB()booleanisSetG()booleanisSetR()voidsetB(float value)Sets the value of the b property.voidsetG(float value)Sets the value of the g property.voidsetR(float value)Sets the value of the r property.voidunsetB()voidunsetG()voidunsetR()
-
-
-
Method Detail
-
getR
public float getR()
Gets the value of the r property.- Returns:
- possible object is
Float
-
setR
public void setR(float value)
Sets the value of the r property.- Parameters:
value- allowed object isFloat
-
isSetR
public boolean isSetR()
-
unsetR
public void unsetR()
-
getB
public float getB()
Gets the value of the b property.- Returns:
- possible object is
Float
-
setB
public void setB(float value)
Sets the value of the b property.- Parameters:
value- allowed object isFloat
-
isSetB
public boolean isSetB()
-
unsetB
public void unsetB()
-
getG
public float getG()
Gets the value of the g property.- Returns:
- possible object is
Float
-
setG
public void setG(float value)
Sets the value of the g property.- Parameters:
value- allowed object isFloat
-
isSetG
public boolean isSetG()
-
unsetG
public void unsetG()
-
-