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