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
20 package jalview.appletgui;
\r
25 * NOTE: Columns are zero based.
\r
27 public class ColumnSelection
\r
29 Vector selected = new Vector();
\r
31 public void addElement(int col)
\r
33 if(!selected.contains(new Integer(col)))
\r
34 selected.addElement(new Integer(col));
\r
39 selected.removeAllElements();
\r
42 public void removeElement(int col)
\r
44 Integer colInt = new Integer(col);
\r
45 if (selected.contains(colInt))
\r
47 selected.removeElement(colInt);
\r
51 public void removeElements(int start, int end)
\r
54 for(int i=start; i<end; i++)
\r
56 colInt = new Integer(i);
\r
57 if (selected.contains(colInt))
\r
59 selected.removeElement(colInt);
\r
64 public boolean contains(int col)
\r
66 return selected.contains(new Integer(col));
\r
69 public int columnAt(int i)
\r
71 return ( (Integer) selected.elementAt(i)).intValue();
\r
76 return selected.size();
\r
83 for (int i = 0; i < selected.size(); i++)
\r
85 if (columnAt(i) > max)
\r
95 int min = 1000000000;
\r
97 for (int i = 0; i < selected.size(); i++)
\r
99 if (columnAt(i) < min)
\r
107 public Vector asVector()
\r
112 public void compensateForEdit(int start, int change)
\r
114 for (int i = 0; i < size(); i++)
\r
116 int temp = columnAt(i);
\r
120 selected.setElementAt(new Integer(temp - change), i);
\r