// interface representing something that makes a noise package interfaceexample; public interface NoiseMaker { public void makeNoise(); }