// Example: Interfaces // Module: speaker // Source code file: Speaker.java // Create classes that implement the Speaker interface. public interface Speaker { // The required method of Speaker interface is speak. public void speak( ); }