detect possibly evil tasks and do the right thing if a possibly evil execution patter...
[IRC.git] / Robust / src / Util / Tuples.java
1 import java.util.ArrayList;\r
2 \r
3 public interface Tuples {\r
4     int size();\r
5     int hashCode();\r
6     void remove(int i);\r
7     ArrayList getList();\r
8         Object get(int i);\r
9         String toString();\r
10 }