Clover icon

Coverage Report

  1. Project Clover database Mon Nov 11 2024 15:05:32 GMT
  2. Package vamsas.objects.simple

File SequenceSet.java

 

Coverage histogram

../../../img/srcFileCovDistChart0.png
60% of files have more coverage

Code metrics

16
28
6
1
113
73
15
0.54
4.67
6
2.5

Classes

Class Line # Actions
SequenceSet 23 28 15
0.00%
 

Contributing tests

No tests hitting this source file were found.

Source view

1    /*
2    * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3    * Copyright (C) $$Year-Rel$$ The Jalview Authors
4    *
5    * This file is part of Jalview.
6    *
7    * Jalview is free software: you can redistribute it and/or
8    * modify it under the terms of the GNU General Public License
9    * as published by the Free Software Foundation, either version 3
10    * of the License, or (at your option) any later version.
11    *
12    * Jalview is distributed in the hope that it will be useful, but
13    * WITHOUT ANY WARRANTY; without even the implied warranty
14    * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15    * PURPOSE. See the GNU General Public License for more details.
16    *
17    * You should have received a copy of the GNU General Public License
18    * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19    * The Jalview Authors are detailed in the 'AUTHORS' file.
20    */
21    package vamsas.objects.simple;
22   
 
23    public class SequenceSet implements java.io.Serializable
24    {
25    private vamsas.objects.simple.Sequence[] seqs;
26   
 
27  0 toggle public SequenceSet()
28    {
29    }
30   
 
31  0 toggle public SequenceSet(vamsas.objects.simple.Sequence[] seqs)
32    {
33  0 this.seqs = seqs;
34    }
35   
36    /**
37    * Gets the seqs value for this SequenceSet.
38    *
39    * @return seqs
40    */
 
41  0 toggle public vamsas.objects.simple.Sequence[] getSeqs()
42    {
43  0 return seqs;
44    }
45   
46    /**
47    * Sets the seqs value for this SequenceSet.
48    *
49    * @param seqs
50    */
 
51  0 toggle public void setSeqs(vamsas.objects.simple.Sequence[] seqs)
52    {
53  0 this.seqs = seqs;
54    }
55   
56    private java.lang.Object __equalsCalc = null;
57   
 
58  0 toggle @Override
59    public synchronized boolean equals(java.lang.Object obj)
60    {
61  0 if (obj == null)
62    {
63  0 return false;
64    }
65  0 if (!(obj instanceof SequenceSet))
66    {
67  0 return false;
68    }
69  0 SequenceSet other = (SequenceSet) obj;
70  0 if (this == obj)
71    {
72  0 return true;
73    }
74  0 if (__equalsCalc != null)
75    {
76  0 return (__equalsCalc == obj);
77    }
78  0 __equalsCalc = obj;
79  0 boolean _equals;
80  0 _equals = true && ((this.seqs == null && other.getSeqs() == null)
81    || (this.seqs != null && java.util.Arrays.equals(this.seqs,
82    other.getSeqs())));
83  0 __equalsCalc = null;
84  0 return _equals;
85    }
86   
87    private boolean __hashCodeCalc = false;
88   
 
89  0 toggle @Override
90    public synchronized int hashCode()
91    {
92  0 if (__hashCodeCalc)
93    {
94  0 return 0;
95    }
96  0 __hashCodeCalc = true;
97  0 int _hashCode = 1;
98  0 if (getSeqs() != null)
99    {
100  0 for (int i = 0; i < java.lang.reflect.Array.getLength(getSeqs()); i++)
101    {
102  0 java.lang.Object obj = java.lang.reflect.Array.get(getSeqs(), i);
103  0 if (obj != null && !obj.getClass().isArray())
104    {
105  0 _hashCode += obj.hashCode();
106    }
107    }
108    }
109  0 __hashCodeCalc = false;
110  0 return _hashCode;
111    }
112   
113    }