2 * Jalview - A Sequence Alignment Editor and Viewer
3 * Copyright (C) 2007 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 package jalview.datamodel;
29 public class Annotation
32 public String displayCharacter = "";
35 public String description = ""; // currently used as mouse over
38 public char secondaryStructure = ' '; // recognises H and E
43 // add visual cues here
46 public Color colour = Color.black;
49 * Creates a new Annotation object.
51 * @param displayChar DOCUMENT ME!
52 * @param desc DOCUMENT ME!
53 * @param ss DOCUMENT ME!
54 * @param val DOCUMENT ME!
56 public Annotation(String displayChar, String desc, char ss, float val)
58 displayCharacter = displayChar;
60 secondaryStructure = ss;
65 * Creates a new Annotation object.
67 * @param displayChar DOCUMENT ME!
68 * @param desc DOCUMENT ME!
69 * @param ss DOCUMENT ME!
70 * @param val DOCUMENT ME!
71 * @param colour DOCUMENT ME!
73 public Annotation(String displayChar, String desc, char ss, float val,
76 this(displayChar, desc, ss, val);
81 * New annotation takes on the same (or duplicated) attributes as the given template
82 * @param that template annotation
84 public Annotation(Annotation that) {
85 if (that==null || this==that)
89 if (that.displayCharacter!=null)
90 displayCharacter = new String(that.displayCharacter);
91 if (that.description!=null)
92 description = new String(that.description);
93 secondaryStructure = that.secondaryStructure;