01: /*
02: * Created on 2006.4.26
03: * Milin Radivoj
04: * rmilin@gmail.com
05: */
06:
07: package org.enhydra.snapperPreviewer.spec;
08:
09: import java.util.List;
10:
11: /**
12: * @author Milin Radivoj
13: *
14: */
15: public interface DocumentGroup {
16:
17: public List getListOfDocumentGroup() throws Exception;
18:
19: public FileType[] getListOfFILETYPES(String groupName)
20: throws Exception;
21:
22: }
|