/** * Write a description of interface Component here. * * @author (your name) * @version (a version number or a date) */ public interface Component { /** * Power consumption of the component * @return power consumption of the component */ int getRequiredPower(); }