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 javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlAttribute;
14 import javax.xml.bind.annotation.XmlRootElement;
15 import javax.xml.bind.annotation.XmlType;
19 * <p>Java class for anonymous complex type.
21 * <p>The following schema fragment specifies the expected content contained within this class.
26 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28 * <element name="displayCharacter" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
29 * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
30 * <element name="secondaryStructure" minOccurs="0">
32 * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
33 * <length value="1"/>
37 * <element name="value" type="{http://www.w3.org/2001/XMLSchema}float" minOccurs="0"/>
39 * <attribute name="position" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
40 * <attribute name="colour" type="{http://www.w3.org/2001/XMLSchema}int" />
42 * </complexContent>
48 @XmlAccessorType(XmlAccessType.FIELD)
49 @XmlType(name = "", propOrder = {
55 @XmlRootElement(name = "annotationElement")
56 public class AnnotationElement {
58 protected String displayCharacter;
59 protected String description;
60 protected String secondaryStructure;
61 protected Float value;
62 @XmlAttribute(name = "position", required = true)
63 protected int position;
64 @XmlAttribute(name = "colour")
65 protected Integer colour;
68 * Gets the value of the displayCharacter property.
75 public String getDisplayCharacter() {
76 return displayCharacter;
80 * Sets the value of the displayCharacter property.
87 public void setDisplayCharacter(String value) {
88 this.displayCharacter = value;
92 * Gets the value of the description property.
99 public String getDescription() {
104 * Sets the value of the description property.
111 public void setDescription(String value) {
112 this.description = value;
116 * Gets the value of the secondaryStructure property.
123 public String getSecondaryStructure() {
124 return secondaryStructure;
128 * Sets the value of the secondaryStructure property.
135 public void setSecondaryStructure(String value) {
136 this.secondaryStructure = value;
140 * Gets the value of the value property.
147 public Float getValue() {
152 * Sets the value of the value property.
159 public void setValue(Float value) {
164 * Gets the value of the position property.
167 public int getPosition() {
172 * Sets the value of the position property.
175 public void setPosition(int value) {
176 this.position = value;
180 * Gets the value of the colour property.
187 public Integer getColour() {
192 * Sets the value of the colour property.
199 public void setColour(Integer value) {