1 package com.loribel.commons.abstraction;
2
3 /***
4 * Interface for Object with labels, descriptions.
5 *
6 * @author Grégory Borelli
7 */
8 public interface GB_LabelsDescOwner
9 extends
10 GB_IconsOwner
11 {
12 String getLabel(
13 String a_name,
14 String a_lng,
15 boolean a_useDefault);
16
17 String getDescription(
18 String a_name,
19 String a_lng,
20 boolean a_useDefault);
21 }