6 lines
89 B
Java
6 lines
89 B
Java
package factorymethod;
|
|
|
|
public interface Notification {
|
|
void send(String message);
|
|
}
|