An Eclipse RCP reimplementation of bgg1tool by Nand. See http://www.nand.it/nandeck/ for the original tool.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

110 satır
2.4KB

  1. package xyz.veronie.bgg.result;
  2. import java.beans.PropertyChangeListener;
  3. import java.beans.PropertyChangeSupport;
  4. //import com.google.gson.Gson;
  5. public class ThingMetaData implements java.io.Serializable {
  6. private static final long serialVersionUID = -5268898737006538509L;
  7. private int id;
  8. private String name;
  9. private String imgURL;
  10. private String thumbURL;
  11. private String comment;
  12. private Integer numPlays;
  13. private PropertyChangeSupport propertyChangeSupport = new PropertyChangeSupport(this);
  14. public ThingMetaData(int id, String name,
  15. String imgURL, String thumURL,
  16. String comment, Integer numPlays) {
  17. this.setId(id);
  18. this.setName(name);
  19. this.setImgURL(imgURL);
  20. this.setThumbURL(thumURL);
  21. this.setComment(comment);
  22. this.setNumPlays(numPlays);
  23. }
  24. public void addPropertyChangeListener(String propertyName,
  25. PropertyChangeListener listener) {
  26. propertyChangeSupport.addPropertyChangeListener(propertyName, listener);
  27. }
  28. public void removePropertyChangeListener(PropertyChangeListener listener) {
  29. propertyChangeSupport.removePropertyChangeListener(listener);
  30. }
  31. public int getId() {
  32. return id;
  33. }
  34. public void setId(int id) {
  35. propertyChangeSupport.firePropertyChange("id", this.id,
  36. this.id = id);
  37. }
  38. public String getName() {
  39. return name;
  40. }
  41. public void setName(String name) {
  42. propertyChangeSupport.firePropertyChange("name", this.name,
  43. this.name = name);
  44. }
  45. public String getImgURL() {
  46. return imgURL;
  47. }
  48. public void setImgURL(String imgURL) {
  49. propertyChangeSupport.firePropertyChange("img", this.imgURL,
  50. this.imgURL = imgURL);
  51. }
  52. public String getThumbURL() {
  53. return thumbURL;
  54. }
  55. public void setThumbURL(String thumbURL) {
  56. propertyChangeSupport.firePropertyChange("thumb", this.thumbURL,
  57. this.thumbURL = thumbURL);
  58. }
  59. public int getNumPlays() {
  60. return numPlays;
  61. }
  62. public void setNumPlays(Integer numPlays) {
  63. this.numPlays = numPlays;
  64. }
  65. public String getComment() {
  66. return comment;
  67. }
  68. public void setComment(String comment) {
  69. propertyChangeSupport.firePropertyChange("comment", this.comment,
  70. this.comment = comment);
  71. }
  72. @Override
  73. public String toString() {
  74. return String.valueOf(id);
  75. // Gson gson = new Gson();
  76. // return gson.toJson(this);
  77. }
  78. }