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