source: DCWoRMS/trunk/build/classes/schedframe/scheduling/TaskListImpl.java @ 539

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