source:
DCWoRMS/trunk/src/schedframe/resources/computing/extensions/ExtensionList.java
@
477
Revision 477, 313 bytes checked in by wojtekp, 13 years ago (diff) | |
---|---|
|
Line | |
---|---|
1 | package schedframe.resources.computing.extensions; |
2 | |
3 | import java.util.List; |
4 | |
5 | public interface ExtensionList extends List<Extension>{ |
6 | |
7 | public <T extends Extension> List<T> get(ExtensionType type); |
8 | |
9 | public Extension getExtension(ExtensionType type); |
10 | |
11 | public boolean isExtensionAvailable(ExtensionType type); |
12 | } |
Note: See TracBrowser
for help on using the repository browser.