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