All Downloads are FREE. Search and download functionalities are using the official Maven repository.

coffee.ElectricHeater Maven / Gradle / Ivy

The newest version!
package coffee;

class ElectricHeater implements Heater {
  boolean heating;

  @Override public void on() {
    System.out.println("~ ~ ~ heating ~ ~ ~");
    this.heating = true;
  }

  @Override public void off() {
    this.heating = false;
  }

  @Override public boolean isHot() {
    return heating;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy