1 package com.loribel.commons.abstraction; 2 3 /*** 4 * Interface to reprensent label with icons with locale. 5 * 6 * @author Grégory Borelli 7 */ 8 public interface GB_LabelIconLng 9 { 10 /*** 11 * Returns the LabelIcon according to a lng. 12 * Uses ISO 2 letters language. 13 */ 14 GB_LabelIcon getLabelIcon( 15 String a_lng); 16 17 /*** 18 * Returns the available languages. 19 * Uses ISO 2 letters language. 20 */ 21 String[] getLanguages(); 22 }