jessefjxm

Untitled

Aug 8th, 2016
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. // JsonFormat.java
  2.  
  3. public class JsonFormat {
  4. // Extented part
  5. private List<String> hoverTextName;
  6. private String clickName;
  7. private String clickNameText;
  8.  
  9. private List<String> hoverTextPrefix;
  10. private String clickPrefix;
  11. private String clickPrefixText;
  12.  
  13. private List<String> hoverTextSuffix;
  14. private String clickSuffix;
  15. private String clickSuffixText;
  16.  
  17. private int priority;
  18. private String name;
  19.  
  20. public JsonFormat(String name, int priority, List<String> hoverTextName, String clickName, String clickNameText,
  21. List<String> hoverTextPrefix, String clickPrefix, String clickPrefixText, String clickSuffix,
  22. String clickSuffixText, List<String> hoverTextSuffix) {
  23. this.name = name;
  24. this.priority = priority;
  25. this.hoverTextName = hoverTextName;
  26. this.clickNameText = clickNameText;
  27. this.clickName = clickName;
  28.  
  29. this.hoverTextPrefix = hoverTextPrefix;
  30. this.clickPrefix = clickPrefix;
  31. this.clickPrefixText = clickPrefixText;
  32.  
  33. this.clickSuffix = clickSuffix;
  34. this.clickSuffixText = clickSuffixText;
  35. this.hoverTextSuffix = hoverTextSuffix;
  36. }
  37.  
  38. public String getName() {
  39. return this.name;
  40. }
  41.  
  42. public String getClickName() {
  43. return this.clickName;
  44. }
  45.  
  46. public String getClickNameText() {
  47. return this.clickNameText;
  48. }
  49.  
  50. public String getClickSuffix() {
  51. return this.clickSuffix;
  52. }
  53.  
  54. public String getClickSuffixText() {
  55. return this.clickSuffixText;
  56. }
  57.  
  58. public int getPriority() {
  59. return this.priority;
  60. }
  61.  
  62. public List<String> getHoverTextName() {
  63. return this.hoverTextName;
  64. }
  65.  
  66. public List<String> getHoverTextPrefix() {
  67. return this.hoverTextPrefix;
  68. }
  69.  
  70. public List<String> getHoverTextSuffix() {
  71. return this.hoverTextSuffix;
  72. }
  73.  
  74. public String getClickPrefix() {
  75. return this.clickPrefix;
  76. }
  77.  
  78. public String getClickPrefixText() {
  79. return this.clickPrefixText;
  80. }
  81. // Ended extented part
  82. }
Advertisement
Add Comment
Please, Sign In to add comment