source:
xssim/src/schedframe/scheduling/plugin/grid/ModuleList.java
@
104
Revision 104, 278 bytes checked in by wojtekp, 13 years ago (diff) | |
---|---|
|
Line | |
---|---|
1 | package schedframe.scheduling.plugin.grid; |
2 | |
3 | import java.util.List; |
4 | |
5 | public interface ModuleList extends List<Module>{ |
6 | |
7 | public <T extends Module> List<T> get(ModuleType type); |
8 | |
9 | public Module getModule(ModuleType type); |
10 | |
11 | public boolean isModuleAvailable(ModuleType type); |
12 | } |
Note: See TracBrowser
for help on using the repository browser.