mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-15 10:58:51 +00:00
added mediator sample
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
package com.iluwatar;
|
||||
|
||||
public interface Party {
|
||||
|
||||
void addMember(PartyMember member);
|
||||
|
||||
void act(PartyMember actor, Action action);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user