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