1 package se.perfectfools.localizer; 2 3 /*** 4 * Models a single key (a single message) that can be localized. 5 * 6 * @author Pål Brattberg, pal@eminds.se 7 */ 8 public interface Message { 9 String getId(); 10 11 String getText(); 12 13 void setId(String id); 14 15 void setText(String text); 16 }