/* Author: James Tam Version: March 4, 2021 Learning objective: * How an interface serves as design specification (through method signatures). */ public interface DesignPerson { public static final int DEFAULT_ENERGY = 10; //Every person must be able to rest and workout. public void rest(); public void workout(); }