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