Class ColorType
java.lang.Object
com.io7m.idstore.server.service.configuration.jaxb.ColorType
An RGB color.
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="Red" use="required" type="{urn:com.io7m.idstore:configuration:1}ColorComponent" />
<attribute name="Green" use="required" type="{urn:com.io7m.idstore:configuration:1}ColorComponent" />
<attribute name="Blue" use="required" type="{urn:com.io7m.idstore:configuration:1}ColorComponent" />
</restriction>
</complexContent>
</complexType>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondoublegetBlue()Gets the value of the blue property.doublegetGreen()Gets the value of the green property.doublegetRed()Gets the value of the red property.voidsetBlue(double value) Sets the value of the blue property.voidsetGreen(double value) Sets the value of the green property.voidsetRed(double value) Sets the value of the red property.
-
Field Details
-
red
protected double red -
green
protected double green -
blue
protected double blue
-
-
Constructor Details
-
ColorType
public ColorType()
-
-
Method Details
-
getRed
public double getRed()Gets the value of the red property. -
setRed
public void setRed(double value) Sets the value of the red property. -
getGreen
public double getGreen()Gets the value of the green property. -
setGreen
public void setGreen(double value) Sets the value of the green property. -
getBlue
public double getBlue()Gets the value of the blue property. -
setBlue
public void setBlue(double value) Sets the value of the blue property.
-