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

10 lines
254 B
Java

package factorymethod;
// New Concrete Creator — knows to create a SlackNotification
public class SlackSender extends NotificationSender {
@Override
protected Notification createNotification() {
return new SlackNotification();
}
}