01: /*
02: * Created on 11 Mar 2007
03: */
04: package uk.org.ponder.rsf.evolvers;
05:
06: /** A refinement of the {@link DynamicListInputEvolver} that allows restrictions
07: * to be placed on the number of items that can be input.
08: * @author Antranig Basman (antranig@caret.cam.ac.uk)
09: */
10: public interface BoundedDynamicListInputEvolver extends
11: DynamicListInputEvolver {
12: /** Set the minimum number of list elements that the interface will permit
13: * to be displayed */
14: public void setMinimumLength(int minlength);
15:
16: /** Set the maximum number of list elements that the interface will permit
17: * to be displayed */
18: public void setMaximumLength(int maxlength);
19:
20: }
|