/* * This interface declares that anything Honkable * should have a honk method. */ interface Honkable { public String honk(int n); }