mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-14 18:58:44 +00:00
8 lines
92 B
Java
8 lines
92 B
Java
package com.iluwatar;
|
|
|
|
public interface View {
|
|
|
|
public void storeChanged(Store store);
|
|
|
|
}
|