package com.company.OnlineShop; public class Book extends Article{ public static double VAT = 0.07; private String author = ""; private String title = ""; private int year = 0; public Book(int articleNumber, double price, String author, String title, int year){ super(articleNumber, price); this.author = author; this.title = title; this.year = year; } public double getPrice(){ return super.getPrice() + ( VAT + 1); } }