View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   /***
4    * Interface.
5    */
6   public interface GB_StringM
7           extends
8               GB_StringLngSet
9   {
10      String getEn();
11  
12      void setEn(
13              String a_en);
14  
15      String getFr();
16  
17      void setFr(
18              String a_fr);
19  
20      String getEs();
21  
22      void setEs(
23              String a_es);
24  }