1 43 package net.jforum.entities; 44 45 import java.io.Serializable ; 46 47 55 public class Ranking implements Serializable 56 { 57 private int id; 58 private String title; 59 private int special; 60 private String image; 61 private int min; 62 63 public Ranking() {} 64 67 public int getId() { 68 return this.id; 69 } 70 71 74 public String getImage() { 75 return this.image; 76 } 77 78 81 public int getSpecial() { 82 return this.special; 83 } 84 85 88 public String getTitle() 89 { 90 return (this.title == null ? "" : this.title); 91 } 92 93 97 public void setId(int id) { 98 this.id = id; 99 } 100 101 105 public void setImage(String image) { 106 this.image = image; 107 } 108 109 113 public void setSpecial(int special) { 114 this.special = special; 115 } 116 117 121 public void setTitle(String title) { 122 this.title = title; 123 } 124 125 128 public int getMin() { 129 return this.min; 130 } 131 132 135 public void setMin(int i) { 136 this.min = i; 137 } 138 139 } 140 | Popular Tags |