| ARocketLaunchingCounterObserver.java |
package lectures.mvc;
import util.annotations.WebDocuments;
@WebDocuments({"Lectures/Mvc.pptx", "Lectures/Mvc.pdf", "Videos/Mvc.avi"})
public class ARocketLaunchingCounterObserver implements CounterObserver {
public void update(ObservableCounter counter) {
if (counter.getValue() == 0)
launch();
}
private void launch() {
System.out.println("LIFT OFF!!!");
}
}