Declare the abstract Event base with one abstract method
Declare the abstract Event base with one abstract method
Answer
public abstract class Event { public abstract void action(); }
The class is abstract and so is action() — note the semicolon, not a body. No concrete subclass may skip implementing action().