9 lines
190 B
Java
9 lines
190 B
Java
package factorymethod;
|
|
|
|
public class EmailSender extends NotificationSender {
|
|
@Override
|
|
protected Notification createNotification() {
|
|
return new EmailNotification();
|
|
}
|
|
}
|