source: xssim/trunk/src/test/rewolucja/extensions/ExtensionList.java @ 104

Revision 104, 297 bytes checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package test.rewolucja.extensions;
2
3import java.util.List;
4
5public 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.