2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
3 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4 // Any modifications to this file will be lost upon recompilation of the source schema.
5 // Generated on: 2018.12.20 at 11:47:26 AM GMT
9 package jalview.xml.binding.jalview;
11 import java.util.ArrayList;
12 import java.util.List;
13 import javax.xml.bind.annotation.XmlAccessType;
14 import javax.xml.bind.annotation.XmlAccessorType;
15 import javax.xml.bind.annotation.XmlAttribute;
16 import javax.xml.bind.annotation.XmlElement;
17 import javax.xml.bind.annotation.XmlType;
21 * <p>Java class for FeatureMatcher complex type.
23 * <p>The following schema fragment specifies the expected content contained within this class.
26 * <complexType name="FeatureMatcher">
28 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30 * <element name="attributeName" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="2" minOccurs="0"/>
31 * <element name="condition" type="{http://www.w3.org/2001/XMLSchema}string"/>
32 * <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
34 * <attribute name="by" type="{www.jalview.org/colours}FilterBy" />
36 * </complexContent>
42 @XmlAccessorType(XmlAccessType.FIELD)
43 @XmlType(name = "FeatureMatcher", namespace = "www.jalview.org/colours", propOrder = {
48 public class FeatureMatcher {
50 @XmlElement(namespace = "")
51 protected List<String> attributeName;
52 @XmlElement(namespace = "", required = true)
53 protected String condition;
54 @XmlElement(namespace = "", required = true)
55 protected String value;
56 @XmlAttribute(name = "by")
57 protected FilterBy by;
60 * Gets the value of the attributeName property.
63 * This accessor method returns a reference to the live list,
64 * not a snapshot. Therefore any modification you make to the
65 * returned list will be present inside the JAXB object.
66 * This is why there is not a <CODE>set</CODE> method for the attributeName property.
69 * For example, to add a new item, do as follows:
71 * getAttributeName().add(newItem);
76 * Objects of the following type(s) are allowed in the list
81 public List<String> getAttributeName() {
82 if (attributeName == null) {
83 attributeName = new ArrayList<String>();
85 return this.attributeName;
89 * Gets the value of the condition property.
96 public String getCondition() {
101 * Sets the value of the condition property.
108 public void setCondition(String value) {
109 this.condition = value;
113 * Gets the value of the value property.
120 public String getValue() {
125 * Sets the value of the value property.
132 public void setValue(String value) {
137 * Gets the value of the by property.
144 public FilterBy getBy() {
149 * Sets the value of the by property.
156 public void setBy(FilterBy value) {