2 * Jalview - A Sequence Alignment Editor and Viewer
\r
3 * Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
\r
5 * This program is free software; you can redistribute it and/or
\r
6 * modify it under the terms of the GNU General Public License
\r
7 * as published by the Free Software Foundation; either version 2
\r
8 * of the License, or (at your option) any later version.
\r
10 * This program is distributed in the hope that it will be useful,
\r
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
13 * GNU General Public License for more details.
\r
15 * You should have received a copy of the GNU General Public License
\r
16 * along with this program; if not, write to the Free Software
\r
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
\r
19 package jalview.gui;
\r
25 * NOTE: Columns are zero based.
\r
27 public class ColumnSelection
\r
29 Vector selected = new Vector();
\r
34 * @param col DOCUMENT ME!
\r
36 public void addElement(int col)
\r
38 if (!selected.contains(new Integer(col)))
\r
40 selected.addElement(new Integer(col));
\r
49 selected.removeAllElements();
\r
55 * @param col DOCUMENT ME!
\r
57 public void removeElement(int col)
\r
59 Integer colInt = new Integer(col);
\r
61 if (selected.contains(colInt))
\r
63 selected.removeElement(colInt);
\r
67 public void removeElements(int start, int end)
\r
70 for(int i=start; i<end; i++)
\r
72 colInt = new Integer(i);
\r
73 if (selected.contains(colInt))
\r
75 selected.removeElement(colInt);
\r
83 * @param col DOCUMENT ME!
\r
85 * @return DOCUMENT ME!
\r
87 public boolean contains(int col)
\r
89 return selected.contains(new Integer(col));
\r
95 * @param i DOCUMENT ME!
\r
97 * @return DOCUMENT ME!
\r
99 public int columnAt(int i)
\r
101 return ((Integer) selected.elementAt(i)).intValue();
\r
107 * @return DOCUMENT ME!
\r
111 return selected.size();
\r
117 * @return DOCUMENT ME!
\r
119 public int getMax()
\r
123 for (int i = 0; i < selected.size(); i++)
\r
125 if (columnAt(i) > max)
\r
137 * @return DOCUMENT ME!
\r
139 public int getMin()
\r
141 int min = 1000000000;
\r
143 for (int i = 0; i < selected.size(); i++)
\r
145 if (columnAt(i) < min)
\r
157 * @return DOCUMENT ME!
\r
159 public Vector asVector()
\r
167 * @param start DOCUMENT ME!
\r
168 * @param change DOCUMENT ME!
\r
170 public void compensateForEdit(int start, int change)
\r
172 for (int i = 0; i < size(); i++)
\r
174 int temp = columnAt(i);
\r
178 selected.setElementAt(new Integer(temp - change), i);
\r