ButtonColors.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.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{urn:com.io7m.idstore:configuration:1}Disabled"/>
* <element ref="{urn:com.io7m.idstore:configuration:1}Enabled"/>
* <element ref="{urn:com.io7m.idstore:configuration:1}Hover"/>
* <element ref="{urn:com.io7m.idstore:configuration:1}Pressed"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"disabled",
"enabled",
"hover",
"pressed"
})
@XmlRootElement(name = "ButtonColors")
public class ButtonColors {
@XmlElement(name = "Disabled", required = true)
protected ButtonStateColors disabled;
@XmlElement(name = "Enabled", required = true)
protected ButtonStateColors enabled;
@XmlElement(name = "Hover", required = true)
protected ButtonStateColors hover;
@XmlElement(name = "Pressed", required = true)
protected ButtonStateColors pressed;
/**
* Gets the value of the disabled property.
*
* @return
* possible object is
* {@link ButtonStateColors }
*
*/
public ButtonStateColors getDisabled() {
return disabled;
}
/**
* Sets the value of the disabled property.
*
* @param value
* allowed object is
* {@link ButtonStateColors }
*
*/
public void setDisabled(ButtonStateColors value) {
this.disabled = value;
}
/**
* Gets the value of the enabled property.
*
* @return
* possible object is
* {@link ButtonStateColors }
*
*/
public ButtonStateColors getEnabled() {
return enabled;
}
/**
* Sets the value of the enabled property.
*
* @param value
* allowed object is
* {@link ButtonStateColors }
*
*/
public void setEnabled(ButtonStateColors value) {
this.enabled = value;
}
/**
* Gets the value of the hover property.
*
* @return
* possible object is
* {@link ButtonStateColors }
*
*/
public ButtonStateColors getHover() {
return hover;
}
/**
* Sets the value of the hover property.
*
* @param value
* allowed object is
* {@link ButtonStateColors }
*
*/
public void setHover(ButtonStateColors value) {
this.hover = value;
}
/**
* Gets the value of the pressed property.
*
* @return
* possible object is
* {@link ButtonStateColors }
*
*/
public ButtonStateColors getPressed() {
return pressed;
}
/**
* Sets the value of the pressed property.
*
* @param value
* allowed object is
* {@link ButtonStateColors }
*
*/
public void setPressed(ButtonStateColors value) {
this.pressed = value;
}
}