add/remove updated
[jalview.git] / src / jalview / appletgui / ColumnSelection.java
1 /*\r
2  * Jalview - A Sequence Alignment Editor and Viewer\r
3  * Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle\r
4  *\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
9  *\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
14  *\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
18  */\r
19 \r
20 package jalview.appletgui;\r
21 \r
22 import java.util.*;\r
23 \r
24 /**\r
25  * NOTE: Columns are zero based.\r
26  */\r
27 public class ColumnSelection\r
28 {\r
29   Vector selected = new Vector();\r
30 \r
31   public void addElement(int col)\r
32   {\r
33     if(!selected.contains(new Integer(col)))\r
34       selected.addElement(new Integer(col));\r
35   }\r
36 \r
37   public void clear()\r
38   {\r
39     selected.removeAllElements();\r
40   }\r
41 \r
42   public void removeElement(int col)\r
43   {\r
44     Integer colInt = new Integer(col);\r
45     if (selected.contains(colInt))\r
46     {\r
47       selected.removeElement(colInt);\r
48     }\r
49   }\r
50 \r
51   public boolean contains(int col)\r
52   {\r
53     return selected.contains(new Integer(col));\r
54   }\r
55 \r
56   public int columnAt(int i)\r
57   {\r
58     return ( (Integer) selected.elementAt(i)).intValue();\r
59   }\r
60 \r
61   public int size()\r
62   {\r
63     return selected.size();\r
64   }\r
65 \r
66   public int getMax()\r
67   {\r
68     int max = -1;\r
69 \r
70     for (int i = 0; i < selected.size(); i++)\r
71     {\r
72       if (columnAt(i) > max)\r
73       {\r
74         max = columnAt(i);\r
75       }\r
76     }\r
77     return max;\r
78   }\r
79 \r
80   public int getMin()\r
81   {\r
82     int min = 1000000000;\r
83 \r
84     for (int i = 0; i < selected.size(); i++)\r
85     {\r
86       if (columnAt(i) < min)\r
87       {\r
88         min = columnAt(i);\r
89       }\r
90     }\r
91     return min;\r
92   }\r
93 \r
94   public Vector asVector()\r
95   {\r
96     return selected;\r
97   }\r
98 \r
99   public void compensateForEdit(int start, int change)\r
100   {\r
101     for (int i = 0; i < size(); i++)\r
102     {\r
103       int temp = columnAt(i);\r
104 \r
105       if (temp >= start)\r
106       {\r
107         selected.setElementAt(new Integer(temp - change), i);\r
108       }\r
109     }\r
110   }\r
111 }\r