Advertisement
Guest User

Untitled

a guest
Dec 11th, 2015
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.66 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package FP;
  7.  
  8. /**
  9.  *
  10.  * @author akclark
  11.  */
  12. public class TableRow {
  13.     private int ID;
  14.     private String Description;
  15.     private String Category;
  16.     private float Price;
  17.     private String Name;
  18.    
  19.     public TableRow() {
  20.     }
  21.  
  22.     /**
  23.      * @return the ID
  24.      */
  25.     public int getID() {
  26.         return ID;
  27.     }
  28.  
  29.     /**
  30.      * @param ID the ID to set
  31.      */
  32.     public void setID(int ID) {
  33.         this.ID = ID;
  34.     }
  35.  
  36.     /**
  37.      * @return the Description
  38.      */
  39.     public String getDescription() {
  40.         return Description;
  41.     }
  42.  
  43.     /**
  44.      * @param Description the Description to set
  45.      */
  46.     public void setDescription(String Description) {
  47.         this.Description = Description;
  48.     }
  49.  
  50.     /**
  51.      * @return the Category
  52.      */
  53.     public String getCategory() {
  54.         return Category;
  55.     }
  56.  
  57.     /**
  58.      * @param Category the Category to set
  59.      */
  60.     public void setCategory(String Category) {
  61.         this.Category = Category;
  62.     }
  63.  
  64.     /**
  65.      * @return the Price
  66.      */
  67.     public float getPrice() {
  68.         return Price;
  69.     }
  70.  
  71.     /**
  72.      * @param Price the Price to set
  73.      */
  74.     public void setPrice(float Price) {
  75.         this.Price = Price;
  76.     }
  77.  
  78.     /**
  79.      * @return the Name
  80.      */
  81.     public String getName() {
  82.         return Name;
  83.     }
  84.  
  85.     /**
  86.      * @param Name the Name to set
  87.      */
  88.     public void setName(String Name) {
  89.         this.Name = Name;
  90.     }
  91.    
  92. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement