mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-23 18:25:29 +00:00
11 lines
153 B
Java
11 lines
153 B
Java
package com.iluwatar.view;
|
|
|
|
import com.iluwatar.store.Store;
|
|
|
|
public interface View {
|
|
|
|
public void storeChanged(Store store);
|
|
|
|
public void render();
|
|
}
|