1 27 package olstore.dto; 28 29 30 public class PictureValue { 31 32 private String location = null; 33 private String priority = "0"; 34 private String text = null; 35 36 public String getLocation () { 37 return location ; 38 } 39 public void setLocation ( String loc) { 40 this.location = loc; 41 } 42 43 public String getPriority () { 44 return priority; 45 } 46 public void setPriority ( String priority) { 47 this.priority = priority; 48 } 49 50 public String getText () { 51 return text; 52 } 53 public void setText ( String text) { 54 this.text = text; 55 } 56 } 57 | Popular Tags |