/** * Device Interface * * Used for the Real Python OOP in Java vs Python article */ public interface Device { /** * getVoltage returns the current battery voltage */ int getVoltage(); }