Advertisement
xlrnxnlx

Pokemon | Feeh/iFlash/Beats Leecher

May 18th, 2014
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.30 KB | None | 0 0
  1. package pokedex.model;
  2.  
  3. public class Pokemon {
  4.     private int ID;
  5.     private String name, type, weak, vantage, description;
  6.  
  7.     public Pokemon(){}
  8.    
  9.     public Pokemon(int ID, String name, String type, String weak, String vantage, String description) {
  10.         this.ID = ID;
  11.         this.name = name;
  12.         this.type = type;
  13.         this.weak = weak;
  14.         this.vantage = vantage;
  15.         this.description = description;
  16.     }
  17.    
  18.     public int getID() {
  19.         return ID;
  20.     }
  21.  
  22.     public void setID(int ID) {
  23.         this.ID = ID;
  24.     }
  25.  
  26.     public String getName() {
  27.         return name;
  28.     }
  29.  
  30.     public void setName(String name) {
  31.         this.name = name;
  32.     }
  33.  
  34.     public String getType() {
  35.         return type;
  36.     }
  37.  
  38.     public void setType(String type) {
  39.         this.type = type;
  40.     }
  41.  
  42.     public String getWeak() {
  43.         return weak;
  44.     }
  45.  
  46.     public void setWeak(String weak) {
  47.         this.weak = weak;
  48.     }
  49.  
  50.     public String getVantage() {
  51.         return vantage;
  52.     }
  53.  
  54.     public void setVantage(String vantage) {
  55.         this.vantage = vantage;
  56.     }
  57.  
  58.     public String getDescription() {
  59.         return description;
  60.     }
  61.  
  62.     public void setDescription(String description) {
  63.         this.description = description;
  64.     }
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement