1: package fit.decorator.util; 2: 3: public interface Timer { 4: long elapsed(); 5: 6: void start(); 7: }