package domain.sheets; public class Fours extends Category { @Override public int calcValueFromAmount() { this.value = this.amount * 4; return this.value; } }