Revision 104,
333 bytes
checked in by wojtekp, 13 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Line | |
---|
1 | package schedframe.scheduling.plan; |
---|
2 | |
---|
3 | |
---|
4 | import schedframe.scheduling.utils.DescriptionContainer; |
---|
5 | |
---|
6 | public interface ProcessesMapInterface<T> extends DescriptionContainer<T> { |
---|
7 | |
---|
8 | public void setSlotsPerNode(int arg); |
---|
9 | |
---|
10 | public int getSlotsPerNode(); |
---|
11 | |
---|
12 | public void setProcessesPerNode(int[] arg); |
---|
13 | |
---|
14 | public int[] getProcessesPerNode(); |
---|
15 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.