import java.awt.*;
import javax.swing.*;
public class Order
{
    // instance variables - replace the example below with your own
    private String item, from;
    private double price;

    public Order()
    {
    }
    
    public Order(String item, String from, double price)
    {
        this.item = item;
        this.from = from;
        this.price = price;
    }

    public String getItem()
    {
        return item;
    }
    
    public void setItem(String item)
    {
        this.item = item;
    }
    
    public String getFrom()
    {
        return from;
    }
    
    public void setFrom (String from)
    {
        this.from = from;
    }
    
    public double getPrice()
    {
        return price;
    }
    
    public void setPrice(double price)
    {
        this.price = price;
    }
}
