16 lines
212 B
Java
16 lines
212 B
Java
package com.iluwatar.view;
|
|
|
|
import com.iluwatar.store.Store;
|
|
|
|
/**
|
|
*
|
|
* Views define the representation of data.
|
|
*
|
|
*/
|
|
public interface View {
|
|
|
|
public void storeChanged(Store store);
|
|
|
|
public void render();
|
|
}
|