12 lines
155 B
Java
Raw Normal View History

package com.iluwatar.front.controller;
2015-07-19 12:44:51 +03:00
/**
*
* Views are the representations rendered for the user.
*
*/
2015-07-19 12:44:51 +03:00
public interface View {
void display();
}