Revision 539,
375 bytes
checked in by wojtekp, 12 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Rev | Line | |
---|
[539] | 1 | package schedframe.scheduling; |
---|
| 2 | |
---|
| 3 | import java.util.ArrayList; |
---|
| 4 | |
---|
| 5 | import schedframe.scheduling.tasks.TaskInterface; |
---|
| 6 | |
---|
| 7 | |
---|
| 8 | public 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.