source: DCWoRMS/trunk/src/schedframe/scheduling/TaskListImpl.java @ 481

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