ButtonStateColors.java
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2023.06.29 at 10:16:21 PM GMT
//
package com.io7m.idstore.server.service.configuration.jaxb;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
*
* The colors used for a particular button state.
*
*
* <p>Java class for ButtonStateColors complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="ButtonStateColors">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{urn:com.io7m.idstore:configuration:1}BodyColor"/>
* <element ref="{urn:com.io7m.idstore:configuration:1}BorderColor"/>
* <element ref="{urn:com.io7m.idstore:configuration:1}EmbossEColor"/>
* <element ref="{urn:com.io7m.idstore:configuration:1}EmbossNColor"/>
* <element ref="{urn:com.io7m.idstore:configuration:1}EmbossSColor"/>
* <element ref="{urn:com.io7m.idstore:configuration:1}EmbossWColor"/>
* <element ref="{urn:com.io7m.idstore:configuration:1}TextColor"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ButtonStateColors", propOrder = {
"bodyColor",
"borderColor",
"embossEColor",
"embossNColor",
"embossSColor",
"embossWColor",
"textColor"
})
public class ButtonStateColors {
@XmlElement(name = "BodyColor", required = true)
protected ColorType bodyColor;
@XmlElement(name = "BorderColor", required = true)
protected ColorType borderColor;
@XmlElement(name = "EmbossEColor", required = true)
protected ColorType embossEColor;
@XmlElement(name = "EmbossNColor", required = true)
protected ColorType embossNColor;
@XmlElement(name = "EmbossSColor", required = true)
protected ColorType embossSColor;
@XmlElement(name = "EmbossWColor", required = true)
protected ColorType embossWColor;
@XmlElement(name = "TextColor", required = true)
protected ColorType textColor;
/**
* Gets the value of the bodyColor property.
*
* @return
* possible object is
* {@link ColorType }
*
*/
public ColorType getBodyColor() {
return bodyColor;
}
/**
* Sets the value of the bodyColor property.
*
* @param value
* allowed object is
* {@link ColorType }
*
*/
public void setBodyColor(ColorType value) {
this.bodyColor = value;
}
/**
* Gets the value of the borderColor property.
*
* @return
* possible object is
* {@link ColorType }
*
*/
public ColorType getBorderColor() {
return borderColor;
}
/**
* Sets the value of the borderColor property.
*
* @param value
* allowed object is
* {@link ColorType }
*
*/
public void setBorderColor(ColorType value) {
this.borderColor = value;
}
/**
* Gets the value of the embossEColor property.
*
* @return
* possible object is
* {@link ColorType }
*
*/
public ColorType getEmbossEColor() {
return embossEColor;
}
/**
* Sets the value of the embossEColor property.
*
* @param value
* allowed object is
* {@link ColorType }
*
*/
public void setEmbossEColor(ColorType value) {
this.embossEColor = value;
}
/**
* Gets the value of the embossNColor property.
*
* @return
* possible object is
* {@link ColorType }
*
*/
public ColorType getEmbossNColor() {
return embossNColor;
}
/**
* Sets the value of the embossNColor property.
*
* @param value
* allowed object is
* {@link ColorType }
*
*/
public void setEmbossNColor(ColorType value) {
this.embossNColor = value;
}
/**
* Gets the value of the embossSColor property.
*
* @return
* possible object is
* {@link ColorType }
*
*/
public ColorType getEmbossSColor() {
return embossSColor;
}
/**
* Sets the value of the embossSColor property.
*
* @param value
* allowed object is
* {@link ColorType }
*
*/
public void setEmbossSColor(ColorType value) {
this.embossSColor = value;
}
/**
* Gets the value of the embossWColor property.
*
* @return
* possible object is
* {@link ColorType }
*
*/
public ColorType getEmbossWColor() {
return embossWColor;
}
/**
* Sets the value of the embossWColor property.
*
* @param value
* allowed object is
* {@link ColorType }
*
*/
public void setEmbossWColor(ColorType value) {
this.embossWColor = value;
}
/**
* Gets the value of the textColor property.
*
* @return
* possible object is
* {@link ColorType }
*
*/
public ColorType getTextColor() {
return textColor;
}
/**
* Sets the value of the textColor property.
*
* @param value
* allowed object is
* {@link ColorType }
*
*/
public void setTextColor(ColorType value) {
this.textColor = value;
}
}