source: xssim/trunk/src/test/rewolucja/task/JobList.java @ 104

Revision 104, 360 bytes checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package test.rewolucja.task;
2
3import java.util.ArrayList;
4
5import test.rewolucja.GSSIMJobInterface;
6
7public class JobList extends ArrayList<GSSIMJobInterface<?>> implements JobListInterface {
8
9        private static final long serialVersionUID = -3824600938144742457L;
10
11        public JobList(){
12                super();
13        }
14       
15        public JobList(int initialSize){
16                super(initialSize);
17        }       
18}
Note: See TracBrowser for help on using the repository browser.