ORCentral
|
00001 package eu.coform; 00002 00003 public class Taco { 00004 00005 private UniqueID id; 00006 private String troll; 00007 private String flush; 00008 public void setTroll(String troll) { 00009 this.troll = troll; 00010 } 00011 public String getTroll() { 00012 return troll; 00013 } 00014 public void setFlush(String flush) { 00015 this.flush = flush; 00016 } 00017 public String getFlush() { 00018 return flush; 00019 } 00020 public void setId(UniqueID id) { 00021 this.id = id; 00022 } 00023 public UniqueID getId() { 00024 return id; 00025 } 00026 00027 00028 00029 }