1 package se.perfectfools.localizer.impl; 2 3 import se.perfectfools.localizer.Message; 4 5 /*** 6 * 7 * 8 * @author Pål Brattberg, pal@eminds.se 9 */ 10 public class MessageImpl implements Message { 11 12 private String id; 13 14 private String text; 15 16 /*** 17 * @return Returns the id. 18 */ 19 public String getId() { 20 return id; 21 } 22 23 /*** 24 * @param id 25 * The id to set. 26 */ 27 public void setId(String id) { 28 this.id = id; 29 } 30 31 /*** 32 * @return Returns the text. 33 */ 34 public String getText() { 35 return text; 36 } 37 38 /*** 39 * @param text 40 * The text to set. 41 */ 42 public void setText(String text) { 43 this.text = text; 44 } 45 }