Home | History | Annotate | Download | only in coffee
      1 package coffee;
      2 
      3 interface Heater {
      4   void on();
      5   void off();
      6   boolean isHot();
      7 }
      8