2015-05-03 23:10:45 +03:00
|
|
|
package com.iluwatar.view;
|
|
|
|
|
|
|
|
import com.iluwatar.store.Store;
|
2015-05-03 22:15:41 +03:00
|
|
|
|
2015-05-03 23:34:38 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Views define the representation of data.
|
|
|
|
*
|
|
|
|
*/
|
2015-05-03 22:15:41 +03:00
|
|
|
public interface View {
|
|
|
|
|
|
|
|
public void storeChanged(Store store);
|
2015-05-03 23:07:07 +03:00
|
|
|
|
|
|
|
public void render();
|
2015-05-03 22:15:41 +03:00
|
|
|
}
|