1 package test.util; 2 3 import org.bitbucket.jrsofty.parser.logging.api.LogEntry; 4 5 public class LogElementNoAnnotations implements LogEntry { 6 7 private String value1; 8 private String value2; 9 10 public LogElementNoAnnotations() { 11 12 } 13 14 public void setValue1(final String value1) { 15 this.value1 = value1; 16 17 } 18 19 public String getValue1() { 20 return this.value1; 21 } 22 23 public void setValue2(final String value2) { 24 this.value2 = value2; 25 } 26 27 public String value2() { 28 return this.value2; 29 } 30 31 }