import java.awt.*;
import javax.swing.*;
public class Menu
{
    // instance variables - replace the example below with your own
    private String item, description, picture;
    private double price;
    private boolean spicy, vegetarian;

    public Menu ()
    {
    
    }
    
    public Menu(String item, String description, String picture, double price, boolean spicy, boolean vegetarian)
    {
        this.item = item;
        this.description = description;
        this.price = price;
        this.picture = picture;
        this.spicy = spicy;
        this.vegetarian = vegetarian;
    }

      
    
    public String getItem()
    {
        return item;
    }
    
    public void setItem(String item)
    {
        this.item = item;
    }
    
    public String getDescription()
    {
        return description;
    }
    
    public void setDescirption(String description)
    {
        this.description = description;
    }
    
    public String getPicture()
    {
        return picture;
    }
    
    public void setPicture(String picture)
    {
        this.picture = picture;
    }
    
    public double getPrice()
    {
        return price;
    }
    
    public void setPrice(double price)
    {
        this.price = price;
    }
    
    public boolean getSpicy()
    {
        return spicy;
    }
    
    public void setSpicy(boolean spicy)
    {
        this.spicy = spicy;
    }
    
    public boolean getVegetarian()
    {
        return vegetarian;
    }
    
    public void setVegetarian(boolean vegetarian)
    {
        this.vegetarian = vegetarian;
    }
}
