2015-05-03 23:34:38 +03:00

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();
}