Clover icon

Coverage Report

  1. Project Clover database Thu Aug 13 2020 12:04:21 BST
  2. Package jalview.xml.binding.jalview

File SequenceType.java

 

Coverage histogram

../../../../img/srcFileCovDistChart10.png
0% of files have more coverage

Code metrics

0
8
8
1
153
46
8
1
1
8
1

Classes

Class Line # Actions
SequenceType 48 8 8
1.0100%
 

Contributing tests

This file is covered by 22 tests. .

Source view

1    //
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: 2019.06.07 at 02:21:15 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.XmlSeeAlso;
15    import javax.xml.bind.annotation.XmlType;
16   
17   
18    /**
19    * <p>Java class for SequenceType complex type.
20    *
21    * <p>The following schema fragment specifies the expected content contained within this class.
22    *
23    * <pre>
24    * &lt;complexType name="SequenceType">
25    * &lt;complexContent>
26    * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27    * &lt;sequence>
28    * &lt;element name="sequence" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
29    * &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
30    * &lt;/sequence>
31    * &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
32    * &lt;attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
33    * &lt;/restriction>
34    * &lt;/complexContent>
35    * &lt;/complexType>
36    * </pre>
37    *
38    *
39    */
40    @XmlAccessorType(XmlAccessType.FIELD)
41    @XmlType(name = "SequenceType", propOrder = {
42    "sequence",
43    "name"
44    })
45    @XmlSeeAlso({
46    Sequence.class
47    })
 
48    public class SequenceType {
49   
50    protected String sequence;
51    protected String name;
52    @XmlAttribute(name = "id")
53    protected String id;
54    @XmlAttribute(name = "description")
55    protected String description;
56   
57    /**
58    * Gets the value of the sequence property.
59    *
60    * @return
61    * possible object is
62    * {@link String }
63    *
64    */
 
65  667 toggle public String getSequence() {
66  667 return sequence;
67    }
68   
69    /**
70    * Sets the value of the sequence property.
71    *
72    * @param value
73    * allowed object is
74    * {@link String }
75    *
76    */
 
77  496 toggle public void setSequence(String value) {
78  496 this.sequence = value;
79    }
80   
81    /**
82    * Gets the value of the name property.
83    *
84    * @return
85    * possible object is
86    * {@link String }
87    *
88    */
 
89  667 toggle public String getName() {
90  667 return name;
91    }
92   
93    /**
94    * Sets the value of the name property.
95    *
96    * @param value
97    * allowed object is
98    * {@link String }
99    *
100    */
 
101  496 toggle public void setName(String value) {
102  496 this.name = value;
103    }
104   
105    /**
106    * Gets the value of the id property.
107    *
108    * @return
109    * possible object is
110    * {@link String }
111    *
112    */
 
113  1238 toggle public String getId() {
114  1238 return id;
115    }
116   
117    /**
118    * Sets the value of the id property.
119    *
120    * @param value
121    * allowed object is
122    * {@link String }
123    *
124    */
 
125  496 toggle public void setId(String value) {
126  496 this.id = value;
127    }
128   
129    /**
130    * Gets the value of the description property.
131    *
132    * @return
133    * possible object is
134    * {@link String }
135    *
136    */
 
137  667 toggle public String getDescription() {
138  667 return description;
139    }
140   
141    /**
142    * Sets the value of the description property.
143    *
144    * @param value
145    * allowed object is
146    * {@link String }
147    *
148    */
 
149  496 toggle public void setDescription(String value) {
150  496 this.description = value;
151    }
152   
153    }