1 2 3 4 5 6
package sub; public abstract aspect ObserverProtocol { protected interface Observer { } public void add(Observer o) {} }