Clover icon

Coverage Report

  1. Project Clover database Mon Sep 2 2024 17:57:51 BST
  2. Package jalview.xml.binding.embl

File ROOT.java

 

Coverage histogram

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

Code metrics

0
4
4
1
94
29
4
1
1
4
1

Classes

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