package us.deans.pigs.api; import us.deans.pigs.base.AbstractAnimal; public class Wolf extends AbstractAnimal { private String quoteThreat = "I'll Huff and I'll Puff and I'll BLOW your house down!"; public Wolf(String name) { this.name = name; System.out.println("Hi! My name is " + this.name); } public String threaten() { return this.quoteThreat; } public String huffandpuff() { return this.quoteThreat; } }