1 package com.loribel.commons.abstraction;
2
3 /***
4 * Abstraction of a Enum String Selector.
5 */
6 public interface GB_EnumStringSelectorSet
7 extends
8 GB_SelectorSet,
9 GB_EnumStringSelector
10 {
11 /***
12 * Sets the values to include or to exclude.
13 */
14 void setValues(
15 String[] a_values);
16
17 }