Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package pokedex.model;
- public class Pokemon {
- private int ID;
- private String name, type, weak, vantage, description;
- public Pokemon(){}
- public Pokemon(int ID, String name, String type, String weak, String vantage, String description) {
- this.ID = ID;
- this.name = name;
- this.type = type;
- this.weak = weak;
- this.vantage = vantage;
- this.description = description;
- }
- public int getID() {
- return ID;
- }
- public void setID(int ID) {
- this.ID = ID;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getWeak() {
- return weak;
- }
- public void setWeak(String weak) {
- this.weak = weak;
- }
- public String getVantage() {
- return vantage;
- }
- public void setVantage(String vantage) {
- this.vantage = vantage;
- }
- public String getDescription() {
- return description;
- }
- public void setDescription(String description) {
- this.description = description;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement