An Eclipse RCP reimplementation of bgg1tool by Nand. See http://www.nand.it/nandeck/ for the original tool.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

83 line
1.8KB

  1. package xyz.veronie.bgg.result;
  2. import java.beans.PropertyChangeListener;
  3. import java.beans.PropertyChangeSupport;
  4. public class ThingMetaData implements java.io.Serializable {
  5. private static final long serialVersionUID = -5268898737006538509L;
  6. private int id;
  7. private String name;
  8. private String imgURL;
  9. private String thumbURL;
  10. private PropertyChangeSupport propertyChangeSupport = new PropertyChangeSupport(this);
  11. public ThingMetaData(int id, String name,
  12. String imgURL, String thumURL) {
  13. this.setId(id);
  14. this.setName(name);
  15. this.setImgURL(imgURL);
  16. this.setThumbURL(thumURL);
  17. }
  18. public void addPropertyChangeListener(String propertyName,
  19. PropertyChangeListener listener) {
  20. propertyChangeSupport.addPropertyChangeListener(propertyName, listener);
  21. }
  22. public void removePropertyChangeListener(PropertyChangeListener listener) {
  23. propertyChangeSupport.removePropertyChangeListener(listener);
  24. }
  25. public int getId() {
  26. return id;
  27. }
  28. public void setId(int id) {
  29. propertyChangeSupport.firePropertyChange("id", this.id,
  30. this.id = id);
  31. }
  32. public String getName() {
  33. return name;
  34. }
  35. public void setName(String name) {
  36. propertyChangeSupport.firePropertyChange("name", this.name,
  37. this.name = name);
  38. }
  39. public String getImgURL() {
  40. return imgURL;
  41. }
  42. public void setImgURL(String imgURL) {
  43. propertyChangeSupport.firePropertyChange("img", this.imgURL,
  44. this.imgURL = imgURL);
  45. }
  46. public String getThumbURL() {
  47. return thumbURL;
  48. }
  49. public void setThumbURL(String thumbURL) {
  50. propertyChangeSupport.firePropertyChange("thumb", this.thumbURL,
  51. this.thumbURL = thumbURL);
  52. }
  53. @Override
  54. public String toString() {
  55. return String.valueOf(id);
  56. }
  57. }