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

9 lines
190 B
Java

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