/* * Copyright (c) 2015 Camil Staps */ package com.camilstaps.webshop.article; /** * * @author camilstaps */ public abstract class Article { protected final String description; protected final double price; public Article(String description, double price) { this.description = description; this.price = price; } public String getDescription() { return description; } public double getPrice() { return price; } public abstract double getShippingCosts(); }