Files
design-patterns/01-creational/factory-method/PushSender.java

9 lines
188 B
Java

package factorymethod;
public class PushSender extends NotificationSender {
@Override
protected Notification createNotification() {
return new PushNotification();
}
}