| Class | Line # | Actions | |||
|---|---|---|---|---|---|
| Property | 37 | 4 | 4 |
| 1 | // | |
| 2 | // This file was generated by the Eclipse Implementation of JAXB, v2.3.9 | |
| 3 | // See https://eclipse-ee4j.github.io/jaxb-ri | |
| 4 | // Any modifications to this file will be lost upon recompilation of the source schema. | |
| 5 | // Generated on: 2025.04.17 at 04:05:44 PM BST | |
| 6 | // | |
| 7 | ||
| 8 | ||
| 9 | package jalview.xml.binding.jalview; | |
| 10 | ||
| 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.XmlType; | |
| 15 | ||
| 16 | ||
| 17 | /** | |
| 18 | * <p>Java class for property complex type</p>. | |
| 19 | * | |
| 20 | * <p>The following schema fragment specifies the expected content contained within this class.</p> | |
| 21 | * | |
| 22 | * <pre> | |
| 23 | * <complexType name="property"> | |
| 24 | * <complexContent> | |
| 25 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
| 26 | * <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" /> | |
| 27 | * <attribute name="value" type="{http://www.w3.org/2001/XMLSchema}string" /> | |
| 28 | * </restriction> | |
| 29 | * </complexContent> | |
| 30 | * </complexType> | |
| 31 | * </pre> | |
| 32 | * | |
| 33 | * | |
| 34 | */ | |
| 35 | @XmlAccessorType(XmlAccessType.FIELD) | |
| 36 | @XmlType(name = "property") | |
| 37 | public class Property { | |
| 38 | ||
| 39 | @XmlAttribute(name = "name") | |
| 40 | protected String name; | |
| 41 | @XmlAttribute(name = "value") | |
| 42 | protected String value; | |
| 43 | ||
| 44 | /** | |
| 45 | * Gets the value of the name property. | |
| 46 | * | |
| 47 | * @return | |
| 48 | * possible object is | |
| 49 | * {@link String } | |
| 50 | * | |
| 51 | */ | |
| 52 | 452 | public String getName() { |
| 53 | 452 | return name; |
| 54 | } | |
| 55 | ||
| 56 | /** | |
| 57 | * Sets the value of the name property. | |
| 58 | * | |
| 59 | * @param value | |
| 60 | * allowed object is | |
| 61 | * {@link String } | |
| 62 | * | |
| 63 | */ | |
| 64 | 340 | public void setName(String value) { |
| 65 | 340 | this.name = value; |
| 66 | } | |
| 67 | ||
| 68 | /** | |
| 69 | * Gets the value of the value property. | |
| 70 | * | |
| 71 | * @return | |
| 72 | * possible object is | |
| 73 | * {@link String } | |
| 74 | * | |
| 75 | */ | |
| 76 | 452 | public String getValue() { |
| 77 | 452 | return value; |
| 78 | } | |
| 79 | ||
| 80 | /** | |
| 81 | * Sets the value of the value property. | |
| 82 | * | |
| 83 | * @param value | |
| 84 | * allowed object is | |
| 85 | * {@link String } | |
| 86 | * | |
| 87 | */ | |
| 88 | 340 | public void setValue(String value) { |
| 89 | 340 | this.value = value; |
| 90 | } | |
| 91 | ||
| 92 | } |