Merge branch 'releases/Release_2_11_3_Branch'
[jalview.git] / src / jalview / xml / binding / jalview / Property.java
1 //
2 // This file was generated by the Eclipse Implementation of JAXB, v2.3.3 
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: 2023.11.01 at 07:03:09 PM GMT 
6 //
7
8 package jalview.xml.binding.jalview;
9
10 import javax.xml.bind.annotation.XmlAccessType;
11 import javax.xml.bind.annotation.XmlAccessorType;
12 import javax.xml.bind.annotation.XmlAttribute;
13 import javax.xml.bind.annotation.XmlType;
14
15 /**
16  * <p>Java class for property complex type.
17  * 
18  * <p>The following schema fragment specifies the expected content
19  * contained within this class.
20  * 
21  * <pre> <complexType name="property">
22  * <complexContent> <restriction
23  * base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute
24  * name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
25  * <attribute name="value"
26  * type="{http://www.w3.org/2001/XMLSchema}string" />
27  * </restriction> </complexContent>
28  * </complexType> </pre>
29  * 
30  * 
31  */
32 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "property")
34 public class Property
35 {
36
37   @XmlAttribute(name = "name")
38   protected String name;
39
40   @XmlAttribute(name = "value")
41   protected String value;
42
43   /**
44    * Gets the value of the name property.
45    * 
46    * @return possible object is {@link String }
47    * 
48    */
49   public String getName()
50   {
51     return name;
52   }
53
54   /**
55    * Sets the value of the name property.
56    * 
57    * @param value
58    *          allowed object is {@link String }
59    * 
60    */
61   public void setName(String value)
62   {
63     this.name = value;
64   }
65
66   /**
67    * Gets the value of the value property.
68    * 
69    * @return possible object is {@link String }
70    * 
71    */
72   public String getValue()
73   {
74     return value;
75   }
76
77   /**
78    * Sets the value of the value property.
79    * 
80    * @param value
81    *          allowed object is {@link String }
82    * 
83    */
84   public void setValue(String value)
85   {
86     this.value = value;
87   }
88
89 }