1 package com.loribel.commons.business.abstraction;
2
3 import com.loribel.commons.abstraction.*;
4
5 /***
6 * Abstraction
7 *
8 * @author Gregory Borelli
9 */
10 public interface GB_BOEnumValuesGroup
11 extends
12 GB_LabelsDescOwner,
13 GB_NameOwner
14 {
15 String getPropertyId();
16
17 String getValues(
18 String a_groupValue);
19
20 String[] getValuesStr(
21 String a_groupValue);
22 }