00001 package ca.mcgill.sable.util;
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079 public abstract class AbstractCollection implements Collection
00080 {
00081 public boolean add(Object o)
00082 {
00083 throw new UnsupportedOperationException();
00084 }
00085 public boolean addAll(Collection c)
00086 {
00087 boolean modified = false;
00088
00089 for(Iterator i = c.iterator(); i.hasNext();)
00090 {
00091 modified |= add(i.next());
00092 }
00093
00094 return modified;
00095 }
00096 public void clear()
00097 {
00098 for(Iterator i = iterator(); i.hasNext();)
00099 {
00100 i.next();
00101 i.remove();
00102 }
00103 }
00104 public boolean contains(Object o)
00105 {
00106 for(Iterator i = iterator(); i.hasNext();)
00107 {
00108 if((o==null) ? i.next()==null : o.equals(i.next()))
00109 {
00110 return true;
00111 }
00112 }
00113
00114 return false;
00115 }
00116 public boolean containsAll(Collection c)
00117 {
00118 for(Iterator i = c.iterator(); i.hasNext();)
00119 {
00120 if(!contains(i.next()))
00121 {
00122 return false;
00123 }
00124 }
00125
00126 return true;
00127 }
00128 public boolean isEmpty()
00129 {
00130 return size() == 0;
00131 }
00132 public boolean remove(Object o)
00133 {
00134 for(Iterator i = iterator(); i.hasNext();)
00135 {
00136 if(o==null ? i.next()==null : o.equals(i.next()))
00137 {
00138 i.remove();
00139 return true;
00140 }
00141 }
00142
00143 return false;
00144 }
00145 public boolean removeAll(Collection c)
00146 {
00147 boolean modified = false;
00148
00149 for(Iterator i = iterator(); i.hasNext();)
00150 {
00151 Object e = i.next();
00152
00153 if(c.contains(e))
00154 {
00155 modified = true;
00156 i.remove();
00157 }
00158 }
00159
00160 return modified;
00161 }
00162 public boolean retainAll(Collection c)
00163 {
00164 boolean modified = false;
00165
00166 for(Iterator i = iterator(); i.hasNext();)
00167 {
00168 Object e = i.next();
00169
00170 if(!c.contains(e))
00171 {
00172 modified = true;
00173 i.remove();
00174 }
00175 }
00176
00177 return modified;
00178 }
00179 public Object[] toArray()
00180 {
00181 Object[] a = new Object[size()];
00182 int pos = 0;
00183
00184 for(Iterator i = iterator(); i.hasNext();)
00185 {
00186 a[pos++] = i.next();
00187 }
00188
00189 return a;
00190 }
00191 public void toArray(Object[] a)
00192 {
00193 int pos = 0;
00194
00195 for(Iterator i = iterator(); i.hasNext();)
00196 {
00197 a[pos++] = i.next();
00198 }
00199 }
00200 public String toString()
00201 {
00202 StringBuffer s = new StringBuffer();
00203 boolean first = true;
00204
00205 s.append("{");
00206 for(Iterator i = iterator(); i.hasNext();)
00207 {
00208 if(!first)
00209 {
00210 s.append(",");
00211 }
00212 else
00213 {
00214 first = false;
00215 }
00216
00217 s.append(i.next());
00218 }
00219 s.append("}");
00220
00221 return s.toString();
00222 }
00223 }