public class Dog implements Speaker {

  public void speak() {
    System.out.println( "woof" );
  } // end of Dog method speak

  public void announce( String arf ) {
    System.out.println( "woof: " + arf );
  } // end of Dog method announce

} // end of class Dog
