View Javadoc

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_LabelIconLngSet
9           extends
10              GB_LabelIconLng
11  {
12      /***
13       * Puts a LabelIcon for a lng.
14       */
15      void putLabelIcon(
16              String a_lng,
17              GB_LabelIcon a_labelIcon);
18  }