Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package FP;
- /**
- *
- * @author akclark
- */
- public class TableRow {
- private int ID;
- private String Description;
- private String Category;
- private float Price;
- private String Name;
- public TableRow() {
- }
- /**
- * @return the ID
- */
- public int getID() {
- return ID;
- }
- /**
- * @param ID the ID to set
- */
- public void setID(int ID) {
- this.ID = ID;
- }
- /**
- * @return the Description
- */
- public String getDescription() {
- return Description;
- }
- /**
- * @param Description the Description to set
- */
- public void setDescription(String Description) {
- this.Description = Description;
- }
- /**
- * @return the Category
- */
- public String getCategory() {
- return Category;
- }
- /**
- * @param Category the Category to set
- */
- public void setCategory(String Category) {
- this.Category = Category;
- }
- /**
- * @return the Price
- */
- public float getPrice() {
- return Price;
- }
- /**
- * @param Price the Price to set
- */
- public void setPrice(float Price) {
- this.Price = Price;
- }
- /**
- * @return the Name
- */
- public String getName() {
- return Name;
- }
- /**
- * @param Name the Name to set
- */
- public void setName(String Name) {
- this.Name = Name;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement