Clover icon

Coverage Report

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

File ROOT.java

 

Coverage histogram

../../../../img/srcFileCovDistChart5.png
39% of files have more coverage

Code metrics

0
4
4
1
96
27
4
1
1
4
1

Classes

Class Line # Actions
ROOT 43 4 4
0.550%
 

Contributing tests

This file is covered by 2 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: 2018.09.14 at 02:46:00 PM BST
6    //
7   
8   
9    package jalview.xml.binding.embl;
10   
11    import javax.xml.bind.annotation.XmlAccessType;
12    import javax.xml.bind.annotation.XmlAccessorType;
13    import javax.xml.bind.annotation.XmlRootElement;
14    import javax.xml.bind.annotation.XmlType;
15   
16   
17    /**
18    * <p>Java class for anonymous complex type.
19    *
20    * <p>The following schema fragment specifies the expected content contained within this class.
21    *
22    * <pre>
23    * &lt;complexType>
24    * &lt;complexContent>
25    * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26    * &lt;choice>
27    * &lt;element name="entrySet" type="{}EntrySetType"/>
28    * &lt;element name="entry" type="{}EntryType"/>
29    * &lt;/choice>
30    * &lt;/restriction>
31    * &lt;/complexContent>
32    * &lt;/complexType>
33    * </pre>
34    *
35    *
36    */
37    @XmlAccessorType(XmlAccessType.FIELD)
38    @XmlType(name = "", propOrder = {
39    "entrySet",
40    "entry"
41    })
42    @XmlRootElement(name = "ROOT")
 
43    public class ROOT {
44   
45    protected EntrySetType entrySet;
46    protected EntryType entry;
47   
48    /**
49    * Gets the value of the entrySet property.
50    *
51    * @return
52    * possible object is
53    * {@link EntrySetType }
54    *
55    */
 
56  2 toggle public EntrySetType getEntrySet() {
57  2 return entrySet;
58    }
59   
60    /**
61    * Sets the value of the entrySet property.
62    *
63    * @param value
64    * allowed object is
65    * {@link EntrySetType }
66    *
67    */
 
68  0 toggle public void setEntrySet(EntrySetType value) {
69  0 this.entrySet = value;
70    }
71   
72    /**
73    * Gets the value of the entry property.
74    *
75    * @return
76    * possible object is
77    * {@link EntryType }
78    *
79    */
 
80  4 toggle public EntryType getEntry() {
81  4 return entry;
82    }
83   
84    /**
85    * Sets the value of the entry property.
86    *
87    * @param value
88    * allowed object is
89    * {@link EntryType }
90    *
91    */
 
92  0 toggle public void setEntry(EntryType value) {
93  0 this.entry = value;
94    }
95   
96    }