2 * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7)
3 * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, G Barton, M Clamp, S Searle
5 * This file is part of Jalview.
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 of the License, or (at your option) any later version.
11 * Jalview is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty
13 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along with Jalview. If not, see <http://www.gnu.org/licenses/>.
18 package vamsas.objects.simple;
20 public class Sequence implements java.io.Serializable
22 private java.lang.String id;
24 private java.lang.String seq;
30 public Sequence(java.lang.String id, java.lang.String seq)
37 * Gets the id value for this Sequence.
41 public java.lang.String getId()
47 * Sets the id value for this Sequence.
51 public void setId(java.lang.String id)
57 * Gets the seq value for this Sequence.
61 public java.lang.String getSeq()
67 * Sets the seq value for this Sequence.
71 public void setSeq(java.lang.String seq)
76 private java.lang.Object __equalsCalc = null;
78 public synchronized boolean equals(java.lang.Object obj)
80 if (!(obj instanceof Sequence))
82 Sequence other = (Sequence) obj;
87 if (__equalsCalc != null)
89 return (__equalsCalc == obj);
94 && ((this.id == null && other.getId() == null) || (this.id != null && this.id
95 .equals(other.getId())))
96 && ((this.seq == null && other.getSeq() == null) || (this.seq != null && this.seq
97 .equals(other.getSeq())));
102 private boolean __hashCodeCalc = false;
104 public synchronized int hashCode()
110 __hashCodeCalc = true;
114 _hashCode += getId().hashCode();
116 if (getSeq() != null)
118 _hashCode += getSeq().hashCode();
120 __hashCodeCalc = false;